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


PHP Menu::Menu方法代码示例

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


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

示例1: LinksMenuElement

 function LinksMenuElement($title, $url, $image = '')
 {
     parent::Menu($title);
     $this->set_url($url);
     $this->set_image($image);
     $this->uid = get_uid();
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:7,代码来源:links_menu_element.class.php

示例2: FeedMenu

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

示例3: Authorizer

 function Authorizer()
 {
     parent::Menu();
     session_start();
 }
开发者ID:Gmen2222,项目名称:MPE,代码行数:5,代码来源:admin.class.php

示例4: ModuleMiniMenu

 function ModuleMiniMenu($module, $filename)
 {
     parent::Menu($module);
     $this->filename = strprotect($filename);
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:5,代码来源:module_mini_menu.class.php

示例5: SMA_Menu

	 	/**
	 	 * Standard constructor. Set $parent=null, if you want to initialize manually with
	 	 * pageId and variation.
	 	 * @param object Reference to the parent container
		 * @param integer pageId of a page to set as menu start node
		 * @param integer Id of the variation to set as default
		 * @param integer Id of the current level 
	 	 */
	 	function SMA_Menu($parent, $pageId=0, $variation=0, $level=0) {  	
	 	     Menu::Menu($parent, $pageId, $variation, $level);
	 	}
开发者ID:BackupTheBerlios,项目名称:nxwcms-svn,代码行数:11,代码来源:sma_menu.php

示例6: MiniMenu

 function MiniMenu($title, $filename)
 {
     $this->function_name = 'menu_' . strtolower($title) . '_' . strtolower($filename);
     parent::Menu($title . '/' . $filename);
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:5,代码来源:mini_menu.class.php

示例7: ContentMenu

 function ContentMenu($title)
 {
     parent::Menu($title);
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:4,代码来源:content_menu.class.php


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