首页 > 代码库 > ThinkCMF-首页Nav部分菜单配置详解
ThinkCMF-首页Nav部分菜单配置详解
Nav菜单代码放在了 /themes/simplebootx/Public/nav.html
具体代码:
<?php $effected_id="main-menu"; $filetpl="<a href=http://www.mamicode.com/‘/$href‘ target=‘/$target‘>/$label"; $foldertpl="<a href=http://www.mamicode.com/‘/$href‘ target=‘/$target‘ class=‘dropdown-toggle‘ data-toggle=‘dropdown‘>/$label "; $ul_class="dropdown-menu" ; $li_class="" ; $style="nav"; $showlevel=6; $dropdown=‘dropdown‘; echo sp_get_menu("main",$effected_id,$filetpl,$foldertpl,$ul_class,$li_class,$style,$showlevel,$dropdown); ?>
其中"main"表示要获取菜单分类为主菜单下的所有active为1的菜单
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); return $tree->get_treeview_menu(0,$effected_id, $filetpl, $foldertpl, $showlevel,$ul_class,$li_class, $style, 1, FALSE, $dropdown); } function _sp_get_menu_datas($id){ $nav_obj= M("Nav"); $oldid=$id; $id= intval($id); $id = empty($id)?"main":$id; if($id=="main"){ $navcat_obj= M("NavCat"); $main=$navcat_obj->where("active=1")->find(); //挑选出主菜单 $id=$main[‘navcid‘]; } if(empty($id)){ return array(); } ...... }
$effected_id="main-menu" 表示生成的ul元素的id
ThinkCMF-首页Nav部分菜单配置详解
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。