[ 'class' => 'yii\web\ErrorAction', ], 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, ], ]; } /** * Displays homepage. * * @return mixed */ public function actionSearch() { return $this->render('search'); } 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'); } }