checkApplication() public static method

public static checkApplication ( )
コード例 #1
0
 /**
  * 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');
 }
コード例 #2
0
ファイル: SiteController.php プロジェクト: 7flash/app
 /**
  * Renders the start page.
  *
  * @return string
  */
 public function actionIndex()
 {
     Helper::checkApplication();
     return $this->render('index');
 }