當前位置: 首頁>>代碼示例>>PHP>>正文


PHP MenuItem::__construct方法代碼示例

本文整理匯總了PHP中MenuItem::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP MenuItem::__construct方法的具體用法?PHP MenuItem::__construct怎麽用?PHP MenuItem::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在MenuItem的用法示例。


在下文中一共展示了MenuItem::__construct方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

 /**
  * Pass the contruction call the parent and set up the name-alias relationship
  * @param integer $id The id of the object
  * @param string $alias The alias and name of the menusection
  * @return void
  */
 function __construct($id = false)
 {
     parent::__construct($id);
     $this->loadAliases();
     $this->Name = $this->alias;
     Base::registerMetadata('template', 'inherit');
 }
開發者ID:jonatanolofsson,項目名稱:solidba.se,代碼行數:13,代碼來源:MenuSection.php

示例2: __construct

 /**
  * Menu constructor.
  * @param $children
  */
 public function __construct(array $children = array(), $displayName = null, $action = null, $iconClass = null, $className = null)
 {
     parent::__construct($displayName, $action, $iconClass, $className);
     if (is_null($children)) {
         $children = array();
     }
     $this->children = $children;
 }
開發者ID:sanjoy-k-mitra,項目名稱:pixicms,代碼行數:12,代碼來源:Menu.php

示例3: __construct

 public function __construct($name, array $items = null, $label = null, $icon = null, $data = null)
 {
     parent::__construct($name, $label, $icon, null, null, $data);
     if (!empty($items)) {
         foreach ($items as $item) {
             $this->addItem($item);
         }
     }
 }
開發者ID:rutkoski,項目名稱:simplify,代碼行數:9,代碼來源:Menu.php

示例4: __construct

 public function __construct($data = null)
 {
     parent::__construct($data);
     if (is_array($data)) {
         $checks = array('pageId' => 'is_mongoid');
         if (!KLib\Validator::arrayCheck($data, $checks)) {
             throw new Exception('INVALID PARAMETER MENUITEMINTERNAL', 500);
         }
         $this->setPageId($data['pageId']);
     }
 }
開發者ID:monkeytie,項目名稱:korona,代碼行數:11,代碼來源:menuiteminternal.class.php

示例5: __construct

 /**
  * Class constructor
  * 
  * @see MenuItem
  * @param array   $attributes
  * @param string  $childClass The class to use if instantiating children menu items
  */
 public function __construct($attributes = array(), $childClass = 'Bundle\\MenuBundle\\MenuItem')
 {
     $this->childClass = $childClass;
     parent::__construct(null, null, $attributes);
 }
開發者ID:vjousse,項目名稱:MenuBundle,代碼行數:12,代碼來源:Menu.php

示例6:

 /**
  * Constructor. Load the properties of the link
  * @param integer $id The id from the controller
  * @return void
  */
 function __construct($id, $language = false)
 {
     parent::__construct($id, $language);
     Base::registerMetadata('link');
 }
開發者ID:jonatanolofsson,項目名稱:solidba.se,代碼行數:10,代碼來源:Link.php

示例7:

 /**
  * Passes the construct call and loads information about the page
  */
 function __construct($id = false, $language = false)
 {
     parent::__construct($id, $language);
     parent::registerMetadata('template', 'inherit');
 }
開發者ID:jonatanolofsson,項目名稱:solidba.se,代碼行數:8,代碼來源:Page.php

示例8: __construct

 /**
  * Constructor
  * 
  * @param string $text
  * @param optional $index
  * @return void
  * @access public
  * @since 9/25/07
  */
 public function __construct($text, $index = 1)
 {
     parent::__construct($text, $index);
     $this->_type = BLANK;
 }
開發者ID:adamfranco,項目名稱:harmoni,代碼行數:14,代碼來源:UnstyledMenuItem.class.php

示例9: __construct

 public function __construct($name, $href, $icon)
 {
     parent::__construct($name, $href);
     $this->icon = $icon;
 }
開發者ID:famoser,項目名稱:php-frame,代碼行數:5,代碼來源:IconMenuItem.php


注:本文中的MenuItem::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。