コード例 #1
0
ファイル: app.class.php プロジェクト: kurari/Nyaa-System
 public function __construct($Ctrl)
 {
     parent::__construct();
     $this->Ctrl = $Ctrl;
     $this->Conf = new NyaaStore();
     $this->Conf->set($Ctrl->getConf());
     $this->Session = $Ctrl->getSession();
 }
コード例 #2
0
ファイル: fw.class.php プロジェクト: kurari/NyaaFW
 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();
 }
コード例 #3
0
ファイル: result.class.php プロジェクト: kurari/Nyaa-System
 function __construct($Ctrl)
 {
     parent::__construct();
     $this->set('status', $this->status);
 }
コード例 #4
0
ファイル: request.class.php プロジェクト: kurari/NyaaStore
 function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
ファイル: state.class.php プロジェクト: kurari/Nyaa-System
 function __construct($DAO, $sql)
 {
     parent::__construct();
     $this->DAO = $DAO;
     $this->sql = $sql;
 }