コード例 #1
0
ファイル: Home.php プロジェクト: alsimfer/HomePage
 public function __construct()
 {
     parent::__construct($this->pageslug);
     $this->pageHTML = $this->generatePageHTML();
 }
コード例 #2
0
ファイル: BSAG.php プロジェクト: alsimfer/HomePage
 /**
  * 
  */
 public function __construct()
 {
     parent::__construct($this->page_id, $this->title);
     $this->pageHTML = $this->generatePageHTML();
 }
コード例 #3
0
ファイル: Accounting.php プロジェクト: alsimfer/HomePage
 /**
  * 
  * @param unknown $pageslug
  */
 public function __construct()
 {
     // First generate content to get all possible messages, then make a page.
     $this->contentHTML = $this->generateMain();
     parent::__construct($this->page_id, $this->title);
 }