<?php class IndexAction extends CAction { public function run($id=null, $answer=null, $tpl=null) { $this->getController()->layout = "//layouts/empty"; $params = ["canEdit" => true]; // if( isset($test) ){ // $params["tpl"]=$id; //} if(!empty($id)){ $params["answerId"]=$id; } $params = Form::getDataForAnswer($params); $tpl=(!empty($tpl)) ? $tpl : "survey.views.tpls.forms.formWizard"; echo $this->getController()->renderPartial($tpl,$params ); } }