好记性不如烂笔头,最近帮朋友开发狮子团购模块,需要改动他们的导航,怕以后光忘记,特此记录

路径:/Modules/Seller/Mode/MenuModel.class.php

<?php
/*** lionfish 商城系统** ==========================================================================* @link      http://www.liofis.com/* @copyright Copyright (c) 2015 liofis.com. * @license   http://www.liofis.com/license.html License* ==========================================================================** @author    fish**/
namespace Seller\Model;class MenuModel{/*** 获取 全部菜单带路由* @param bool $full 是否返回长URL* @return array*/public function getMenu($full = false){$return_menu = array();$return_submenu = array();$action_name = ACTION_NAME;if( !empty($action_name) ){$route = strtolower(CONTROLLER_NAME).'.'.ACTION_NAME;}else{$route = strtolower(CONTROLLER_NAME);}$routes = explode('.', $route);$top = (empty($routes[0]) ? 'shop' : $routes[0]);$allmenus = $this->shopMenu();if ($routes[0] == 'system') {$top = $routes[1];}if( in_array(strtolower(CONTROLLER_NAME) , array('weprogram','configpay','express','logistics','shipping','configindex','copyright') )){$top = 'config';}if (!empty($allmenus)) {$submenu = $allmenus[$top];foreach ($allmenus as $key => $val) {$menu_item = array('route' => empty($val['route']) ? $key : $val['route'], 'text' => $val['title'], 'subtitle' => $val['subtitle']);if ($routes[0] == 'system') {//$menu_item['route'] = 'system.' . $menu_item['route'];}if( isset($val['items']) ){$menu_item['items'] = $val['items'];}if (!empty($val['index'])) {$menu_item['index'] = $val['index'];}if (!empty($val['param'])) {$menu_item['param'] = $val['param'];}if (!empty($val['icon'])) {$menu_item['icon'] = $val['icon'];if (!empty($val['iconcolor'])) {$menu_item['iconcolor'] = $val['iconcolor'];}}if ($this->verifyParam($val) ) {$menu_item['active'] = 1;}if ($full) {//$menu_item['url'] = U($menu_item['route'], !empty($menu_item['param']) && is_array($menu_item['param']) ? $menu_item['param'] : array());}$return_menu[] = $menu_item;}unset($key);unset($val);if (!empty($submenu)) {$return_submenu['subtitle'] = $submenu['subtitle'];if ($submenu['main']) {$return_submenu['route'] = $top;if (is_string($submenu['main'])) {//$return_submenu['route'] .= '.' . $submenu['main'];}}if (!empty($submenu['index'])) {//$return_submenu['route'] = $top . '.' . $submenu['index'];}if (!empty($submenu['items'])) {//var_dump($submenu['items']);die();foreach ($submenu['items'] as $i => $child) {if (!empty($child['top'])) {$top = '';}if (empty($child['items'])) {$return_submenu_default = $top . '';$route_second = $top;if (!empty($child['route'])) {if (!empty($top)) {$route_second .= '.';}$route_second .= $child['route'];}$return_menu_child = array('title' => $child['title'], 'route' => $child['route']);if (!empty($child['param'])) {$return_menu_child['param'] = $child['param'];}if (!empty($child['perm'])) {$return_menu_child['perm'] = $child['perm'];}if (!empty($child['permmust'])) {$return_menu_child['permmust'] = $child['permmust'];}if ($routes[0] == 'system') {//$return_menu_child['route'] = 'system.' . $return_menu_child['route'];}$addedit = false;if (!$child['route_must']) {if ((($return_menu_child['route'] . '.add') == $route) || (($return_menu_child['route'] . '.edit') == $route)) {$addedit = true;}}$extend = false;if (!empty($child['extend'])) {if ((($child['extend'] . '.add') == $route) || (($child['extend'] . '.edit') == $route) || ($child['extend'] == $route)) {$extend = true;}}else {if (!empty($child['extends']) && is_array($child['extends'])) {if (in_array($route, $child['extends']) || in_array($route . '.add', $child['extends']) || in_array($route . '.edit', $child['extends'])) {$extend = true;}}}if ($this->verifyParam($return_menu_child, false) ) {$return_menu_child['active'] = 1;}if ($full) {//$return_menu_child['url'] = U($return_menu_child['route'], !empty($return_menu_child['param']) && is_array($return_menu_child['param']) ? $return_menu_child['param'] : array());}//if (!empty($return_menu_child['permmust']) && !$this->cv($return_menu_child['permmust'])) {// continue;//}//if (!$this->cv($return_menu_child['route'])) {// if (empty($return_menu_child['perm']) || !$this->cv($return_menu_child['perm'])) {//     continue;// }//}$return_submenu['items'][] = $return_menu_child;unset($return_submenu_default);unset($route_second);}else {$return_menu_child = array('title' => $child['title'],'items' => array());foreach ($child['items'] as $ii => $three) {$return_submenu_default = $top . '';$route_second = 'main';if (!empty($child['route'])) {$return_submenu_default = $top . '.' . $child['route'];$route_second = $child['route'];}$return_submenu_three = array('title' => $three['title']);$return_submenu_three['route'] = $three['route'];if ($this->verifyParam($three,false) ) {$return_submenu_three['active'] = 1;}if (!empty($three['route'])) {if (!empty($child['route'])) {if (!empty($three['route_ns'])) {//$return_submenu_three['route'] = $top . '.' . $three['route'];}else {//   $return_submenu_three['route'] = $top . '.' . $child['route'] . '.' . $three['route'];}}else {if (!empty($three['top'])) {//$return_submenu_three['route'] = $three['route'];}else {//$return_submenu_three['route'] = $top . '.' . $three['route'];}$route_second = $three['route'];}}else {//$return_submenu_three['route'] = $return_submenu_default;}if (!empty($three['param'])) {$return_submenu_three['param'] = $three['param'];}if (!empty($three['perm'])) {$return_submenu_three['perm'] = $three['perm'];}if (!empty($three['permmust'])) {$return_submenu_three['permmust'] = $three['permmust'];}if ($routes[0] == 'system') {///$return_submenu_three['route'] = 'system.' . $return_submenu_three['route'];}$addedit = false;if (!$three['route_must']) {if ((($return_submenu_three['route'] . '.add') == $route) || (($return_submenu_three['route'] . '.edit') == $route)) {$addedit = true;}}$extend = false;if (!empty($three['extend'])) {if ((($three['extend'] . '.add') == $route) || (($three['extend'] . '.edit') == $route) || ($three['extend'] == $route)) {$extend = true;}}else {if (!empty($three['extends']) && is_array($three['extends'])) {if (in_array($route, $three['extends']) || in_array($route . '.add', $three['extends']) || in_array($route . '.edit', $three['extends'])) {$extend = true;}}}if ($three['route_in'] && strexists($route, $return_submenu_three['route'])) {$return_menu_child['active'] = 1;$return_submenu_three['active'] = 1;}else {if (($return_submenu_three['route'] == $route) || $addedit || $extend) {//if ($this->verifyParam($three)) {$return_menu_child['active'] = 1;$return_submenu_three['active'] = 1;//}}}if (!empty($child['extend'])) {if ($child['extend'] == $route) {$return_menu_child['active'] = 1;}}else {if (is_array($child['extends'])) {if (in_array($route, $child['extends'])) {$return_menu_child['active'] = 1;}}}if ($full) {//$return_submenu_three['url'] = U($return_submenu_three['route'], !empty($return_submenu_three['param']) && is_array($return_submenu_three['param']) ? $return_submenu_three['param'] : array());}//  if (!empty($return_submenu_three['permmust']) && !$this->cv($return_submenu_three['permmust'])) {//      continue;// }// if (!$this->cv($return_submenu_three['route'])) {//    if (empty($return_submenu_three['perm']) || !$this->cv($return_submenu_three['perm'])) {//           continue;//     }//}$return_menu_child['items'][] = $return_submenu_three;}if (!empty($child['items']) && empty($return_menu_child['items'])) {continue;}$return_menu_child['is_show_list'] = $child['is_hide_child'];$return_submenu['items'][] = $return_menu_child;unset($ii);unset($three);unset($route_second);}}}}}return array('menu' => $return_menu, 'submenu' => $return_submenu, 'shopmenu' => array());}protected function verifyParam($item = array(),$is_first = true){$action_name = ACTION_NAME;if( !empty($action_name) ){$route = strtolower(CONTROLLER_NAME).'/'.ACTION_NAME;}else{$route = strtolower(CONTROLLER_NAME);}$return = false;$item_controller_action = $item['route'];$item_controller_action_arr = explode('/', $item_controller_action);if($is_first){//weprogram//weprogram array('weprogram','configpay','configindex','copyright') //特殊菜单 if( in_array(strtolower(CONTROLLER_NAME) , array('weprogram','configpay','configindex','copyright') )){if($item_controller_action_arr[0] == 'config'){$return = true;}}//一级菜单if($item_controller_action_arr[0] == strtolower(CONTROLLER_NAME)){$return = true;}//var_dump($item_controller_action_arr[0] , strtolower(CONTROLLER_NAME) );die();}else{if($item_controller_action == $route){$return = true;}}/**array(5) { ["title"]=> string(6) "概况" ["icon"]=> string(5) "index" ["subtitle"]=> string(12) "概况信息" ["route"]=> string(5) "index" ["items"]=> array(1) { [0]=> array(2) { ["title"]=> string(6) "统计" ["route"]=> string(5) "index" } } }**/return $return;}/*** 定义 商城 菜单* @return array*/public function shopMenu(){$shopmenu_2 = array('index' => array('title'    => '概况','icon'     => 'index','subtitle' => '概况信息','route' => 'index/analys','items'    => array(array('title' => '统计', 'route' => 'index/analys'),)),'goods'       => array('title'    => '商品','subtitle' => '商品管理','icon'     => 'goods','route' => 'goods/index','items'    => array(array('title' => '商品列表', 'route' => 'goods/index'),array('title' => '商品分类', 'route' => 'goods/goodscategory'),array('title' => '商品规格', 'route' => 'goods/goodsspec'),array('title' => '商品标签', 'route' => 'goods/goodstag'),//array('title' => '虚拟评价', 'route' => 'goods/goodsvircomment'),//array('title' => '商品设置', 'route' => 'goods/config'),array('title' => '商品设置','route' => 'goods/config','items' => array(array('title' => '基本设置', 'route' => 'goods/config', 'desc' => ''),array('title' => '统一时间', 'route' => 'goods/settime', 'desc' => ''),array('title' => '工商资质', 'route' => 'goods/industrial', 'desc' => '')),),)),'order'       => array('title'    => '订单','subtitle' => '订单管理','icon'     => 'order','route' => 'order/index','items'    => array(array('title' => '订单列表', 'route' => 'order/index', 'desc' => ''),array('title' => '批量发货', 'route' => 'order/ordersendall', 'desc' => ''),array('title' => '配送管理','route' => 'orderdistribution/index','items' => array(array('title' => '配送员管理', 'route' => 'orderdistribution/index', 'desc' => ''),//array('title' => '配送订单管理', 'route' => 'orderdistribution/orderlist', 'desc' => ''),array('title' => '配送设置', 'route' => 'orderdistribution/distributionconfig', 'desc' => ''),),),array('title' => '提现管理','route' => 'orderdistribution/withdrawallist','items' => array(array('title' => '提现列表', 'route' => 'orderdistribution/withdrawallist', 'desc' => ''),array('title' => '提现设置', 'route' => 'orderdistribution/withdrawalconfig', 'desc' => ''),),),array('title' => '售后管理','route' => 'order/orderaftersales','items' => array(array('title' => '售后订单', 'route' => 'order/orderaftersales', 'desc' => ''),)),    array('title' => '评价管理','route' => 'order/ordercomment','items' => array(array('title' => '评价列表', 'route' => 'order/ordercomment', 'desc' => ''),array('title' => '评价有礼', 'route' => 'order/ordercomment_gift', 'desc' => ''),array('title' => '评价设置', 'route' => 'order/ordercomment_config', 'desc' => '')),),array('title' => '订单设置', 'route' => 'order/config', 'desc' => ''),array('title' => '打印机设置','route' => 'printer/index','items' => array(array('title' => '打印机列表', 'route' => 'printer/index', 'desc' => ''),array('title' => '打印机设置', 'route' => 'printer/config', 'desc' => '')),),),),'user'       => array('title'    => '会员','subtitle' => '会员管理','icon'     => 'user','route' => 'user/index','items'    => array(array('title' => '会员列表', 'route' => 'user/index', 'desc' => ''),array('title' => '虚拟会员', 'route' => 'user/userjia', 'desc' => ''),array('title' => '会员设置', 'route' => 'user/config', 'desc' => ''),array('title' => '会员分组', 'route' => 'user/usergroup', 'desc' => ''),array('title' => '会员等级', 'route' => 'user/userlevel', 'desc' => ''),array('title' => '会员分销','route' => 'distribution/distribution','items' => array(array('title' => '分销列表', 'route' => 'distribution/distribution', 'desc' => ''),array('title' => '订单管理', 'route' => 'distribution/distributionorder', 'desc' => ''),array('title' => '分销设置', 'route' => 'distribution/config', 'desc' => ''),array('title' => '海报设置', 'route' => 'distribution/qrcodeconfig', 'desc' => ''),array('title' => '提现列表', 'route' => 'distribution/withdrawallist', 'desc' => ''),array('title' => '提现设置', 'route' => 'distribution/withdraw_config', 'desc' => ''),)),)),'communityhead'  => array('title'    => '团长','subtitle' => '团长管理','icon'     => 'communityhead','route' => 'communityhead/index','items'    => array(array('title' => '团长列表', 'route' => 'communityhead/index', 'desc' => ''),array('title' => '团长分组', 'route' => 'communityhead/usergroup', 'desc' => ''),array('title' => '团长等级', 'route' => 'communityhead/headlevel', 'desc' => ''),array('title' => '团长设置', 'route' => 'communityhead/config', 'desc' => ''),array('title' => '提现管理','route' => 'communityhead/distribulist','items' => array(array('title' => '提现列表', 'route' => 'communityhead/distribulist', 'desc' => ''),array('title' => '提现设置', 'route' => 'communityhead/distributionpostal', 'desc' => ''),)),),),'salesroom'  => array('title'    => '门店','subtitle' => '门店管理','icon'     => 'supply','route' => 'salesroom/index','items'    => array(array('title' => '门店列表', 'route' => 'salesroom/index', 'desc' => ''),array('title' => '核销人员', 'route' => 'salesroom_member/index', 'desc' => ''),array('title' => '核销订单记录', 'route' => 'salesroom_order/index', 'desc' => ''),),),'supply'  => array('title'    => '供应商','subtitle' => '供应商管理','icon'     => 'supply','route' => 'supply/index','items'    => array(array('title' => '供应商列表', 'route' => 'supply/index', 'desc' => ''),array('title' => '提现申请', 'route' => 'supply/admintixianlist', 'desc' => ''),array('title' => '提现设置', 'route' => 'supply/distributionpostal', 'desc' => ''),//array('title' => '供应商设置', 'route' => 'supply/config', 'desc' => ''),array('title' => '供应商设置','route' => 'supply/baseconfig','items' => array(array('title' => '基本设置', 'route' => 'supply/baseconfig', 'desc' => ''),array('title' => '申请页面内容', 'route' => 'supply/config', 'desc' => ''), array('title' => '供应商权限设置', 'route' => 'supply/authority', 'desc' => '')),),),),'group'    => array('title'    => '拼团','subtitle' => '拼团管理','icon'     => 'pin','route' => 'group/goods','items'    => array(array('title' => '商品管理', 'route' => 'group/goods', 'desc' => ''),array('title' => '商品分类', 'route' => 'group/goodscategory', 'desc' => ''),array('title' => '商品规格', 'route' => 'group/goodsspec', 'desc' => ''),array('title' => '商品标签', 'route' => 'group/goodstag', 'desc' => ''),array('title' => '虚拟评价', 'route' => 'group/goodsvircomment', 'desc' => ''),array('title' => '拼团管理', 'route' => 'group/pintuan', 'desc' => ''),array('title' => '订单管理', 'route' => 'group/orderlist', 'desc' => ''),array('title' => '批量发货', 'route' => 'group/ordersendall', 'desc' => ''),array('title' => '售后管理', 'route' => 'group/orderaftersales', 'desc' => ''),array('title' => '幻灯片', 'route' => 'group/slider', 'desc' => ''),array('title' => '拼团设置', 'route' => 'group/config', 'desc' => ''),array('title' => '拼团佣金', 'route' => 'group/pincommiss', 'desc' => ''),array('title' => '提现列表', 'route' => 'group/withdrawallist', 'desc' => ''),array('title' => '提现设置', 'route' => 'group/withdraw_config', 'desc' => ''),)),'generalmall'  => array('title'    => '仅快递','subtitle' => '仅快递管理','icon'     => 'store','route' => 'generalmall/slider','items'    => array(array('title' => '幻灯片', 'route' => 'generalmall/slider', 'desc' => ''),array('title' => '导航图标', 'route' => 'generalmall/navigat', 'desc' => ''),),),'article'   => array('title'    => '文章','subtitle' => '文章管理','icon'     => 'discovery','route' => 'article/index','items'    => array(array('title' => '文章列表', 'route' => 'article/index', 'desc' => ''),)),'marketing'     => array('title'    => '营销','subtitle' => '营销活动','icon'     => 'marketing','route' => 'marketing/coupon','items'    => array(array( 'title' => '优惠券管理','route' => 'marketing/coupon','items' => array(array('title' => '优惠券', 'route' => 'marketing/coupon', 'desc' => ''),array('title' => '优惠券分类', 'route' => 'marketing/category', 'desc' => ''),array('title' => '手动发送', 'route' => 'marketing/send', 'desc' => ''),)),array('title' => '满减', 'route' => 'marketing/fullreduction', 'desc' => ''),array('title' => '积分','route' => 'marketing/signinreward','items' => array(array('title' => '积分签到', 'route' => 'marketing/signinreward', 'desc' => ''),array('title' => '积分商品', 'route' => 'points/goods', 'desc' => ''),array('title' => '兑换订单', 'route' => 'points/order', 'desc' => ''),array('title' => '积分设置', 'route' => 'marketing/points', 'desc' => ''),)),array('title' => '弹窗广告', 'route' => 'popadv/index', 'desc' => ''),array('title' => '广告图片', 'route' => 'advimg/add', 'desc' => ''),array('title' => '整点秒杀', 'route' => 'marketing/seckill', 'desc' => ''),array('title' => '菜谱','route' => 'recipe/index','items' => array(array('title' => '菜谱管理', 'route' => 'recipe/index', 'desc' => ''),array('title' => '菜谱分类', 'route' => 'recipe/category', 'desc' => ''),array('title' => '幻灯片', 'route' => 'recipe/slider', 'desc' => ''),array('title' => '菜谱设置', 'route' => 'recipe/config', 'desc' => ''),)),array('title' => '群接龙','route' => 'solitaire/index','items' => array(array('title' => '活动管理', 'route' => 'solitaire/index', 'desc' => ''),array('title' => '活动设置', 'route' => 'solitaire/config', 'desc' => ''),)),array('title' => '充值','route' => 'marketing/recharge','items' => array(array('title' => '充值设置', 'route' => 'marketing/recharge_config', 'desc' => ''),array('title' => '充值说明', 'route' => 'marketing/explain', 'desc' => ''),array('title' => '充值流水', 'route' => 'marketing/recharge_diary', 'desc' => ''),)),array('title' => '主题活动', 'route' => 'marketing/special', 'desc' => ''),array('title' => '付费会员卡','route' => 'vipcard/index','items' => array(array('title' => '会员卡', 'route' => 'vipcard/index', 'desc' => ''),array('title' => '会员权益', 'route' => 'vipcard/equity', 'desc' => ''),array('title' => '购买记录', 'route' => 'vipcard/order', 'desc' => ''),array('title' => '会员卡设置', 'route' => 'vipcard/config', 'desc' => ''),)),array('title' => '预售活动','route' => 'presale/index','items' => array(array('title' => '商品管理', 'route' => 'presale/index', 'desc' => ''),array('title' => '幻灯片', 'route' => 'presale/slider', 'desc' => ''),array('title' => '预售订单', 'route' => 'presale/order', 'desc' => ''),array('title' => '预售统计', 'route' => 'presale/statistics', 'desc' => ''),array('title' => '活动设置', 'route' => 'presale/config', 'desc' => ''),)),)),'delivery'  => array('title'    => '配送','subtitle' => '配送单管理','icon'     => 'delivery2','route' => 'delivery/delivery','items'    => array(array('title' => '配送单管理', 'route' => 'delivery/index', 'desc' => ''),array('title' => '生成配送单', 'route' => 'delivery/get_list', 'desc' => ''),array('title' => '配送路线', 'route' => 'delivery/line', 'desc' => ''),array('title' => '配送司机', 'route' => 'delivery/clerk', 'desc' => ''),array('title' => '设置', 'route' => 'delivery/config', 'desc' => ''),),),'reports'   => array('title'    => '数据','subtitle' => '数据统计','icon'     => 'reports','route' => 'reports/index','items'    => array(array('title' => '营业数据', 'route' => 'reports/index', 'desc' => ''),array('title' => '数据统计', 'route' => 'reports/datastatics', 'desc' => ''),array('title' => '毛利统计', 'route' => 'reports/goodstatics', 'desc' => ''),array('title' => '团长统计', 'route' => 'reports/communitystatics', 'desc' => ''),)),'perm'  => array('title'    => '权限','subtitle' => '权限管理','icon'     => 'perm','route' => 'perm/index','items'    => array(array('title' => '角色管理', 'route' => 'perm/index', 'desc' => ''),array('title' => '用户管理', 'route' => 'perm/user', 'desc' => ''),),),'attachment'  => array('title'    => '附件','subtitle' => '附件管理','icon'     => 'attachment','route' => 'attachment/index','items'    => array(array('title' => '附件设置', 'route' => 'attachment/index', 'desc' => ''),),),'config'       => array('title'    => '设置','subtitle' => '设置','icon'     => 'setup','route' => 'config/index','items'    => array(array('title' => '基本设置', 'route' => 'config/index', 'desc' => ''),array('title' => '图片设置', 'route' => 'config/picture', 'desc' => ''),array('title' => '小程序设置','route' => 'weprogram/index','items' => array(array('title' => '参数设置', 'route' => 'weprogram/index', 'desc' => ''),array('title' => '模板消息', 'route' => 'weprogram/templateconfig', 'desc' => ''),array('title' => '订阅消息', 'route' => 'weprogram/subscribetemplateconfig', 'desc' => ''),array('title' => '底部菜单', 'route' => 'weprogram/tabbar', 'desc' => ''),)),
//                  array('title' => '证书设置', 'route' => 'configpay/index', 'desc' => ''),array('title' => '首页设置','route' => 'configindex/slider','items' => array(array('title' => '幻灯片', 'route' => 'configindex/slider', 'desc' => ''),array('title' => '公告', 'route' => 'configindex/notice', 'desc' => ''),array('title' => '导航图标', 'route' => 'configindex/navigat', 'desc' => ''),array('title' => '公告设置', 'route' => 'configindex/noticesetting', 'desc' => ''),array('title' => '抢购切换', 'route' => 'configindex/qgtab', 'desc' => ''),array('title' => '图片魔方', 'route' => 'configindex/cube', 'desc' => ''),array('title' => '视频', 'route' => 'configindex/video', 'desc' => ''),)),array('title' => '小程序路径', 'route' => 'config/links', 'desc' => ''),array('title' => '物流设置','route' => 'shipping/templates','items' => array(array('title' => '运费模板', 'route' => 'shipping/templates', 'desc' => ''),array('title' => '物流接口', 'route' => 'logistics/inface', 'desc' => ''),//array('title' => '地区管理', 'route' => 'config/logistics.area', 'desc' => ''),array('title' => '快递方式', 'route' => 'express/config', 'desc' => ''),array('title' => '同城配送', 'route' => 'express/localtownconfig', 'desc' => ''),array('title' => '订单推送', 'route' => 'express/ordersendconfig', 'desc' => ''),array('title' => '配送方式', 'route' => 'express/deconfig', 'desc' => ''),)),array('title' => '电子面单','route' => 'logistics/index','items' => array(array('title' => '面单列表', 'route' => 'logistics/index', 'desc' => ''),array('title' => '面单设置', 'route' => 'logistics/inface', 'desc' => ''),)),array('title' => '个人中心','route' => 'copyright/index','is_hide_child' => 2,'items' => array(array('title' => '版权说明', 'route' => 'copyright/index', 'desc' => ''),array('title' => '关于我们', 'route' => 'copyright/about', 'desc' => ''),array('title' => '图标设置', 'route' => 'copyright/icon', 'desc' => ''),)),array('title' => '小程序直播','route' => 'wxlive/index','is_hide_child' => 2,'items' => array(array('title' => '直播间管理', 'route' => 'wxlive/index', 'desc' => ''),array('title' => '设置', 'route' => 'wxlive/setting', 'desc' => ''),)),//array('title' => '后台账户', 'route' => 'copyright/account', 'desc' => ''),array('title' => '系统日志', 'route' => 'operatelog/index', 'desc' => ''),)),);   if(SELLERUID != 1){$seller_info = M('seller')->field('s_role_id')->where( array('s_id' => SELLERUID ) )->find();$perm_role = M('lionfish_comshop_perm_role')->where( array('id' => $seller_info['s_role_id']) )->find();//marketing,marketing.marketing.recharge_diary,marketing.vipcard.order$perms_str = $perm_role['perms2'];// marketing.explain$shopmenu3 = array();foreach($shopmenu_2 as $key => $val){$j = 0;$is_in =false;$new_val = $val;$get_items = array();$first_route = '';foreach($val['items'] as $kk => $vv){//route$new_rt = str_replace('/','.', $vv['route']);$is_in_child = false;if( isset($vv['items'])  && !empty($vv['items']) ){$ij =0;$tp_items = array();foreach( $vv['items'] as $tk => $tv ){$new_rt_tk = str_replace('/','.', $tv['route']);if( strpos($perms_str, '.'.$new_rt_tk) !== false ){$tp_items[$tk] = $tv;$is_in_child = true;if( $ij == 0 ){$first_route = $tv['route'];}$ij++;}}if( !empty($tp_items) ){$vv['route'] = $first_route;$vv['items'] = $tp_items;}}if( strpos($perms_str, '.'.$new_rt) !== false ){$get_items[$kk] = $vv;$is_in = true;}else{if(isset($vv['items'])  && !empty($vv['items']) && $is_in_child){$get_items[$kk] = $vv;$is_in = true;}continue;}if( $j == 0 ){$first_route = $vv['route'];}$j++;}if( $is_in  ){$new_val['route'] = $first_route;$new_val['items'] = $get_items;$shopmenu3[$key] = $new_val;}}$shopmenu_2 = $shopmenu3;}if (defined('ROLE') && ROLE == 'agenter' ) {$supper_info = get_agent_logininfo();$shopmenu_2 = array();$shopmenu_2['index'] =  array('title'    => '概况','icon'     => 'index','subtitle' => '概况信息','route' => 'index/analys','items'    => array(array('title' => '统计', 'route' => 'index/analys')));$shopmenu_2['goods'] = array('title'    => '商品','subtitle' => '商品管理','icon'     => 'goods','route' => 'goods/index','items'    => array(array('title' => '商品列表', 'route' => 'goods/index'),array('title' => '商品设置','route' => '','items' => array(array('title' => '统一时间', 'route' => 'goods/settime', 'desc' => '')),),));if($supper_info['type'] == 1){$is_open_supply_print= D('Home/Front')->get_config_by_name('is_open_supply_print' );  if(!empty($is_open_supply_print)){              $shopmenu_2['order'] = array('title'    => '订单','subtitle' => '订单管理','icon'     => 'order','route' => 'order/index','items'    => array(array('title' => '订单列表', 'route' => 'order/index', 'desc' => ''),array('title' => '批量发货', 'route' => 'order/ordersendall', 'desc' => ''),array('title' => '售后管理','route' => '','items' => array(array('title' => '售后订单', 'route' => 'order/orderaftersales', 'desc' => ''),)),array('title' => '打印机设置', 'route' => 'order/printconfig', 'desc' => ''),));}else{$shopmenu_2['order'] = array('title'    => '订单','subtitle' => '订单管理','icon'     => 'order','route' => 'order/index','items'    => array(array('title' => '订单列表', 'route' => 'order/index', 'desc' => ''),array('title' => '批量发货', 'route' => 'order/ordersendall', 'desc' => ''),array('title' => '售后管理','route' => '','items' => array(array('title' => '售后订单', 'route' => 'order/orderaftersales', 'desc' => ''),)), ));}}else{$shopmenu_2['order'] = array('title'    => '订单','subtitle' => '订单管理','route' => 'order/index','icon'     => 'order','items'    => array(array('title' => '订单列表', 'route' => 'order/index', 'desc' => ''),));}$shopmenu_2['salesroom'] = array('title'    => '门店','subtitle' => '门店管理','icon'     => 'supply','route' => 'salesroom/index','items'    => array(array('title' => '门店列表', 'route' => 'salesroom/index', 'desc' => ''),array('title' => '核销人员', 'route' => 'salesroom_member/index', 'desc' => ''),array('title' => '核销订单记录', 'route' => 'salesroom_order/index', 'desc' => ''),),);$shopmenu_2['supply'] = array('title'    => '财务','subtitle' => '资金流水','icon'     => 'supply','route' => 'supply/floworder','items'    => array(array('title' => '资金流水', 'route' => 'supply/floworder', 'desc' => ''),array('title' => '提现管理', 'route' => 'supply/tixianlist', 'desc' => ''),),);$supply_is_open_localtown_distribution = D('Home/Front')->get_config_by_name('supply_is_open_localtown_distribution' );$isopen_localtown_delivery = D('Home/Front')->get_config_by_name('isopen_localtown_delivery' );if(!empty($supply_is_open_localtown_distribution) && !empty($isopen_localtown_delivery)){$shopmenu_2['modifypassword'] = array('title'    => '设置','subtitle' => '登录信息','icon'     => 'supply','route' => 'supply/modifypassword','items'    => array(array('title' => '修改密码', 'route' => 'supply/modifypassword', 'desc' => ''),array('title' => '同城配送', 'route' => 'express/localtownconfig', 'desc' => '')),);$shopmenu_2['order']['items'][] = array('title' => '配送管理','route' => 'orderdistribution/index','items' => array(array('title' => '配送员管理', 'route' => 'orderdistribution/index', 'desc' => ''),array('title' => '配送设置', 'route' => 'orderdistribution/distributionconfig', 'desc' => ''),));$shopmenu_2['order']['items'][] = array('title' => '提现管理','route' => 'orderdistribution/withdrawallist','items' => array(array('title' => '提现列表', 'route' => 'orderdistribution/withdrawallist', 'desc' => ''),array('title' => '提现设置', 'route' => 'orderdistribution/withdrawalconfig', 'desc' => ''),));}else{$shopmenu_2['modifypassword'] = array('title'    => '设置','subtitle' => '登录信息','icon'     => 'supply','route' => 'supply/modifypassword','items'    => array(array('title' => '修改密码', 'route' => 'supply/modifypassword', 'desc' => '')),);}}return $shopmenu_2;}public function check_seller_perm($route){if(SELLERUID != 1){$seller_info = M('seller')->field('s_role_id')->where( array('s_id' => SELLERUID ) )->find();$perm_role = M('lionfish_comshop_perm_role')->where( array('id' => $seller_info['s_role_id']) )->find();$perms_str = $perm_role['perms2'];$new_route = str_replace('/','.', $route);if( strpos($perms_str, $new_route) !== false ){return true;}else{return false;}}else{return true;}}
}
?>

