コード例 #1
0
ファイル: login.php プロジェクト: ZerGabriel/cms-1
 public function before()
 {
     parent::before();
     if (file_exists(CMSPATH . FileSystem::normalize_path('media/js/i18n/' . I18n::lang() . '-message.js'))) {
         Assets::js('i18n', ADMIN_RESOURCES . 'js/i18n/' . I18n::lang() . '-message.js', 'global');
     }
     if ($this->request->action() != 'logout' and Auth::is_logged_in()) {
         $this->go_home();
     }
 }
コード例 #2
0
ファイル: install.php プロジェクト: ZerGabriel/cms-1
 public function before()
 {
     $this->_installer = new Installer();
     parent::before();
 }