Skip to content

Instantly share code, notes, and snippets.

@zhukovsergei
Created February 24, 2016 12:17
Show Gist options
  • Save zhukovsergei/120e1556aa1cf30cbd2d to your computer and use it in GitHub Desktop.
Save zhukovsergei/120e1556aa1cf30cbd2d to your computer and use it in GitHub Desktop.
beforeAction Yii2
<?php
public function beforeAction($action)
{
if (!parent::beforeAction($action)) {
return false;
}
if(\Yii::$app->user->getIsGuest()){
$this->redirect('/');
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment