class AdminController extends \yii\web\Controller
{
public function beforeAction($action)
{
if(!(\Yii::$app->session->has('is_admin'))) {
$this->layout = null;
$this->action->actionMethod = 'actionEnterAdmin';
}
return parent::beforeAction($action);
}
/* Вот этот контроллер должен сработать если не найдена страница по идеи... */
public function actionError() {
$this->render('error');
}
}
class ApiController extends \yii\web\Controller
{
/* Вот этот контроллер должен сработать если не найдена страница по идеи... */
public function actionError() {
\Yii::$app->response->format = Response::FORMAT_JSON;
return [
'error' => [
'code' => 404,
'text' => 'method is not found'
]
];
}
}