国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

168 lines
10KB

  1. <?php
  2. /**
  3. * 后台管理菜单项
  4. *
  5. * @version $Id: inc_menu.php 1 10:32 2010年7月21日Z tianya $
  6. * @package DedeCMS.Administrator
  7. * @copyright Copyright (c) 2020, DedeBIZ.COM
  8. * @license https://www.dedebiz.com/license
  9. * @link https://www.dedebiz.com
  10. */
  11. require_once(dirname(__FILE__)."/../config.php");
  12. //载入可发布频道
  13. $addset = '';
  14. //检测可用的内容模型
  15. if($cfg_admin_channel = 'array' && count($admin_catalogs) > 0)
  16. {
  17. $admin_catalog = join(',', $admin_catalogs);
  18. $dsql->SetQuery(" SELECT channeltype FROM `#@__arctype` WHERE id IN({$admin_catalog}) GROUP BY channeltype ");
  19. }
  20. else
  21. {
  22. $dsql->SetQuery(" SELECT channeltype FROM `#@__arctype` GROUP BY channeltype ");
  23. }
  24. $dsql->Execute();
  25. $candoChannel = '';
  26. while($row = $dsql->GetObject())
  27. {
  28. $candoChannel .= ($candoChannel=='' ? $row->channeltype : ','.$row->channeltype);
  29. }
  30. if(empty($candoChannel)) $candoChannel = 1;
  31. $dsql->SetQuery("SELECT id,typename,addcon,mancon FROM `#@__channeltype` WHERE id IN({$candoChannel}) AND id<>-1 AND isshow=1 ORDER BY id ASC");
  32. $dsql->Execute('mm');
  33. while($row = $dsql->GetObject('mm'))
  34. {
  35. $addset .= " <m:item name='{$row->typename}' ischannel='1' link='{$row->mancon}?channelid={$row->id}' linkadd='{$row->addcon}?channelid={$row->id}' channelid='{$row->id}' rank='' target='main' />\r\n";
  36. }
  37. //////////////////////////
  38. $helpUrl = DEDEBIZURL."/help";
  39. $gitUrl = DEDEBIZURL."/git";
  40. $dedebizUrl = DEDEBIZURL;
  41. $adminMenu1 = $adminMenu2 = '';
  42. if($cuserLogin->getUserType() >= 10)
  43. {
  44. $adminMenu1 = "<m:top item='1_' name='频道模型' display='block' rank='t_List,t_AccList,c_List,temp_One'>
  45. <m:item name='内容模型管理' link='mychannel_main.php' rank='c_List' target='main' />
  46. <m:item name='单页文档管理' link='templets_one.php' rank='temp_One' target='main'/>
  47. <m:item name='联动类别管理' link='stepselect_main.php' rank='c_Stepseclect' target='main' />
  48. <m:item name='自由列表管理' link='freelist_main.php' rank='c_List' target='main' />
  49. <m:item name='自定义表单' link='diy_main.php' rank='c_List' target='main' />
  50. </m:top>
  51. ";
  52. $adminMenu2 = "<m:top item='7_' name='模板管理' display='none' rank='temp_One,temp_Other,temp_MyTag,temp_test,temp_All'>
  53. <m:item name='默认模板管理' link='templets_main.php' rank='temp_All' target='main'/>
  54. <m:item name='标签源码管理' link='templets_tagsource.php' rank='temp_All' target='main'/>
  55. <m:item name='自定义宏标记' link='mytag_main.php' rank='temp_MyTag' target='main'/>
  56. <m:item name='智能标记向导' link='mytag_tag_guide.php' rank='temp_Other' target='main'/>
  57. <m:item name='全局标记测试' link='tag_test.php' rank='temp_Test' target='main'/>
  58. </m:top>
  59. <m:top item='10_' name='系统设置' display='none' rank='sys_User,sys_Group,sys_Edit,sys_Log,sys_Data'>
  60. <m:item name='系统基本参数' link='sys_info.php' rank='sys_Edit' target='main' />
  61. <m:item name='系统用户管理' link='sys_admin_user.php' rank='sys_User' target='main' />
  62. <m:item name='用户组设定' link='sys_group.php' rank='sys_Group' target='main' />
  63. <m:item name='系统日志管理' link='log_list.php' rank='sys_Log' target='main' />
  64. <m:item name='图片水印设置' link='sys_info_mark.php' rank='sys_Edit' target='main' />
  65. <m:item name='自定义文档属性' link='content_att.php' rank='sys_Att' target='main' />
  66. <m:item name='软件频道设置' link='soft_config.php' rank='sys_SoftConfig' target='main' />
  67. <m:item name='防采集串混淆' link='article_string_mix.php' rank='sys_StringMix' target='main' />
  68. <m:item name='随机模板设置' link='article_template_rand.php' rank='sys_StringMix' target='main' />
  69. <m:item name='计划任务管理' link='sys_task.php' rank='sys_Task' target='main' />
  70. <m:item name='数据库备份/还原' link='sys_data.php' rank='sys_Data' target='main' />
  71. <m:item name='SQL命令行工具' link='sys_sql_query.php' rank='sys_Data' target='main' />
  72. <m:item name='病毒扫描[S]' link='sys_safetest.php' rank='sys_verify' target='main' />
  73. <m:item name='系统错误修复[S]' link='sys_repair.php' rank='sys_verify' target='main' />
  74. </m:top>
  75. <m:top item='10_6_' name='支付工具' display='none' rank='sys_Data'>
  76. <m:item name='点卡产品分类' link='cards_type.php' rank='sys_Data' target='main' />
  77. <m:item name='点卡产品管理' link='cards_manage.php' rank='sys_Data' target='main' />
  78. <m:item name='会员产品分类' link='member_type.php' rank='sys_Data' target='main' />
  79. <m:item name='会员消费记录' link='member_operations.php' rank='sys_Data' target='main' />
  80. <m:item name='商店订单记录' link='shops_operations.php' rank='sys_Data' target='main' />
  81. <m:item name='支付接口设置' link='sys_payment.php' .php' rank='sys_Data' target='main' />
  82. <m:item name='配货方式设置' link='shops_delivery.php' rank='sys_Data' target='main' />
  83. </m:top>
  84. ";
  85. }
  86. $remoteMenu = ($cfg_remote_site=='Y')? "<m:item name='远程服务器同步' link='makeremote_all.php' rank='sys_ArcBatch' target='main' />" : "";
  87. $menusMain = "
  88. -----------------------------------------------
  89. <m:top item='1_' name='常用操作' display='block'>
  90. <m:item name='网站栏目管理' link='catalog_main.php' ischannel='1' addalt='创建栏目' linkadd='catalog_add.php?listtype=all' rank='t_List,t_AccList' target='main' />
  91. <m:item name='所有档案列表' link='content_list.php' rank='a_List,a_AccList' target='main' />
  92. <m:item name='等审核的档案' link='content_list.php?arcrank=-1' rank='a_Check,a_AccCheck' target='main' />
  93. <m:item name='我发布的文档' link='content_list.php?mid=".$cuserLogin->getUserID()."' rank='a_List,a_AccList,a_MyList' target='main' />
  94. <m:item name='评论管理' link='feedback_main.php' rank='sys_Feedback' target='main' />
  95. <m:item name='内容回收站' link='recycling.php' ischannel='1' addalt='清空回收站' addico='images/gtk-del.png' linkadd='archives_do.php?dopost=clear&aid=no&recycle=1' rank='a_List,a_AccList,a_MyList' target='main' />
  96. </m:top>
  97. <m:top item='1_' name='内容管理' display='block'>
  98. $addset
  99. <m:item name='专题管理' ischannel='1' link='content_s_list.php' linkadd='spec_add.php' channelid='-1' rank='spec_New' target='main' />
  100. </m:top>
  101. <m:top item='1_' name='附件管理' display='none' rank='sys_Upload,sys_MyUpload,plus_文件管理器'>
  102. <m:item name='上传新文件' link='media_add.php' rank='' target='main' />
  103. <m:item name='附件数据管理' link='media_main.php' rank='sys_Upload,sys_MyUpload' target='main' />
  104. <m:item name='文件式管理器' link='media_main.php?dopost=filemanager' rank='plus_文件管理器' target='main' />
  105. </m:top>
  106. $adminMenu1
  107. <m:top item='3_' name='采集管理' display='none' rank='co_NewRule,co_ListNote,co_ViewNote,co_Switch,co_GetOut'>
  108. <m:item name='采集节点管理' link='co_main.php' rank='co_ListNote' target='main' />
  109. <m:item name='临时内容管理' link='co_url.php' rank='co_ViewNote' target='main' />
  110. <m:item name='导入采集规则' link='co_get_corule.php' rank='co_GetOut' target='main'/>
  111. <m:item name='监控采集模式' link='co_gather_start.php' rank='co_GetOut' target='main'/>
  112. <m:item name='采集未下载内容' link='co_do.php?dopost=coall' rank='co_GetOut' target='main'/>
  113. </m:top>
  114. <m:top item='1_3_3' name='批量维护' display='block'>
  115. <m:item name='更新系统缓存' link='sys_cache_up.php' rank='sys_ArcBatch' target='main' />
  116. <m:item name='文档批量维护' link='content_batch_up.php' rank='sys_ArcBatch' target='main' />
  117. <m:item name='搜索关键词维护' link='search_keywords_main.php' rank='sys_Keyword' target='main' />
  118. <m:item name='文档关键词维护' link='article_keywords_main.php' rank='sys_Keyword' target='main' />
  119. <m:item name='重复文档检测' link='article_test_same.php' rank='sys_ArcBatch' target='main' />
  120. <m:item name='自动摘要|分页' link='article_description_main.php' rank='sys_Keyword' target='main' />
  121. <m:item name='Tag标签管理' link='tags_main.php' rank='sys_Keyword' target='main' />
  122. <m:item name='数据库内容替换' link='sys_data_replace.php' rank='sys_ArcBatch' target='main' />
  123. </m:top>
  124. <m:top item='5_' name='自动任务' notshowall='1' display='block' rank='sys_MakeHtml'>
  125. <m:item name='一键更新网站' link='makehtml_all.php' rank='sys_MakeHtml' target='main' />
  126. <m:item name='更新系统缓存' link='sys_cache_up.php' rank='sys_ArcBatch' target='main' />
  127. {$remoteMenu}
  128. </m:top>
  129. <m:top item='5_' name='HTML更新' notshowall='1' display='none' rank='sys_MakeHtml'>
  130. <m:item name='更新主页HTML' link='makehtml_homepage.php' rank='sys_MakeHtml' target='main' />
  131. <m:item name='更新栏目HTML' link='makehtml_list.php' rank='sys_MakeHtml' target='main' />
  132. <m:item name='更新文档HTML' link='makehtml_archives.php' rank='sys_MakeHtml' target='main' />
  133. <m:item name='更新网站地图' link='makehtml_map_guide.php' rank='sys_MakeHtml' target='main' />
  134. <m:item name='更新RSS文件' link='makehtml_rss.php' rank='sys_MakeHtml' target='main' />
  135. <m:item name='获取JS文件' link='makehtml_js.php' rank='sys_MakeHtml' target='main' />
  136. <m:item name='更新专题HTML' link='makehtml_spec.php' rank='sys_MakeHtml' target='main' />
  137. <m:item name='更新Tag HTML' link='makehtml_taglist.php' rank='sys_MakeHtml' target='main' />
  138. </m:top>
  139. <m:top item='6_' name='会员管理' display='none' rank='member_List,member_Type'>
  140. <m:item name='注册会员列表' link='member_main.php' rank='member_List' target='main' />
  141. <m:item name='会员级别设置' link='member_rank.php' rank='member_Type' target='main' />
  142. <m:item name='积分头衔设置' link='member_scores.php' rank='member_Type' target='main' />
  143. <m:item name='会员短信管理' link='member_pm.php' rank='member_Type' target='main' />
  144. </m:top>
  145. $adminMenu2
  146. <m:top item='1_10_7_' name='系统帮助' display='none'>
  147. <m:item name='参考文档' link='$cfg_biz_helpUrl' rank='' target='_blank' />
  148. <m:item name='代码托管' link='$cfg_biz_gitUrl' rank='' target='_blank' />
  149. <m:item name='商业支持' link='$cfg_biz_dedebizUrl' rank='' target='_blank' />
  150. </m:top>
  151. -----------------------------------------------
  152. ";