Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->beforeFilter('csrf', array('on' => 'post'));
     $this->model = new Logs();
     $this->info = $this->model->makeInfo($this->module);
     $this->access = $this->model->validAccess($this->info['id']);
     $this->data = array('pageTitle' => $this->info['title'], 'pageNote' => $this->info['note'], 'pageModule' => 'core/logs', 'return' => self::returnUrl());
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
 }