예제 #1
0
파일: error.php 프로젝트: uzura8/flockbird
 public function before()
 {
     if (defined('IS_ADMIN') && IS_ADMIN) {
         $this->template = 'admin::template';
     }
     parent::before();
 }
예제 #2
0
파일: Auth.php 프로젝트: ariol/adminshop
 public function before()
 {
     if (!Auth::instance()->logged_in()) {
         $this->redirect('/');
     }
     parent::before();
 }
예제 #3
0
파일: student.php 프로젝트: xXLXx/ddc
 public function before()
 {
     $returnData = parent::before();
     if (Model_User::is_current_user('teacher')) {
         Response::redirect('site/404');
     }
     return $returnData;
 }
예제 #4
0
 public function before()
 {
     parent::before();
     if (!FBD_FACEBOOK_APP_ID) {
         throw new HttpNotFoundException();
     }
     Config::load('facebook', 'facebook');
     $this->fb = new Facebook(Config::get('facebook.init'));
 }
예제 #5
0
파일: auth.php 프로젝트: uzura8/flockbird
 public function before()
 {
     if (!conf('auth.isEnabled')) {
         throw new \HttpNotFoundException();
     }
     parent::before();
     if (!isset($this->_config)) {
         $this->_config = Config::load('opauth', 'opauth');
     }
 }
예제 #6
0
파일: Backend.php 프로젝트: piotrtheis/ko3
 public function after()
 {
     View::set_global('title', $this->title);
     View::set_global('keywords', $this->keywords);
     View::set_global('meta_title', $this->meta_title);
     View::set_global('meta_description', $this->meta_description);
     View::set_global('og_title', $this->og_title);
     View::set_global('og_image', $this->og_image);
     View::set_global('og_description', $this->og_description);
     View::set_global('twitter_title', $this->twitter_title);
     View::set_global('twitter_image', $this->twitter_image);
     View::set_global('twitter_description', $this->twitter_description);
     View::set_global('asets', $this->_assets->render());
     View::set_global('breadcrumbs', $this->_breadcrumbs);
     parent::after();
 }
예제 #7
0
 public function before()
 {
     parent::before();
 }
예제 #8
0
파일: admin.php 프로젝트: jonlb/JxCMS
 public function after()
 {
     parent::after();
 }