コード例 #1
0
ファイル: store.class.php プロジェクト: kurari/NyaaStore
 /**
  * Construct
  *
  * @var $default
  */
 public function __construct($default = false)
 {
     parent::__construct();
     if (is_array($default)) {
         $this->_vars = $default;
     }
 }
コード例 #2
0
ファイル: token.class.php プロジェクト: kurari/Nyaa-System
 /**
  * construct
  */
 public function __construct()
 {
     parent::__construct();
     $this->last = $this;
 }
コード例 #3
0
ファイル: appmap.class.php プロジェクト: kurari/NyaaFW
 function __construct($fw)
 {
     $this->FW = $fw;
     parent::__construct();
 }
コード例 #4
0
ファイル: visitor.class.php プロジェクト: kurari/Nyaa-System
 function __construct()
 {
     parent::__construct();
     $this->store = new NyaaStore();
 }