Exemplo n.º 1
0
 public function __construct($Ctrl)
 {
     parent::__construct();
     $this->Ctrl = $Ctrl;
     $this->Conf = new NyaaStore();
     $this->Conf->set($Ctrl->getConf());
     $this->Session = $Ctrl->getSession();
 }
Exemplo n.º 2
0
 function __construct()
 {
     parent::__construct();
     $this->handlers[self::WHEN_BEFORE_RUN] = array();
     $this->handlers[self::WHEN_AFTER_RUN] = array();
     $this->handlers[self::WHEN_BEFORE_APP_RUN] = array();
     $this->handlers[self::WHEN_AFTER_APP_RUN] = array();
 }
Exemplo n.º 3
0
 function __construct($Ctrl)
 {
     parent::__construct();
     $this->set('status', $this->status);
 }
Exemplo n.º 4
0
 function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 5
0
 function __construct($DAO, $sql)
 {
     parent::__construct();
     $this->DAO = $DAO;
     $this->sql = $sql;
 }