[ 'class' => 'yii\web\ErrorAction', ], 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, ], ]; } public function actionIndex() { $this->redirect(['site/index']); } public function actionCommon(/*$performer_id*/) { return $this->render('common'); } public function actionPortfolio(/*$performer_id*/) { return $this->render('portfolio'); } public function actionBlogList(/*$performer_id*/) { return $this->render('blog-list'); } public function actionBlogView(/*$performer_id, $article_id*/) { return $this->render('blog-view'); } public function actionReview(/*$performer_id*/) { return $this->render('review'); } public function actionWorkplace(/*$performer_id*/) { return $this->render('workplace'); } public function actionGallery(/*$performer_id*/) { $this->layout = 'gallery'; return $this->render('gallery'); } }