当前位置: 首页>>代码示例>>PHP>>正文


PHP Menu::__construct方法代码示例

本文整理汇总了PHP中Menu::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Menu::__construct方法的具体用法?PHP Menu::__construct怎么用?PHP Menu::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Menu的用法示例。


在下文中一共展示了Menu::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 function __construct($out, Profile $profile)
 {
     parent::__construct($out);
     $this->profile = $profile;
     $user = common_current_user();
     $this->lists = $profile->getLists($user);
 }
开发者ID:harriewang,项目名称:InnertieWebsite,代码行数:7,代码来源:listsnav.php

示例2: __construct

 /**
  * @desc Build a LinksMenuElement object
  * @param $title
  * @param $url
  * @param $image
  * @param int $id The Menu's id in the database
  */
 public function __construct($title, $url, $image = '')
 {
     parent::__construct($title);
     $this->set_url($url);
     $this->set_image($image);
     $this->uid = AppContext::get_uid();
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:14,代码来源:LinksMenuElement.class.php

示例3: __construct

 public function __construct($title, $module_id, $category = 0, $name = Feed::DEFAULT_FEED_NAME, $number = 10, $begin_at = 0)
 {
     parent::__construct($title);
     $this->module_id = $module_id;
     $this->category = $category;
     $this->name = $name;
     $this->number = $number;
     $this->begin_at = $begin_at;
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:9,代码来源:FeedMenu.class.php

示例4:

 /**
  * Construction
  *
  * @param Action $action current action, used for output
  * @param User   $user   Current user or NULL if "guest"
  */
 function __construct(Action $action = null, User $user = null)
 {
     parent::__construct($action);
     $this->user = $user;
 }
开发者ID:bashrc,项目名称:gnusocial-debian,代码行数:11,代码来源:subgroupnav.php

示例5:

 /**
  * Construction
  *
  * @param Action $action current action, used for output
  */
 function __construct($action = null, $profile = null)
 {
     parent::__construct($action);
     $this->profile = $profile;
 }
开发者ID:bashrc,项目名称:gnusocial-debian,代码行数:10,代码来源:peopletagnav.php

示例6:

 function __construct($out, $user, $searches)
 {
     parent::__construct($out);
     $this->user = $user;
     $this->searches = $searches;
 }
开发者ID:harriewang,项目名称:InnertieWebsite,代码行数:6,代码来源:searchsubmenu.php

示例7: array

 function __construct($id = 0, $tableData = array(), Desk $desk)
 {
     parent::__construct($id, $tableData);
     $this->desk = $desk;
 }
开发者ID:virutmath,项目名称:crm_local,代码行数:5,代码来源:MenuInDesk.php

示例8: __construct

 /**
  * constructor
  */
 public function __construct($p_aRechten)
 {
     parent::__construct('Bezoeker', $p_aRechten);
 }
开发者ID:Pieem105,项目名称:BC-Rianto-mvc,代码行数:7,代码来源:BezoekerMenu.class.php

示例9:

 function __construct($action, $user)
 {
     parent::__construct($action);
     $this->user = $user;
     $this->groups = $user->getGroups();
 }
开发者ID:harriewang,项目名称:InnertieWebsite,代码行数:6,代码来源:groupsnav.php

示例10: SupportingMenu

 function __construct($val, &$page)
 {
     parent::__construct($val, $page);
     $this->supportingMenu = new SupportingMenu($val, $page);
 }
开发者ID:homberghp,项目名称:peerweb,代码行数:5,代码来源:screenutils.php

示例11: __construct

 /**
  * @desc Build a ModuleMiniMenu element.
  */
 public function __construct()
 {
     parent::__construct($this->get_formated_title());
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:7,代码来源:ModuleMiniMenu.class.php

示例12:

 /**
  * Construction
  *
  * @param Action $action current action, used for output
  */
 function __construct($action = null, $q = null)
 {
     parent::__construct($action);
     $this->q = $q;
 }
开发者ID:Grasia,项目名称:bolotweet,代码行数:10,代码来源:searchgroupnav.php

示例13: __construct

 public function __construct($title)
 {
     parent::__construct($title);
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:4,代码来源:ContentMenu.class.php

示例14:

 function __construct($out, $user, $tags)
 {
     parent::__construct($out);
     $this->user = $user;
     $this->tags = $tags;
 }
开发者ID:harriewang,项目名称:InnertieWebsite,代码行数:6,代码来源:tagsubmenu.php

示例15:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:Batit,项目名称:CadaverAldea,代码行数:4,代码来源:MenuHTML.class.php


注:本文中的Menu::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。