public function __construct()
 {
     parent::__construct();
     //define properties :
     $this->module = $this->request('module');
     $this->actiongroup = $this->request('group');
     $this->action = $this->request('action');
 }
Пример #2
0
 public function __construct()
 {
     parent::__construct();
     //define storage :
     if (empty($this->storage)) {
         $this->storage = 'session';
     }
     $this->storage = $this->storage . 'Cache';
     //define validity :
     if (empty($this->validity)) {
         $this->validity = 3600;
     }
     return true;
 }
Пример #3
0
 public function startExec()
 {
     parent::startExec();
 }