             欢迎大家交流沟通!

微擎狮子团购模块二开记录之导航修改相关推荐

  1. Java生鲜电商平台-团购模块设计与架构

    Java生鲜电商平台-团购模块设计与架构 说明:任何一个电商系统中,对于促销这块是必不可少的,毕竟这块是最吸引用户的,用户也是最爱的模块之一,理由很简单,便宜. 我的经验是无论是大的餐饮点还是小的餐饮 ...

  2. 方维团购系统二次开发,项目经验

    方维团购系统二次开发,项目经验 基于方维团购4.2系统上进行二次开发 在保留方维系统绝大部分现有功能下,二次开发内容包含以下几大部分: 1. 会员账号系统 2. 资金返现返券系统(代金券.账户余额.返 ...

  3. 电商平台-团购模块设计与架构

    说明:任何一个电商系统中,对于促销这块是必不可少的,毕竟这块是最吸引用户的,用户也是最爱的模块之一,理由很简单,便宜. 我的经验是无论是大的餐饮点还是小的餐饮店,优惠与折扣永远是说福他们进入平台的最好 ...

  4. 方维团购系统二次开发,order、order_goods、goods表的数据

    方维团购系统二次开发,order.order_goods.goods表的数据 select * from fanwe_order; 数据库查询结果 [ 返回12条查询记录 耗时:0.000805s ] ...

  5. 由于wx.getuserprofile升级导致老版独立狮子团购小程序 个人信息不显示修复

    最近很多朋友因为微信小程序用户获取信息改版,导致老版的小程序只能显示微信用户,微信小程序对于审核小程序提出了带有wx.login.wx.getUserInfo接口的调整,并提出了一个新的接口供开发者调 ...

  6. java 团购开发_Java生鲜电商平台-团购模块设计与架构

    Java生鲜电商平台-团购模块设计与架构 说明:任何一个电商系统中,对于促销这块是必不可少的,毕竟这块是最吸引用户的,用户也是最爱的模块之一,理由很简单,便宜. 我的经验是无论是大的餐饮点还是小的餐饮 ...

  7. php路由类默认模块,微擎入口路由及其模块入口路由 - YangJunwei

    一.微擎入口路由 微擎有2个入口文件 /web/index.php?c=site&a=entry /app/index.php?c=entry 路由变量 $controller = $_GPC ...

  8. html制作今日团购模块,最土团购 模板说明

    最土团购 模板说明 最土团购系统,采用了一贯的模板脚本分离的技术. 其模板处理逻辑同Discuz的模板技术基本一致 所有的模板文件均位于 include/template/ 目录下 CSS 位于 /s ...

  9. PHP -----微擎内置方法生成二维码和下载二维码

    1.新建一个类文件code.php,主要用于处理二维码的方法: 在页面的 顶部引用: load()->library('qrcode'); class code{//方法写在这 } 2.生成二维 ...

最新文章

  1. Quartz2D绘图
  2. 清华「暗黑破坏神」夺超算世界冠军,暨南大学首次参赛就跻身前三 | ISC21
  3. python读文件操作-python 之文件操作
  4. d3中文案例_D3.js柱状图例子
  5. Flowable工作流总结_工作规范流程设计思路
  6. 【Maven】windows 拷贝项目到内网 全面飘红 终极解决
  7. Eclipse build launcher 3具体步骤
  8. javascript中replace()
  9. 抄书——最优化的理论与方法(5)——数学基础(凸集和凸函数)
  10. 猴子--教你如何准备一份数据分析师简历的清单
  11. javascript设置网页快捷键
  12. Katana中设置全局变量
  13. 微信朋友圈python广告演员_Python制作微信好友背景墙教程(附完整代码)
  14. 手机投影到deepin
  15. 路由器设备升级SNMP日志
  16. java获取西瓜视频的下载地址
  17. 英语六级试卷软件测试,背单词软件_2018年12月英语六级考试真题测试(11)含答案_沪江英语...
  18. 旅游流的概念_旅游流的概念界定与理论内涵新论
  19. 什么软件可以测试sd卡,如何做SD卡测试和SD卡测试工具
  20. redis源码解析(二)——SDS(简单动态字符串)

热门文章

  1. 百度商桥留言板镶嵌到网页内部的方法
  2. 可以帮我做一个python的3D飞机小游戏吗
  3. excel单元格数据与文本框数据同步
  4. 2021年中国禽蛋行业现状分析:禽蛋产量同比下降1.7%[图]
  5. 病毒计算机系统还原,有了这款系统还原软件,电脑不再怕病毒来犯
  6. 作为程序员的他,大学四年一直自学,全靠这些实用工具和学习网站
  7. Typecho上手指南
  8. PHP世纪年,[转帖]PHP世纪万年历_PHP教程
  9. QNX Hypervisor —— 时间
  10. AppCrawler 使用中遇到问题的问题及解决