コード例 #1
0
ファイル: NavElement.php プロジェクト: TiMESPLiNTER/meta-cms
 public function __construct($ID, $pageID)
 {
     parent::__construct($ID, $pageID, 'element_nav');
     $this->activeRoutes = array();
     $this->modes = array(1 => 'Navigation list', 2 => 'Breadcrumb');
 }
コード例 #2
0
ファイル: TextElement.php プロジェクト: TiMESPLiNTER/meta-cms
 public function __construct($ID, $pageID)
 {
     parent::__construct($ID, $pageID, 'element_text');
 }
コード例 #3
0
 public function __construct($ID, $pageID, $identifier)
 {
     parent::__construct($ID, $pageID, $identifier);
     $this->elements = array();
 }
コード例 #4
0
 public function __construct($ID, $pageID)
 {
     parent::__construct($ID, $pageID, 'element_nav_title');
     $this->activeRoutes = array();
 }