Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

menu.php 49KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. $main_lang= get_main_lang();
  14. $admin_lang = get_admin_lang();
  15. $domain = request()->domain();
  16. /*PC端可视编辑URl*/
  17. $uiset_pc_arr = [];
  18. if (file_exists(ROOT_PATH.'template/'.TPL_THEME.'pc/uiset.txt')) {
  19. $uiset_pc_arr = array(
  20. 'url' => url('Uiset/pc', array(), true, $domain),
  21. 'is_menu' => 1,
  22. );
  23. }
  24. /*--end*/
  25. /*手机端可视编辑URl*/
  26. $uiset_mobile_arr = [];
  27. if (file_exists(ROOT_PATH.'template/'.TPL_THEME.'mobile/uiset.txt')) {
  28. $uiset_mobile_arr = array(
  29. 'url' => url('Uiset/mobile', array(), true, $domain),
  30. 'is_menu' => 1,
  31. );
  32. }
  33. /*--end*/
  34. /*清理数据URl*/
  35. $uiset_data_url = '';
  36. if (!empty($uiset_pc_arr) || !empty($uiset_mobile_arr)) {
  37. $uiset_data_url = url('Uiset/ui_index', array(), true, $domain);
  38. }
  39. /*--end*/
  40. /*可视编辑URL*/
  41. $uiset_index_arr = array();
  42. if (!empty($uiset_pc_arr) || !empty($uiset_mobile_arr)) {
  43. $uiset_index_arr = array(
  44. 'url' => url('Uiset/ui_index', array(), true, $domain),
  45. 'is_menu' => 1,
  46. );
  47. }
  48. /*--end*/
  49. /*基本信息*/
  50. $ctlactArr = [
  51. 'System@web',
  52. 'System@web2',
  53. 'System@basic',
  54. 'System@water',
  55. 'System@api_conf',
  56. 'PayApi@pay_api_index',
  57. ];
  58. $system_index_arr = array();
  59. foreach ($ctlactArr as $key => $val) {
  60. if (is_check_access($val)) {
  61. $arr = explode('@', $val);
  62. $system_index_arr = array(
  63. 'controller' => !empty($arr[0]) ? $arr[0] : '',
  64. 'action' => !empty($arr[1]) ? $arr[1] : '',
  65. );
  66. break;
  67. }
  68. }
  69. /*--end*/
  70. /*SEO优化URl*/
  71. $seo_index_arr = array();
  72. if ($main_lang != $admin_lang) {
  73. $seo_index_arr = array(
  74. 'controller' => 'Links',
  75. 'action' => 'index',
  76. );
  77. } else {
  78. $ctlactArr = [
  79. 'Seo@seo',
  80. 'Sitemap@index',
  81. 'Links@index',
  82. ];
  83. foreach ($ctlactArr as $key => $val) {
  84. if (is_check_access($val)) {
  85. $arr = explode('@', $val);
  86. $seo_index_arr = array(
  87. 'controller' => !empty($arr[0]) ? $arr[0] : '',
  88. 'action' => !empty($arr[1]) ? $arr[1] : '',
  89. );
  90. break;
  91. }
  92. }
  93. }
  94. /*--end*/
  95. /*备份还原URl*/
  96. $tools_index_arr = array();
  97. if ($main_lang == $admin_lang) {
  98. $tools_index_arr = array(
  99. 'is_menu' => 1,
  100. );
  101. }
  102. /*--end*/
  103. /*频道模型URl*/
  104. $channeltype_index_arr = array();
  105. if ($main_lang == $admin_lang) {
  106. $channeltype_index_arr = array(
  107. 'is_menu' => 1,
  108. );
  109. }
  110. /*--end*/
  111. /*回收站URl*/
  112. $recyclebin_index_arr = array();
  113. if ($main_lang == $admin_lang) {
  114. $recyclebin_index_arr = array(
  115. 'is_menu' => 1,
  116. );
  117. }
  118. /*--end*/
  119. /*插件应用URl*/
  120. $weapp_index_arr = array();
  121. if ($main_lang == $admin_lang && 1 == tpCache('global.web_weapp_switch') && file_exists(ROOT_PATH.'weapp')) {
  122. //功能限制
  123. $auth_function = true;
  124. if (function_exists('checkAuthRule')) {
  125. $auth_function = checkAuthRule(2005);
  126. }
  127. //2005 菜单id
  128. if ($auth_function){
  129. $weapp_index_arr = array(
  130. 'is_menu' => 1,
  131. );
  132. }else{
  133. $weapp_index_arr = array(
  134. 'is_menu' => 0,
  135. );
  136. }
  137. }
  138. /*--end*/
  139. /*会员中心URl*/
  140. $users_index_arr = array();
  141. if (1 == tpCache('global.web_users_switch') && $main_lang == $admin_lang) {
  142. $users_index_arr = array(
  143. 'is_menu' => 1,
  144. 'is_modules' => 1,
  145. );
  146. }
  147. /*--end*/
  148. /*商城中心URl*/
  149. $shop_index_arr = array();
  150. $shopServicemeal = array_join_string(array('cGhwLnBocF9zZXJ2aWNlbWVhbA=='));
  151. if (1 == tpCache('global.web_users_switch') && 1 == getUsersConfigData('shop.shop_open') && $main_lang == $admin_lang && 1.5 <= tpCache($shopServicemeal)) {
  152. $shop_index_arr = array(
  153. 'is_menu' => 0,
  154. 'is_modules' => 1,
  155. );
  156. }
  157. /*--end*/
  158. /*订单管理URl*/
  159. $order_index_arr = array();
  160. if (!empty($users_index_arr['is_modules']) || !empty($shop_index_arr['is_modules'])) {
  161. $order_index_arr = array(
  162. 'is_menu' => 1,
  163. 'is_modules' => 1,
  164. );
  165. }
  166. /*--end*/
  167. /*待审文档URl*/
  168. $archives_index_draft_arr = array();
  169. if (1 == tpCache('global.web_users_switch') && 1 == getUsersConfigData('users.users_open_release') && $main_lang == $admin_lang) {
  170. $archives_index_draft_arr = array(
  171. 'is_menu' => 1,
  172. 'is_modules' => 1,
  173. );
  174. }
  175. /*--end*/
  176. /*退回文档URl*/
  177. $archives_index_reback_arr = array();
  178. if ($main_lang == $admin_lang) {
  179. $archives_index_reback_arr = array(
  180. 'is_menu' => 1,
  181. 'is_modules' => 1,
  182. );
  183. }
  184. /*--end*/
  185. /*小程序*/
  186. $diyminipro_index_arr = array();
  187. if (is_dir('./weapp/Diyminipro/') && 1 == tpCache('global.web_diyminipro_switch') && $main_lang == $admin_lang) {
  188. $diyminipro_index_arr = array(
  189. 'is_modules' => 1,
  190. );
  191. }
  192. /*--end*/
  193. /*更多功能*/
  194. $index_switch_map_arr = array(
  195. 'is_menu' => 1,
  196. 'is_modules' => 1,
  197. );
  198. /*--end*/
  199. /**
  200. * 权限模块属性说明
  201. * array
  202. * id 主键ID
  203. * parent_id 父ID
  204. * name 模块名称
  205. * controller 控制器
  206. * action 操作名
  207. * url 跳转链接(控制器与操作名为空时,才使用url)
  208. * target 打开窗口方式
  209. * icon 菜单图标
  210. * grade 层级
  211. * is_menu 是否显示菜单
  212. * is_modules 是否显示权限模块分组
  213. * is_subshowmenu 子模块是否有显示的模块
  214. * child 子模块
  215. */
  216. return array(
  217. '1000'=>array(
  218. 'id'=>1000,
  219. 'parent_id'=>0,
  220. 'name'=>'',
  221. 'controller'=>'',
  222. 'action'=>'',
  223. 'url'=>'',
  224. 'target'=>'workspace',
  225. 'grade'=>0,
  226. 'is_menu'=>1,
  227. 'is_modules'=>1,
  228. 'is_subshowmenu'=>1,
  229. 'child'=>array(
  230. '1005' => [
  231. 'id'=>1005,
  232. 'parent_id'=>1000,
  233. 'name' => '欢迎页',
  234. 'controller'=>'Index',
  235. 'action'=>'welcome',
  236. 'url'=>'',
  237. 'target'=>'workspace',
  238. 'icon'=>'fa fa-user',
  239. 'grade'=>1,
  240. 'is_menu'=>0,
  241. 'is_modules'=>1,
  242. 'is_subshowmenu'=>0,
  243. 'child' => [
  244. '1005001' => [
  245. 'id'=>1005001,
  246. 'parent_id'=>1005,
  247. 'name' => '快捷导航',
  248. 'controller'=>'Index',
  249. 'action'=>'ajax_quickmenu',
  250. 'url'=>'',
  251. 'target'=>'workspace',
  252. 'icon'=>'fa fa-undo',
  253. 'grade'=>2,
  254. 'is_menu'=>0,
  255. 'is_modules'=>1,
  256. 'is_subshowmenu'=>0,
  257. 'child' => [],
  258. ],
  259. '1005002' => [
  260. 'id'=>1005002,
  261. 'parent_id'=>1005,
  262. 'name' => '内容统计',
  263. 'controller'=>'Index',
  264. 'action'=>'ajax_content_total',
  265. 'url'=>'',
  266. 'target'=>'workspace',
  267. 'icon'=>'fa fa-undo',
  268. 'grade'=>2,
  269. 'is_menu'=>0,
  270. 'is_modules'=>1,
  271. 'is_subshowmenu'=>0,
  272. 'child' => [],
  273. ],
  274. ],
  275. ],
  276. '1001' => array(
  277. 'id'=>1001,
  278. 'parent_id'=>1000,
  279. 'name' => '栏目管理',
  280. 'controller'=>'Arctype',
  281. 'action'=>'index',
  282. 'param' => '|mt20|1',
  283. 'url'=>'',
  284. 'target'=>'workspace',
  285. 'icon'=>'iconfont e-lanmuguanli',
  286. 'grade'=>1,
  287. 'is_menu'=>1,
  288. 'is_modules'=>1,
  289. 'is_subshowmenu'=>0,
  290. 'child' => array(),
  291. ),
  292. '1002' => array(
  293. 'id'=>1002,
  294. 'parent_id'=>1000,
  295. 'name' => '内容管理',
  296. 'controller'=>'Archives',
  297. 'action'=>'index',
  298. 'url'=>'',
  299. 'target'=>'workspace',
  300. 'icon'=>'iconfont e-neirongwendang',
  301. 'grade'=>1,
  302. 'is_menu'=>1,
  303. 'is_modules'=>1,
  304. 'is_subshowmenu'=>0,
  305. 'child' => array(),
  306. ),
  307. '1004' => array(
  308. 'id'=>1004,
  309. 'parent_id'=>1000,
  310. 'name' => '待审文档',
  311. 'controller'=>'Archives',
  312. 'action'=>'index_draft',
  313. 'param' => '|menu|1',
  314. 'url'=>'',
  315. 'target'=>'workspace',
  316. 'icon'=>'iconfont e-tougao',
  317. 'grade'=>1,
  318. 'is_menu'=>isset($archives_index_draft_arr['is_menu']) ? $archives_index_draft_arr['is_menu'] : 0,
  319. 'is_modules'=>isset($archives_index_draft_arr['is_modules']) ? $archives_index_draft_arr['is_modules'] : 0,
  320. 'is_subshowmenu'=>0,
  321. 'child' => array(),
  322. ),
  323. /*'1006' => array(
  324. 'id'=>1006,
  325. 'parent_id'=>1000,
  326. 'name' => '退回文档',
  327. 'controller'=>'Archives',
  328. 'action'=>'index_reback',
  329. 'param' => '|menu|1',
  330. 'url'=>'',
  331. 'target'=>'workspace',
  332. 'icon'=>'iconfont e-tougao',
  333. 'grade'=>1,
  334. 'is_menu'=>isset($archives_index_reback_arr['is_menu']) ? $archives_index_reback_arr['is_menu'] : 0,
  335. 'is_modules'=>isset($archives_index_reback_arr['is_modules']) ? $archives_index_reback_arr['is_modules'] : 0,
  336. 'is_subshowmenu'=>0,
  337. 'child' => array(),
  338. ),*/
  339. '1003' => array(
  340. 'id'=>1003,
  341. 'parent_id'=>1000,
  342. 'name' => '广告管理',
  343. 'controller'=>'AdPosition',
  344. 'action'=>'index',
  345. 'url'=>'',
  346. 'target'=>'workspace',
  347. 'icon'=>'iconfont e-guanggao',
  348. 'grade'=>1,
  349. 'is_menu'=>1,
  350. 'is_modules'=>1,
  351. 'is_subshowmenu'=>0,
  352. 'child' => array(),
  353. ),
  354. '1006' => array(
  355. 'id'=>1006,
  356. 'parent_id'=>1000,
  357. 'name' => '职称管理',
  358. 'controller'=>'ZcPosition',
  359. 'action'=>'index',
  360. 'url'=>'',
  361. 'target'=>'workspace',
  362. 'icon'=>'iconfont e-guanggao',
  363. 'grade'=>1,
  364. 'is_menu'=>1,
  365. 'is_modules'=>1,
  366. 'is_subshowmenu'=>0,
  367. 'child' => array(),
  368. ),
  369. '1007' => array(
  370. 'id'=>1007,
  371. 'parent_id'=>1000,
  372. 'name' => '职称问答',
  373. 'controller'=>'ZcwdPosition',
  374. 'action'=>'index',
  375. 'url'=>'',
  376. 'target'=>'workspace',
  377. 'icon'=>'iconfont e-guanggao',
  378. 'grade'=>1,
  379. 'is_menu'=>1,
  380. 'is_modules'=>1,
  381. 'is_subshowmenu'=>0,
  382. 'child' => array(),
  383. ),
  384. ),
  385. ),
  386. '2000'=>array(
  387. 'id'=>2000,
  388. 'parent_id'=>0,
  389. 'name'=>'设置',
  390. 'controller'=>'',
  391. 'action'=>'',
  392. 'url'=>'',
  393. 'target'=>'workspace',
  394. 'grade'=>0,
  395. 'is_menu'=>1,
  396. 'is_modules'=>1,
  397. 'is_subshowmenu'=>1,
  398. 'child'=>array(
  399. '2001' => array(
  400. 'id'=>2001,
  401. 'parent_id'=>2000,
  402. 'name' => '基本信息',
  403. 'controller'=>isset($system_index_arr['controller']) ? $system_index_arr['controller'] : 'System',
  404. 'action'=>isset($system_index_arr['action']) ? $system_index_arr['action'] : 'index',
  405. 'url'=>'',
  406. 'target'=>'workspace',
  407. 'icon'=>'iconfont e-shezhi',
  408. 'grade'=>1,
  409. 'is_menu'=>1,
  410. 'is_modules'=>1,
  411. 'is_subshowmenu'=>0,
  412. 'child' => array(
  413. '2001001' => array(
  414. 'id'=>2001001,
  415. 'parent_id'=>2001,
  416. 'name' => '网站信息',
  417. 'controller'=>'System',
  418. 'action'=>'web',
  419. 'url'=>'',
  420. 'target'=>'workspace',
  421. 'icon'=>'iconfont fa-undo',
  422. 'grade'=>2,
  423. 'is_menu'=>0,
  424. 'is_modules'=>1,
  425. 'is_subshowmenu'=>0,
  426. 'child' => array(),
  427. ),
  428. '2001002' => array(
  429. 'id'=>2001002,
  430. 'parent_id'=>2001,
  431. 'name' => '核心设置',
  432. 'controller'=>'System',
  433. 'action'=>'web2',
  434. 'url'=>'',
  435. 'target'=>'workspace',
  436. 'icon'=>'fa fa-undo',
  437. 'grade'=>2,
  438. 'is_menu'=>0,
  439. 'is_modules'=>1,
  440. 'is_subshowmenu'=>0,
  441. 'child' => array(),
  442. ),
  443. '2001003' => array(
  444. 'id'=>2001003,
  445. 'parent_id'=>2001,
  446. 'name' => '附件扩展',
  447. 'controller'=>'System',
  448. 'action'=>'basic',
  449. 'url'=>'',
  450. 'target'=>'workspace',
  451. 'icon'=>'fa fa-undo',
  452. 'grade'=>2,
  453. 'is_menu'=>0,
  454. 'is_modules'=>1,
  455. 'is_subshowmenu'=>0,
  456. 'child' => array(),
  457. ),
  458. '2001005' => array(
  459. 'id'=>2001005,
  460. 'parent_id'=>2001,
  461. 'name' => '接口API',
  462. 'controller'=>'System',
  463. 'action'=>'api_conf',
  464. 'url'=>'',
  465. 'target'=>'workspace',
  466. 'icon'=>'fa fa-undo',
  467. 'grade'=>2,
  468. 'is_menu'=>0,
  469. 'is_modules'=>1,
  470. 'is_subshowmenu'=>0,
  471. 'child' => array(),
  472. ),
  473. '2001006' => array(
  474. 'id'=>2001006,
  475. 'parent_id'=>2001,
  476. 'name' => '自定义变量',
  477. 'controller'=>'System',
  478. 'action'=>'customvar_index',
  479. 'url'=>'',
  480. 'target'=>'workspace',
  481. 'icon'=>'fa fa-undo',
  482. 'grade'=>2,
  483. 'is_menu'=>0,
  484. 'is_modules'=>1,
  485. 'is_subshowmenu'=>0,
  486. 'child' => array(),
  487. ),
  488. ),
  489. ),
  490. '2002' => array(
  491. 'id'=>2002,
  492. 'parent_id'=>2000,
  493. 'name' => '可视编辑',
  494. 'controller'=>'Uiset',
  495. 'action'=>'ui_index',
  496. 'url'=>isset($uiset_index_arr['url']) ? $uiset_index_arr['url'] : '',
  497. 'target'=>'workspace',
  498. 'icon'=>'iconfont e-keshihuabianji',
  499. 'grade'=>1,
  500. 'is_menu'=>isset($uiset_index_arr['is_menu']) ? $uiset_index_arr['is_menu'] : 0,
  501. 'is_modules'=>1,
  502. 'is_subshowmenu'=>1,
  503. 'child'=>array(
  504. '2002001' => array(
  505. 'id'=>2002001,
  506. 'parent_id'=>2002,
  507. 'name' => '电脑端',
  508. 'controller'=>'Uiset',
  509. 'action'=>'pc',
  510. 'url'=>isset($uiset_pc_arr['url']) ? $uiset_pc_arr['url'] : '',
  511. 'target'=>'_blank',
  512. 'icon'=>'iconfont e-pc',
  513. 'grade'=>2,
  514. 'is_menu'=>isset($uiset_pc_arr['is_menu']) ? $uiset_pc_arr['is_menu'] : 0,
  515. 'is_modules'=>0,
  516. 'is_subshowmenu'=>0,
  517. 'child' => array(),
  518. ),
  519. '2002002' => array(
  520. 'id'=>2002002,
  521. 'parent_id'=>2002,
  522. 'name' => '手机端',
  523. 'controller'=>'Uiset',
  524. 'action'=>'mobile',
  525. 'url'=>isset($uiset_mobile_arr['url']) ? $uiset_mobile_arr['url'] : '',
  526. 'target'=>'_blank',
  527. 'icon'=>'fa fa-mobile',
  528. 'grade'=>2,
  529. 'is_menu'=>isset($uiset_mobile_arr['is_menu']) ? $uiset_mobile_arr['is_menu'] : 0,
  530. 'is_modules'=>0,
  531. 'is_subshowmenu'=>0,
  532. 'child' => array(),
  533. ),
  534. '2002003' => array(
  535. 'id'=>2002003,
  536. 'parent_id'=>2002,
  537. 'name' => '数据清理',
  538. 'controller'=>'Uiset',
  539. 'action'=>'ui_index',
  540. 'url'=>'',
  541. 'target'=>'workspace',
  542. 'icon'=>'iconfont e-qingli',
  543. 'grade'=>2,
  544. 'is_menu'=>1,
  545. 'is_modules'=>0,
  546. 'is_subshowmenu'=>0,
  547. 'child' => array(),
  548. ),
  549. ),
  550. ),
  551. '2003' => array(
  552. 'id'=>2003,
  553. 'parent_id'=>2000,
  554. 'name' => 'SEO模块',
  555. 'controller'=>isset($seo_index_arr['controller']) ? $seo_index_arr['controller'] : 'Seo',
  556. 'action'=>isset($seo_index_arr['action']) ? $seo_index_arr['action'] : 'seo',
  557. 'url'=>'',
  558. 'target'=>'workspace',
  559. 'icon'=>'iconfont e-seo',
  560. 'grade'=>1,
  561. 'is_menu'=>1,
  562. 'is_modules'=>1,
  563. 'is_subshowmenu'=>0,
  564. 'child'=>array(
  565. '2003001' => array(
  566. 'id'=>2003001,
  567. 'parent_id'=>2003,
  568. 'name' => 'SEO设置',
  569. 'controller'=>'Seo',
  570. 'action'=>'seo',
  571. 'url'=>'',
  572. 'target'=>'workspace',
  573. 'icon'=>'iconfont e-URLpeizhi1',
  574. 'grade'=>2,
  575. 'is_menu'=>0,
  576. 'is_modules'=>1,
  577. 'is_subshowmenu'=>0,
  578. 'child' => array(),
  579. ),
  580. '2003002' => array(
  581. 'id'=>2003002,
  582. 'parent_id'=>2003,
  583. 'name' => 'Sitemap',
  584. 'controller'=>'Sitemap',
  585. 'action'=>'index',
  586. 'url'=>'',
  587. 'target'=>'workspace',
  588. 'icon'=>'iconfont e-Sitemap',
  589. 'grade'=>2,
  590. 'is_menu'=>0,
  591. 'is_modules'=>1,
  592. 'is_subshowmenu'=>0,
  593. 'child' => array(),
  594. ),
  595. '2003003' => array(
  596. 'id'=>2003003,
  597. 'parent_id'=>2003,
  598. 'name' => '友情链接',
  599. 'controller'=>'Links',
  600. 'action'=>'index',
  601. 'url'=>'',
  602. 'target'=>'workspace',
  603. 'icon'=>'iconfont e-youqinglianjie1',
  604. 'grade'=>2,
  605. 'is_menu'=>0,
  606. 'is_modules'=>1,
  607. 'is_subshowmenu'=>0,
  608. 'child' => array(),
  609. ),
  610. // '2003004' => array(
  611. // 'id'=>2003004,
  612. // 'parent_id'=>2003,
  613. // 'name' => 'html生成',
  614. // 'controller'=>'Seo',
  615. // 'action'=>'build',
  616. // 'url'=>'',
  617. // 'target'=>'workspace',
  618. // 'icon'=>'iconfont e-jingtaishengcheng',
  619. // 'grade'=>2,
  620. // 'is_menu'=>0,
  621. // 'is_modules'=>1,
  622. // 'is_subshowmenu'=>0,
  623. // 'child' => array(),
  624. // ),
  625. ),
  626. ),
  627. '2004' => array(
  628. 'id'=>2004,
  629. 'parent_id'=>2000,
  630. 'name' => '功能地图',
  631. 'controller'=>'Index',
  632. 'action'=>'switch_map',
  633. 'url'=>'',
  634. 'target'=>'workspace',
  635. 'icon'=>'iconfont e-caidangongneng',
  636. 'grade'=>1,
  637. 'is_menu'=>isset($index_switch_map_arr['is_menu']) ? $index_switch_map_arr['is_menu'] : 0,
  638. 'is_modules'=>isset($index_switch_map_arr['is_modules']) ? $index_switch_map_arr['is_modules'] : 0,
  639. 'is_subshowmenu'=>0,
  640. 'child' => array(
  641. '2004001' => array(
  642. 'id'=>2004001,
  643. 'parent_id'=>2004,
  644. 'name' => '管理员',
  645. 'controller'=>'Admin',
  646. 'action'=>'index',
  647. 'url'=>'',
  648. 'target'=>'workspace',
  649. 'icon'=>'iconfont e-guanliyuan',
  650. 'grade'=>2,
  651. 'is_menu'=>1,
  652. 'is_modules'=>0,
  653. 'is_subshowmenu'=>0,
  654. 'child' => array(),
  655. ),
  656. '2004002' => array(
  657. 'id'=>2004002,
  658. 'parent_id'=>2004,
  659. 'name' => '备份还原',
  660. 'controller'=>'Tools',
  661. 'action'=>'index',
  662. 'url'=>'',
  663. 'target'=>'workspace',
  664. 'icon'=>'iconfont e-beifenhuanyuan',
  665. 'grade'=>2,
  666. 'is_menu'=>isset($tools_index_arr['is_menu']) ? $tools_index_arr['is_menu'] : 0,
  667. 'is_modules'=>0,
  668. 'is_subshowmenu'=>0,
  669. 'child' => array(),
  670. ),
  671. '2004003' => array(
  672. 'id'=>2004003,
  673. 'parent_id'=>2004,
  674. 'name' => '模板管理',
  675. 'controller'=>'Filemanager',
  676. 'action'=>'index',
  677. 'url'=>'',
  678. 'target'=>'workspace',
  679. 'icon'=>'iconfont e-mobanguanli',
  680. 'grade'=>2,
  681. 'is_menu'=>1,
  682. 'is_modules'=>0,
  683. 'is_subshowmenu'=>0,
  684. 'child' => array(),
  685. ),
  686. '2004004' => array(
  687. 'id'=>2004004,
  688. 'parent_id'=>2004,
  689. 'name' => '栏目字段',
  690. 'controller'=>'Field',
  691. 'action'=>'arctype_index',
  692. 'url'=>'',
  693. 'target'=>'workspace',
  694. 'icon'=>'iconfont e-lanmuziduan',
  695. 'grade'=>2,
  696. 'is_menu'=>0,
  697. 'is_modules'=>0,
  698. 'is_subshowmenu'=>0,
  699. 'child' => array(),
  700. ),
  701. // '2004005' => array(
  702. // 'id'=>2004005,
  703. // 'parent_id'=>2004,
  704. // 'name' => '清除缓存',
  705. // 'controller'=>'System',
  706. // 'action'=>'clear_cache',
  707. // 'url'=>'',
  708. // 'target'=>'workspace',
  709. // 'icon'=>'fa fa-undo',
  710. // 'grade'=>2,
  711. // 'is_menu'=>1,
  712. // 'is_modules'=>0,
  713. // 'is_subshowmenu'=>0,
  714. // 'child' => array(),
  715. // ),
  716. '2004006' => array(
  717. 'id'=>2004006,
  718. 'parent_id'=>2004,
  719. 'name' => '回收站',
  720. 'controller'=>'RecycleBin',
  721. 'action'=>'archives_index',
  722. 'param' => '|mt20|1|menu|1',
  723. 'url'=>'',
  724. 'target'=>'workspace',
  725. 'icon'=>'iconfont e-huishouzhan',
  726. 'grade'=>2,
  727. 'is_menu'=>isset($recyclebin_index_arr['is_menu']) ? $recyclebin_index_arr['is_menu'] : 0,
  728. 'is_modules'=>0,
  729. 'is_subshowmenu'=>0,
  730. 'child' => array(),
  731. ),
  732. '2004007' => array(
  733. 'id'=>2004007,
  734. 'parent_id'=>2004,
  735. 'name' => '频道模型',
  736. 'controller'=>'Channeltype',
  737. 'action'=>'index',
  738. 'url'=>'',
  739. 'target'=>'workspace',
  740. 'icon'=>'iconfont e-pindaomoxing',
  741. 'grade'=>2,
  742. 'is_menu'=>isset($channeltype_index_arr['is_menu']) ? $channeltype_index_arr['is_menu'] : 0,
  743. 'is_modules'=>0,
  744. 'is_subshowmenu'=>0,
  745. 'child' => array(),
  746. ),
  747. '2004008' => array(
  748. 'id'=>2004008,
  749. 'parent_id'=>2004,
  750. 'name' => '文档属性',
  751. 'controller'=>'ArchivesFlag',
  752. 'action'=>'index',
  753. 'url'=>'',
  754. 'target'=>'workspace',
  755. 'icon'=>'iconfont e-wendangshuxing',
  756. 'grade'=>2,
  757. 'is_menu'=>0,
  758. 'is_modules'=>1,
  759. 'is_subshowmenu'=>0,
  760. 'child' => array(),
  761. ),
  762. '2004009' => array(
  763. 'id'=>2004009,
  764. 'parent_id'=>2004,
  765. 'name' => '图片水印',
  766. 'controller'=>'System',
  767. 'action'=>'water',
  768. 'url'=>'',
  769. 'target'=>'workspace',
  770. 'icon'=>'iconfont e-shuiyinpeizhi',
  771. 'grade'=>2,
  772. 'is_menu'=>0,
  773. 'is_modules'=>1,
  774. 'is_subshowmenu'=>0,
  775. 'child' => array(),
  776. ),
  777. '2004010' => array(
  778. 'id'=>2004010,
  779. 'parent_id'=>2004,
  780. 'name' => '缩略图设置',
  781. 'controller'=>'System',
  782. 'action'=>'thumb',
  783. 'url'=>'',
  784. 'target'=>'workspace',
  785. 'icon'=>'iconfont e-suolvetupeizhi',
  786. 'grade'=>2,
  787. 'is_menu'=>0,
  788. 'is_modules'=>1,
  789. 'is_subshowmenu'=>0,
  790. 'child' => array(),
  791. ),
  792. '2004011' => array(
  793. 'id'=>2004011,
  794. 'parent_id'=>2004,
  795. 'name' => 'TAG管理',
  796. 'controller'=>'Tags',
  797. 'action'=>'index',
  798. 'url'=>'',
  799. 'target'=>'workspace',
  800. 'icon'=>'iconfont e-TAGguanli',
  801. 'grade'=>2,
  802. 'is_menu'=>0,
  803. 'is_modules'=>1,
  804. 'is_subshowmenu'=>0,
  805. 'child' => array(),
  806. ),
  807. '2004012' => array(
  808. 'id'=>2004012,
  809. 'parent_id'=>2004,
  810. 'name' => '模块开关',
  811. 'controller'=>'Index',
  812. 'action'=>'switch_map_0',
  813. 'url'=>'',
  814. 'target'=>'workspace',
  815. 'icon'=>'fa fa-undo',
  816. 'grade'=>2,
  817. 'is_menu'=>0,
  818. 'is_modules'=>1,
  819. 'is_subshowmenu'=>0,
  820. 'child' => array(),
  821. ),
  822. '2004013' => array(
  823. 'id'=>2004013,
  824. 'parent_id'=>2004,
  825. 'name' => '导航管理',
  826. 'controller'=>'Navigation',
  827. 'action'=>'index',
  828. 'url'=>'',
  829. 'target'=>'workspace',
  830. 'icon'=>'iconfont e-daohangguanli',
  831. 'grade'=>2,
  832. 'is_menu'=>0,
  833. 'is_modules'=>1,
  834. 'is_subshowmenu'=>0,
  835. 'child' => array(),
  836. ),
  837. '2004014' => array(
  838. 'id'=>2004014,
  839. 'parent_id'=>2004,
  840. 'name' => '站内通知',
  841. 'controller'=>'UsersNotice',
  842. 'action'=>'admin_notice_index',
  843. 'url'=>'',
  844. 'target'=>'workspace',
  845. 'icon'=>'fa fa-undo',
  846. 'grade'=>2,
  847. 'is_menu'=>0,
  848. 'is_modules'=>1,
  849. 'is_subshowmenu'=>0,
  850. 'child' => array(),
  851. ),
  852. '2004015' => array(
  853. 'id'=>2004015,
  854. 'parent_id'=>2004,
  855. 'name' => '验证码管理',
  856. 'controller'=>'Vertify',
  857. 'action'=>'index',
  858. 'url'=>'',
  859. 'target'=>'workspace',
  860. 'icon'=>'iconfont e-yanzhengmaguanli',
  861. 'grade'=>2,
  862. 'is_menu'=>0,
  863. 'is_modules'=>1,
  864. 'is_subshowmenu'=>0,
  865. 'child' => array(),
  866. ),
  867. '2004016' => array(
  868. 'id'=>2004016,
  869. 'parent_id'=>2004,
  870. 'name' => 'html生成',
  871. 'controller'=>'Seo',
  872. 'action'=>'build',
  873. 'url'=>'',
  874. 'target'=>'workspace',
  875. 'icon'=>'iconfont e-jingtaishengcheng',
  876. 'grade'=>2,
  877. 'is_menu'=>0,
  878. 'is_modules'=>1,
  879. 'is_subshowmenu'=>0,
  880. 'child' => array(),
  881. ),
  882. '2004017' => array(
  883. 'id'=>2004017,
  884. 'parent_id'=>2004,
  885. 'name' => '安全中心',
  886. 'controller'=>'Security',
  887. 'action'=>'index',
  888. 'url'=>'',
  889. 'target'=>'workspace',
  890. 'icon'=>'iconfont e-anquanshezhi',
  891. 'grade'=>2,
  892. 'is_menu'=>0,
  893. 'is_modules'=>1,
  894. 'is_subshowmenu'=>0,
  895. 'child' => array(),
  896. ),
  897. '2004018' => array(
  898. 'id'=>2004018,
  899. 'parent_id'=>2004,
  900. 'name' => '留言中心',
  901. 'controller'=>'Form',
  902. 'action'=>'index',
  903. 'param' => '',
  904. 'url'=>'',
  905. 'target'=>'workspace',
  906. 'icon'=>'iconfont e-biaodanguanli',
  907. 'grade'=>2,
  908. 'is_menu'=>0,
  909. 'is_modules'=>1,
  910. 'is_subshowmenu'=>0,
  911. 'child' => array(),
  912. ),
  913. '2004019' => array(
  914. 'id'=>2004019,
  915. 'parent_id'=>2004,
  916. 'name' => '城市分站',
  917. 'controller'=>'Citysite',
  918. 'action'=>'index',
  919. 'url'=>'',
  920. 'target'=>'workspace',
  921. 'icon'=>'iconfont e-chengshifenzhan',
  922. 'grade'=>2,
  923. 'is_menu'=>0,
  924. 'is_modules'=>1,
  925. 'is_subshowmenu'=>0,
  926. 'child' => array(),
  927. ),
  928. '2004020' => array(
  929. 'id'=>2004020,
  930. 'parent_id'=>2004,
  931. 'name' => '当前导航',
  932. 'controller'=>'Index',
  933. 'action'=>'switch_map_1',
  934. 'url'=>'',
  935. 'target'=>'workspace',
  936. 'icon'=>'fa fa-undo',
  937. 'grade'=>2,
  938. 'is_menu'=>0,
  939. 'is_modules'=>1,
  940. 'is_subshowmenu'=>0,
  941. 'child' => array(),
  942. ),
  943. '2004021' => array(
  944. 'id'=>2004021,
  945. 'parent_id'=>2004,
  946. 'name' => '订单管理',
  947. 'controller'=>'Order',
  948. 'action'=>'index',
  949. 'url'=>'',
  950. 'target'=>'workspace',
  951. 'icon'=>'iconfont e-dingdanguanli',
  952. 'grade'=>2,
  953. 'is_menu'=> isset($order_index_arr['is_menu']) ? $order_index_arr['is_menu'] : 0,
  954. 'is_modules'=> isset($order_index_arr['is_modules']) ? $order_index_arr['is_modules'] : 0,
  955. 'is_subshowmenu'=>0,
  956. 'child' => array(),
  957. ),
  958. '2004022' => array(
  959. 'id'=>2004022,
  960. 'parent_id'=>2004,
  961. 'name' => '搜索管理',
  962. 'controller'=>'Search',
  963. 'action'=>'index',
  964. 'url'=>'',
  965. 'target'=>'workspace',
  966. 'icon'=>'iconfont e-soguanjianci',
  967. 'grade'=>2,
  968. 'is_menu'=>0,
  969. 'is_modules'=>1,
  970. 'is_subshowmenu'=>0,
  971. 'child' => array(),
  972. ),
  973. '2004023' => array(
  974. 'id'=>2004023,
  975. 'parent_id'=>2004,
  976. 'name' => '积分兑换',
  977. 'controller'=>'Memgift',
  978. 'action'=>'gift_exchange_list',
  979. 'url'=>'',
  980. 'target'=>'workspace',
  981. 'icon'=>'iconfont e-lipinduihuan',
  982. 'grade'=>2,
  983. 'is_menu'=>0,
  984. 'is_modules'=>1,
  985. 'is_subshowmenu'=>0,
  986. 'child' => array(),
  987. ),
  988. '2004025' => array(
  989. 'id'=>2004025,
  990. 'parent_id'=>2004,
  991. 'name' => '主题风格',
  992. 'controller'=>'Index',
  993. 'action'=>'theme_index',
  994. 'param' => '',
  995. 'url'=>'',
  996. 'target'=>'workspace',
  997. 'icon'=>'iconfont e-zhutifengge',
  998. 'grade'=>2,
  999. 'is_menu'=>0,
  1000. 'is_modules'=>1,
  1001. 'is_subshowmenu'=>0,
  1002. 'child' => array(),
  1003. ),
  1004. '2004026' => array(
  1005. 'id'=>2004026,
  1006. 'parent_id'=>2004,
  1007. 'name' => '外贸助手',
  1008. 'controller'=>'Foreign',
  1009. 'action'=>'index',
  1010. 'param' => '',
  1011. 'url'=>'',
  1012. 'target'=>'workspace',
  1013. 'icon'=>'iconfont e-zhutifengge',
  1014. 'grade'=>2,
  1015. 'is_menu'=>0,
  1016. 'is_modules'=>1,
  1017. 'is_subshowmenu'=>0,
  1018. 'child' => array(),
  1019. ),
  1020. ),
  1021. ),
  1022. '2005' => array(
  1023. 'id'=>2005,
  1024. 'parent_id'=>2000,
  1025. 'name' => '插件应用',
  1026. 'controller'=>'Weapp',
  1027. 'action'=>'index',
  1028. 'url'=>'',
  1029. 'target'=>'workspace',
  1030. 'icon'=>'iconfont e-chajian',
  1031. 'grade'=>1,
  1032. 'is_menu'=>isset($weapp_index_arr['is_menu']) ? $weapp_index_arr['is_menu'] : 0,
  1033. 'is_modules'=>0,
  1034. 'is_subshowmenu'=>0,
  1035. 'child'=>array(),
  1036. ),
  1037. '2006' => array(
  1038. 'id'=>2006,
  1039. 'parent_id'=>2000,
  1040. 'name' => '会员中心',
  1041. 'controller'=>'Member',
  1042. 'action'=>'users_index',
  1043. 'url'=>'',
  1044. 'target'=>'workspace',
  1045. 'icon'=>'iconfont e-gerenzhongxin',
  1046. 'grade'=>1,
  1047. 'is_menu'=>isset($users_index_arr['is_menu']) ? $users_index_arr['is_menu'] : 0,
  1048. 'is_modules'=>isset($users_index_arr['is_modules']) ? $users_index_arr['is_modules'] : 0,
  1049. 'is_subshowmenu'=>0,
  1050. 'child' => array(
  1051. '2006001' => array(
  1052. 'id'=>2006001,
  1053. 'parent_id'=>2006,
  1054. 'name' => '余额充值',
  1055. 'controller'=>'Member',
  1056. 'action'=>'money_index',
  1057. 'param' => '|conceal|1',
  1058. 'url'=>'',
  1059. 'target'=>'workspace',
  1060. 'icon'=>'iconfont e-yuechongzhi',
  1061. 'grade'=>2,
  1062. 'is_menu'=>0,
  1063. 'is_modules'=>1,
  1064. 'is_subshowmenu'=>0,
  1065. 'child' => array(),
  1066. ),
  1067. '2006002' => array(
  1068. 'id'=>2006002,
  1069. 'parent_id'=>2006,
  1070. 'name' => '视频订单',
  1071. 'controller'=>'Member',
  1072. 'action'=>'media_index',
  1073. 'param' => '|conceal|1',
  1074. 'url'=>'',
  1075. 'target'=>'workspace',
  1076. 'icon'=>'iconfont e-shipindingdan',
  1077. 'grade'=>2,
  1078. 'is_menu'=>0,
  1079. 'is_modules'=>1,
  1080. 'is_subshowmenu'=>0,
  1081. 'child' => array(),
  1082. ),
  1083. '2006003' => array(
  1084. 'id'=>2006003,
  1085. 'parent_id'=>2006,
  1086. 'name' => '会员订单',
  1087. 'controller'=>'Level',
  1088. 'action'=>'upgrade_index',
  1089. 'param' => '|conceal|1',
  1090. 'url'=>'',
  1091. 'target'=>'workspace',
  1092. 'icon'=>'iconfont e-huiyuandingdan',
  1093. 'grade'=>2,
  1094. 'is_menu'=>0,
  1095. 'is_modules'=>1,
  1096. 'is_subshowmenu'=>0,
  1097. 'child' => array(),
  1098. ),
  1099. '2006004' => array(
  1100. 'id'=>2006004,
  1101. 'parent_id'=>2006,
  1102. 'name' => '文章订单',
  1103. 'controller'=>'Member',
  1104. 'action'=>'article_index',
  1105. 'param' => '|conceal|1',
  1106. 'url'=>'',
  1107. 'target'=>'workspace',
  1108. 'icon'=>'iconfont e-wenzhangdingdan',
  1109. 'grade'=>2,
  1110. 'is_menu'=>0,
  1111. 'is_modules'=>1,
  1112. 'is_subshowmenu'=>0,
  1113. 'child' => array(),
  1114. ),
  1115. ),
  1116. ),
  1117. '2008' => array(
  1118. 'id'=>2008,
  1119. 'parent_id'=>2000,
  1120. 'name' => '商城中心',
  1121. 'controller'=>'Shop',
  1122. 'action'=>'home',
  1123. 'url'=>'',
  1124. 'target'=>'workspace',
  1125. 'icon'=>'iconfont e-shangcheng',
  1126. 'grade'=>1,
  1127. 'is_menu'=> isset($shop_index_arr['is_menu']) ? $shop_index_arr['is_menu'] : 0,
  1128. 'is_modules'=> isset($shop_index_arr['is_modules']) ? $shop_index_arr['is_modules'] : 0,
  1129. 'is_subshowmenu'=>0,
  1130. 'child' => array(
  1131. '2008001' => array(
  1132. 'id'=>2008001,
  1133. 'parent_id'=>2008,
  1134. 'name' => '数据统计',
  1135. 'controller'=>'Statistics',
  1136. 'action'=>'index',
  1137. 'param' => '|conceal|1',
  1138. 'url'=>'',
  1139. 'target'=>'workspace',
  1140. 'icon'=>'iconfont e-shujutongji',
  1141. 'grade'=>2,
  1142. 'is_menu'=>0,
  1143. 'is_modules'=>1,
  1144. 'is_subshowmenu'=>0,
  1145. 'child' => array(),
  1146. ),
  1147. '2008002' => array(
  1148. 'id'=>2008002,
  1149. 'parent_id'=>2008,
  1150. 'name' => '商品管理',
  1151. 'controller'=>'ShopProduct',
  1152. 'action'=>'index',
  1153. 'param' => '|conceal|1',
  1154. 'url'=>'',
  1155. 'target'=>'workspace',
  1156. 'icon'=>'iconfont e-shangpinguanli',
  1157. 'grade'=>2,
  1158. 'is_menu'=>0,
  1159. 'is_modules'=>1,
  1160. 'is_subshowmenu'=>0,
  1161. 'child' => array(),
  1162. ),
  1163. '2008003' => array(
  1164. 'id'=>2008003,
  1165. 'parent_id'=>2008,
  1166. 'name' => '商品参数',
  1167. 'controller'=>'ShopProduct',
  1168. 'action'=>'attrlist_index',
  1169. 'param' => '|conceal|1',
  1170. 'url'=>'',
  1171. 'target'=>'workspace',
  1172. 'icon'=>'iconfont e-shangpincanshu',
  1173. 'grade'=>2,
  1174. 'is_menu'=>0,
  1175. 'is_modules'=>1,
  1176. 'is_subshowmenu'=>0,
  1177. 'child' => array(),
  1178. ),
  1179. '2008004' => array(
  1180. 'id'=>2008004,
  1181. 'parent_id'=>2008,
  1182. 'name' => '商城配置',
  1183. 'controller'=>'Shop',
  1184. 'action'=>'conf',
  1185. 'param' => '|conceal|1',
  1186. 'url'=>'',
  1187. 'target'=>'workspace',
  1188. 'icon'=>'iconfont e-shangchengpeizhi',
  1189. 'grade'=>2,
  1190. 'is_menu'=>0,
  1191. 'is_modules'=>1,
  1192. 'is_subshowmenu'=>0,
  1193. 'child' => array(),
  1194. ),
  1195. '2008005' => array(
  1196. 'id'=>2008005,
  1197. 'parent_id'=>2008,
  1198. 'name' => '营销功能',
  1199. 'controller'=>'Shop',
  1200. 'action'=>'market_index',
  1201. 'param' => '|conceal|1',
  1202. 'url'=>'',
  1203. 'target'=>'workspace',
  1204. 'icon'=>'iconfont e-yingxiaogongneng',
  1205. 'grade'=>2,
  1206. 'is_menu'=>0,
  1207. 'is_modules'=>1,
  1208. 'is_subshowmenu'=>0,
  1209. 'child' => array(),
  1210. ),
  1211. '2008006' => array(
  1212. 'id'=>2008006,
  1213. 'parent_id'=>2008,
  1214. 'name' => '商城订单',
  1215. 'controller'=>'Shop',
  1216. 'action'=>'index',
  1217. 'param' => '|order_status|10|conceal|1',
  1218. 'url'=>'',
  1219. 'target'=>'workspace',
  1220. 'icon'=>'iconfont e-shangchengdingdan',
  1221. 'grade'=>2,
  1222. 'is_menu'=>0,
  1223. 'is_modules'=>1,
  1224. 'is_subshowmenu'=>0,
  1225. 'child' => array(),
  1226. ),
  1227. '2008007' => array(
  1228. 'id'=>2008007,
  1229. 'parent_id'=>2008,
  1230. 'name' => '售后处理',
  1231. 'controller'=>'ShopService',
  1232. 'action'=>'after_service',
  1233. 'param' => '|conceal|1',
  1234. 'url'=>'',
  1235. 'target'=>'workspace',
  1236. 'icon'=>'iconfont e-shouhouchuli',
  1237. 'grade'=>2,
  1238. 'is_menu'=>0,
  1239. 'is_modules'=>1,
  1240. 'is_subshowmenu'=>0,
  1241. 'child' => array(),
  1242. ),
  1243. '2008008' => array(
  1244. 'id'=>2008008,
  1245. 'parent_id'=>2008,
  1246. 'name' => '商品规格',
  1247. 'controller'=>'Shop',
  1248. 'action'=>'spec_index',
  1249. 'param' => '|conceal|1',
  1250. 'url'=>'',
  1251. 'target'=>'workspace',
  1252. 'icon'=>'iconfont e-shangpinguige',
  1253. 'grade'=>2,
  1254. 'is_menu'=>0,
  1255. 'is_modules'=>1,
  1256. 'is_subshowmenu'=>0,
  1257. 'child' => array(),
  1258. ),
  1259. ),
  1260. ),
  1261. '2009' => array(
  1262. 'id'=>2009,
  1263. 'parent_id'=>2000,
  1264. 'name' => '可视化小程序',
  1265. 'controller'=>'Diyminipro',
  1266. 'action'=>'page_edit',
  1267. 'url'=>'',
  1268. 'target'=>'workspace',
  1269. 'icon'=>'fa fa-code',
  1270. 'grade'=>1,
  1271. 'is_menu'=>0,
  1272. 'is_modules'=>isset($diyminipro_index_arr['is_modules']) ? $diyminipro_index_arr['is_modules'] : 0,
  1273. 'is_subshowmenu'=>0,
  1274. 'child' => array(),
  1275. ),
  1276. ),
  1277. ),
  1278. );