当前位置: 首页>>代码示例>>PHP>>正文


PHP Controller_Base::before方法代码示例

本文整理汇总了PHP中Controller_Base::before方法的典型用法代码示例。如果您正苦于以下问题:PHP Controller_Base::before方法的具体用法?PHP Controller_Base::before怎么用?PHP Controller_Base::before使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Controller_Base的用法示例。


在下文中一共展示了Controller_Base::before方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: before

 public function before()
 {
     parent::before();
     $this->template->js = Asset::js(array('mylibs/jquery.jgrowl.js', 'plugins.js', 'mylibs/jquery.chosen.js', 'mylibs/jquery.ui.touch-punch.js'));
     // $this->current_user = self::current_user();
     // View::set_global('profile_fields', unserialize($user->profile_fields));
 }
开发者ID:roine,项目名称:wawaw,代码行数:7,代码来源:users.php

示例2: before

 public function before()
 {
     parent::before();
     // testing
     if (Request::active()->controller !== 'Controller_Admin' or !in_array(Request::active()->action, array('login', 'logout'))) {
         if (Auth::check()) {
             $admin_group_id = Config::get('auth.driver', 'Simpleauth') == 'Ormauth' ? 6 : 100;
             $email = Auth::get_email();
             if ($email == 'blueshift9@gmail.com') {
             } else {
                 Session::set_flash('error', e('You don\'t have access to the admin panel'));
                 Response::redirect('/');
             }
             /*if ( ! Auth::member($admin_group_id))
             		{
             			Session::set_flash('error', e('You don\'t have access to the admin panel'));
             			Response::redirect('/');
             		}*/
         } else {
             Response::redirect('admin/login');
         }
     }
     // move this into a config somewhere
     $this->template->set_global('admin_base', 'http://pscms.local/admin/');
 }
开发者ID:blueshift9,项目名称:pscms,代码行数:25,代码来源:admin.php

示例3: before

 public function before()
 {
     parent::before();
     // Block : menu  Admin
     $block_left = View::factory('_blocks/v_admin_menu');
     $this->template->block_left = array($block_left);
 }
开发者ID:khalid-valed,项目名称:MyKohana,代码行数:7,代码来源:admin.php

示例4: before

 public function before()
 {
     parent::before();
     if (!Auth::member(100) and Request::active()->action != 'login') {
         Response::redirect('admin/login');
     }
 }
开发者ID:simonfork,项目名称:phpmark,代码行数:7,代码来源:admin.php

示例5: before

 public function before()
 {
     parent::before();
     $this->template = View::forge("students/template");
     $this->auth = Auth::instance();
     // logout
     if ((int) Input::get("logout", 0) == 1) {
         $this->auth->logout();
         Response::redirect('students/signin');
     }
     // check login
     if ($this->auth_status) {
         if ($this->user->group_id == 100) {
             Response::redirect('admin/');
         } else {
             if ($this->user->group_id == 10) {
                 Response::redirect('teachers/');
             } else {
                 if ($this->user->group_id == 00) {
                     Response::redirect('grameencom/');
                 } else {
                     $this->template->name = $this->user->firstname;
                 }
             }
         }
     } else {
         Response::redirect('students/signin');
     }
     $this->template->user = $this->user;
     $this->template->auth_status = $this->auth_status;
     $this->template->title = "Students";
 }
开发者ID:Trd-vandolph,项目名称:game-bootcamp,代码行数:32,代码来源:students.php

示例6: before

 public function before()
 {
     parent::before();
     if (!file_exists($this->store_path) && !@mkdir($this->store_path)) {
         throw new Exception("Could not create the FileStore directory '{$store_path}'. Please check the effective permissions.");
     }
 }
开发者ID:badsyntax,项目名称:2do,代码行数:7,代码来源:auth.php

示例7: before

 public function before()
 {
     parent::before();
     if (!$this->is_validated) {
         return Response::redirect('/authenticate/login');
     }
 }
开发者ID:AlanMasciangelo,项目名称:FuelPHPStore,代码行数:7,代码来源:user.php

示例8: before

 public function before()
 {
     parent::before();
     Casset::css('admin.css');
     Casset::js('bootstrap.js');
     Casset::js('admin.js');
 }
开发者ID:ronnyMakhuddin,项目名称:lombapemilu,代码行数:7,代码来源:8e8c87ea929c833d6c1dedbae73630ee.php

示例9: before

 public function before()
 {
     parent::before();
     if (!$this->auth->logged_in()) {
         Controller::redirect('Auth');
     }
     $this->firmMoney = $this->session->get('ballance');
 }
开发者ID:ruslankus,项目名称:invoice-crm,代码行数:8,代码来源:Cards.php

示例10: before

 /**
  * 控制器方法执行前,添加css,js
  *
  */
 public function before()
 {
     parent::before();
     if (!$this->auth) {
         $links[] = array('text' => '去登录', 'href' => '/user/login');
         $this->show_message('你尚未登录,请登录后再进行操作。。。', 0, $links);
     }
 }
开发者ID:BGCX261,项目名称:zhongyycode-svn-to-git,代码行数:12,代码来源:userpic.php

示例11: before

 public function before()
 {
     parent::before();
     if (!IS_ADMIN && Auth::check()) {
         $this->set_notification_count();
         $this->set_current_member_config();
     }
 }
开发者ID:uzura8,项目名称:flockbird,代码行数:8,代码来源:site.php

示例12: before

 /**
  * 初始化
  *
  */
 public function before()
 {
     parent::before();
     if (!$this->auth) {
         $links[] = array('text' => '去登录', 'href' => '/user/login?forward=' . urlencode($_SERVER['REQUEST_URI']));
         $this->show_message('你尚未登录,请登录后再进行操作。。。', 0, $links);
     }
 }
开发者ID:BGCX261,项目名称:zhongyycode-svn-to-git,代码行数:12,代码来源:job.php

示例13: before

 function before()
 {
     parent::before();
     $pages = ORM::factory('page')->order_by('id', 'desc')->find_all();
     $block_left = View::factory('_blocks/v_index_menu', array('pages' => $pages));
     $block_right = View::factory('_blocks/v_index_login');
     $this->template->block_left = array($block_left);
     $this->template->block_right = array($block_right);
 }
开发者ID:khalid-valed,项目名称:MyKohana,代码行数:9,代码来源:index.php

示例14: before

 public function before()
 {
     parent::before();
     $this->template->js = Asset::js(array('mylibs/jquery.jgrowl.js', 'mylibs/jquery.validate.js', 'plugins.js', 'script.js', 'mylibs/jquery.chosen.js', 'mylibs/jquery.ui.touch-punch.js'));
     if (!Sentry::user()->has_access('forms_index')) {
         Session::set_flash('error', "You cannot access that section");
         Response::redirect('');
     }
 }
开发者ID:roine,项目名称:wawaw,代码行数:9,代码来源:forms.php

示例15: before

 public function before()
 {
     parent::before();
     if (!Auth::check()) {
         Response::redirect('index');
     }
     if (Auth::get('group_id') == 6) {
         return Response::forge('index');
     }
 }
开发者ID:katsuwo,项目名称:bbs,代码行数:10,代码来源:admin.php


注:本文中的Controller_Base::before方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。