码迷,mamicode.com
首页 > 其他好文 > 详细

sp_get_menu函数使用分析

时间:2016-11-01 00:45:35      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:menu   empty   level   ted   ret   sch   方案   使用   blog   

function sp_get_menu($id="main",$effected_id="mainmenu",$filetpl="<span class=‘file‘>\$label</span>",$foldertpl="<span class=‘folder‘>\$label</span>",$ul_class="" ,$li_class="" ,$style="filetree",$showlevel=6,$dropdown=‘hasChild‘){
	$navs=F("site_nav_".$id);
	if(empty($navs)){
		$navs=_sp_get_menu_datas($id);
	}

	import("Tree");
	$tree = new \Tree();
	$tree->init($navs);
	// var_dump($navs);
	return $tree->get_treeview_menu($id,$effected_id, $filetpl, $foldertpl,  $showlevel,$ul_class,$li_class,  $style,  1, FALSE, $dropdown);
}

  common/common/function/sp_get_menu()

  将get_treeview_menu("main",...),改为$id。

  根据官方案例提供使用,获取$id菜单下所有的子集菜单。

sp_get_menu函数使用分析

标签:menu   empty   level   ted   ret   sch   方案   使用   blog   

原文地址:http://www.cnblogs.com/jinguodong/p/6017674.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!