示例#1
0
文件: Base.php 项目: ariol/adminshop
 public function before()
 {
     if ($this->request->action() == 'login') {
         $this->_login_route = NULL;
     }
     parent::before();
 }
示例#2
0
文件: admin.php 项目: TdroL/hurtex
 function before()
 {
     parent::before();
     $this->company = Kohana::config('company');
     if ($this->view instanceof View) {
         $this->view->bind_global('company', $this->company);
     }
 }