コード例 #1
0
ファイル: Post.php プロジェクト: longmonhau/Half-Life
 public function __construct()
 {
     parent::__construct();
     $this->session = Factory::make("session");
     $this->CateModel = Model::make("Category");
     $this->PostModel = Model::make("Post");
 }
コード例 #2
0
ファイル: Index.php プロジェクト: longmonhau/Half-Life
 public function __construct()
 {
     parent::__construct();
     $this->assign("category", SlideBar::getCategoryAll());
     $this->assign("tags", SlideBar::getTags());
     $this->assign("site", $this->getSiteInfo());
 }
コード例 #3
0
ファイル: Error.php プロジェクト: longmonhau/Half-Life
 public function __Construct()
 {
     parent::__Construct();
 }
コード例 #4
0
 public function __construct()
 {
     parent::__Construct();
     $this->postModel = Model::make("Post");
     $this->commentModel = Model::make("Comment");
 }
コード例 #5
0
ファイル: Message.php プロジェクト: longmonhau/Half-Life
 public function __construct()
 {
     parent::__Construct();
     $this->msgModel = Model::make("Message");
     $this->siteInfo = $this->getSiteInfo();
 }
コード例 #6
0
ファイル: Category.php プロジェクト: longmonhau/Half-Life
 public function __construct()
 {
     parent::__construct();
     $this->CateModel = Model::make("Category");
 }