コード例 #1
0
 /**
  * Setup the page
  * @param integer $id The object's ID
  * @return void
  */
 function __construct($id = false)
 {
     parent::__construct($id);
     $this->suggestName('Logview');
     $this->icon = 'small/book_error';
     $this->deletable = false;
 }
コード例 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->title = "Titre par default";
     $this->desc = "Description par default";
     $this->tag = "Mots clef par default";
     $this->addCss("css/sticky-footer.css");
 }
コード例 #3
0
ファイル: Mailer.php プロジェクト: jonatanolofsson/solidba.se
 /**
  * Setup the page
  * @param integer $id The object's ID
  * @return void
  */
 function __construct($id = false)
 {
     parent::__construct($id);
     $this->suggestName('Mailer');
     $this->alias = 'mailer';
     $this->icon = 'small/email';
     $this->deletable = false;
 }
コード例 #4
0
ファイル: page.php プロジェクト: wftragni/socialclick
 function __construct()
 {
     parent::__construct();
     $this->NavHandler();
 }
コード例 #5
0
ファイル: myindex.php プロジェクト: kaw393939/is218-fall2014
 public function __construct()
 {
     parent::__construct();
     $this->content .= 'tweeting I will go';
 }