i wanna to make a maintance page. But i have any probleme.
is it my init, from the Controller
public function init() {
$model = Maintance::model()->findByPk(1);
if($model->aktiv == 1 && !Yii::app()->getModule('user')->isAdmin()) {
if($this->id->action != 'maintance') {
Yii::app()->user->logout();
$this->redirect(array('/site/maintance'));
}
}
}If i write to the if $this->action already drop error:
Trying to get property of non-object
Or is use $this->route, not write the action, only the controller.

Help















