checkApplication() public static method

public static checkApplication ( )
 /**
  * Renders the start page
  * @return string
  */
 public function actionIndex()
 {
     Helper::checkApplication();
     if (!Yii::$app->user->isGuest) {
         return $this->render('user_index');
     }
     return $this->render('index');
 }
Example #2
0
 /**
  * Renders the start page.
  *
  * @return string
  */
 public function actionIndex()
 {
     Helper::checkApplication();
     return $this->render('index');
 }