国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

315 linhas
9.5KB

  1. <?php
  2. /**
  3. * 后台操作记录信息
  4. *
  5. * @version $id:inc_action_info.php 2 14:55 2010-11-11 tianya $
  6. * @package DedeBIZ.Administrator
  7. * @copyright Copyright (c) 2022 DedeBIZ.COM
  8. * @license GNU GPL v2 (https://www.dedebiz.com/license)
  9. * @link https://www.dedebiz.com
  10. */
  11. require_once(dirname(__FILE__)."/../config.php");
  12. $cuserLogin = new userLogin();
  13. //后台功能操作配置项
  14. $actionSearch[0] = array(
  15. 'title' => '常用操作',
  16. 'soniterm' => array(
  17. 0 => array(
  18. 'title' => '网站栏目管理',
  19. 'purview' => 't_List,t_AccList',
  20. 'linkurl' => 'catalog_main.php'
  21. ),
  22. 1 => array(
  23. 'title' => '待审核的文档',
  24. 'purview' => 'a_Check,a_AccCheck',
  25. 'linkurl' => 'content_list.php?arcrank=-1'
  26. ),
  27. 2 => array(
  28. 'title' => '我发布的文档',
  29. 'purview' => 'a_List,a_AccList,a_MyList',
  30. 'linkurl' => 'content_list.php?mid=$cuserLogin->userID'
  31. ),
  32. 3 => array(
  33. 'title' => '标签管理',
  34. 'purview' => 'sys_Keyword',
  35. 'linkurl' => 'tags_main.php'
  36. ),
  37. 4 => array(
  38. 'title' => '评论管理',
  39. 'purview' => 'sys_Feedback',
  40. 'linkurl' => 'feedback_main.php'
  41. ),
  42. 5 => array(
  43. 'title' => '专题管理',
  44. 'purview' => 'spec_New',
  45. 'linkurl' => 'content_s_list.php'
  46. ),
  47. 6 => array(
  48. 'title' => '文档回收站',
  49. 'description' => '后台删除的文档会存放在此处',
  50. 'purview' => 'a_List,a_AccList,a_MyList',
  51. 'linkurl' => 'recycling.php'
  52. )
  53. )
  54. );
  55. $actionSearch[1] = array(
  56. 'title' => '附件管理',
  57. 'soniterm' => array(
  58. 0 => array(
  59. 'title' => '附件管理',
  60. 'purview' => 'sys_Upload,sys_MyUpload',
  61. 'linkurl' => 'media_main.php'
  62. ),
  63. 1 => array(
  64. 'title' => '文件管理器',
  65. 'purview' => 'plus_文件管理器',
  66. 'linkurl' => 'media_main.php?dopost=filemanager'
  67. ),
  68. )
  69. );
  70. $actionSearch[2] = array(
  71. 'title' => '文档模型',
  72. 'soniterm' => array(
  73. 0 => DEDEBIZ_SAFE_MODE? null : array(
  74. 'title' => '文档模型管理',
  75. 'purview' => 'c_List',
  76. 'linkurl' => 'mychannel_main.php'
  77. ),
  78. 1 => array(
  79. 'title' => '文档单页管理',
  80. 'purview' => 'temp_One',
  81. 'linkurl' => 'templets_one.php'
  82. ),
  83. 2 => array(
  84. 'title' => '联动类型管理',
  85. 'purview' => 'c_Stepseclect',
  86. 'linkurl' => 'stepselect_main.php?dopost=filemanager'
  87. ),
  88. 3 => array(
  89. 'title' => '自由列表管理',
  90. 'purview' => 'c_List',
  91. 'linkurl' => 'freelist_main.php'
  92. ),
  93. 4 => array(
  94. 'title' => '自定义文档属性',
  95. 'purview' => 'sys_Att',
  96. 'linkurl' => 'content_att.php'
  97. ),
  98. 5 => array(
  99. 'title' => '自定义表单管理',
  100. 'purview' => 'c_List',
  101. 'linkurl' => 'diy_main.php'
  102. ),
  103. )
  104. );
  105. $actionSearch[3] = array(
  106. 'title' => '批量维护',
  107. 'soniterm' => array(
  108. 0 => array(
  109. 'title' => '文档批量维护',
  110. 'purview' => 'sys_ArcBatch',
  111. 'linkurl' => 'content_batch_up.php'
  112. ),
  113. 1 => array(
  114. 'title' => '文档重复检测',
  115. 'purview' => 'sys_ArcBatch',
  116. 'linkurl' => 'article_test_same.php'
  117. ),
  118. 2 => array(
  119. 'title' => '文档关键词维护',
  120. 'purview' => 'sys_Keyword',
  121. 'linkurl' => 'article_keywords_main.php'
  122. ),
  123. 3 => array(
  124. 'title' => '搜索关键词维护',
  125. 'purview' => 'sys_Keyword',
  126. 'linkurl' => 'search_keywords_main.php?dopost=filemanager'
  127. ),
  128. 4 => array(
  129. 'title' => '自动摘要分页',
  130. 'purview' => 'sys_Keyword',
  131. 'linkurl' => 'article_description_main.php'
  132. ),
  133. 5 => DEDEBIZ_SAFE_MODE? null : array(
  134. 'title' => '数据库字段替换',
  135. 'purview' => 'sys_ArcBatch',
  136. 'linkurl' => 'sys_data_replace.php'
  137. ),
  138. )
  139. );
  140. $actionSearch[4] = array(
  141. 'title' => '会员管理',
  142. 'soniterm' => array(
  143. 0 => array(
  144. 'title' => '所有会员列表',
  145. 'purview' => 'member_List',
  146. 'linkurl' => 'member_main.php'
  147. ),
  148. 1 => array(
  149. 'title' => '会员短信管理',
  150. 'purview' => 'member_Type',
  151. 'linkurl' => 'member_pm.php'
  152. ),
  153. 2 => array(
  154. 'title' => '会员级别设置',
  155. 'purview' => 'member_Type',
  156. 'linkurl' => 'member_rank.php'
  157. ),
  158. 3 => array(
  159. 'title' => '会员等级分类',
  160. 'purview' => 'sys_Data',
  161. 'linkurl' => 'member_type.php'
  162. ),
  163. 4 => array(
  164. 'title' => '积分头衔设置',
  165. 'purview' => 'member_Type',
  166. 'linkurl' => 'member_scores.php'
  167. ),
  168. )
  169. );
  170. $actionSearch[5] = array(
  171. 'title' => '财务管理',
  172. 'soniterm' => array(
  173. 0 => array(
  174. 'title' => '积分产品管理',
  175. 'purview' => 'sys_Data',
  176. 'linkurl' => 'cards_manage.php'
  177. ),
  178. 1 => array(
  179. 'title' => '积分产品分类',
  180. 'purview' => 'sys_Data',
  181. 'linkurl' => 'cards_type.php'
  182. ),
  183. 2 => array(
  184. 'title' => '会员消费记录',
  185. 'purview' => 'sys_Data',
  186. 'linkurl' => 'member_operations.php'
  187. ),
  188. 3 => array(
  189. 'title' => '支付接口设置',
  190. 'purview' => 'sys_Data',
  191. 'linkurl' => 'sys_payment.php'
  192. ),
  193. )
  194. );
  195. $actionSearch[6] = array(
  196. 'title' => '更新任务',
  197. 'soniterm' => array(
  198. 0 => array(
  199. 'title' => '更新网站',
  200. 'purview' => 'sys_MakeHtml',
  201. 'linkurl' => 'makehtml_all.php'
  202. ),
  203. 1 => array(
  204. 'title' => '更新首页',
  205. 'purview' => 'sys_MakeHtml',
  206. 'linkurl' => 'makehtml_homepage.php'
  207. ),
  208. 2 => array(
  209. 'title' => '更新栏目',
  210. 'purview' => 'sys_MakeHtml',
  211. 'linkurl' => 'makehtml_list.php'
  212. ),
  213. 3 => array(
  214. 'title' => '更新文档',
  215. 'purview' => 'sys_MakeHtml',
  216. 'linkurl' => 'makehtml_archives.php'
  217. ),
  218. 4 => array(
  219. 'title' => '更新专题',
  220. 'purview' => 'sys_MakeHtml',
  221. 'linkurl' => 'makehtml_spec.php'
  222. ),
  223. 5 => array(
  224. 'title' => '更新缓存',
  225. 'purview' => 'sys_ArcBatch',
  226. 'linkurl' => 'sys_cache_up.php'
  227. ),
  228. )
  229. );
  230. $actionSearch[7] = DEDEBIZ_SAFE_MODE? null : array(
  231. 'title' => '模板管理',
  232. 'soniterm' => array(
  233. 0 => array(
  234. 'title' => '默认模板管理',
  235. 'purview' => 'temp_All',
  236. 'linkurl' => 'templets_main.php'
  237. ),
  238. 1 => array(
  239. 'title' => '标签源码管理',
  240. 'purview' => 'temp_All',
  241. 'linkurl' => 'templets_tagsource.php'
  242. ),
  243. 2 => array(
  244. 'title' => '自定义宏标记',
  245. 'purview' => 'temp_MyTag',
  246. 'linkurl' => 'mytag_main.php'
  247. ),
  248. 3 => array(
  249. 'title' => '智能标记向导',
  250. 'purview' => 'temp_Other',
  251. 'linkurl' => 'mytag_tag_guide.php'
  252. ),
  253. 4 => array(
  254. 'title' => '全局标记测试',
  255. 'purview' => 'temp_Test',
  256. 'linkurl' => 'tag_test.php'
  257. ),
  258. )
  259. );
  260. $actionSearch[8] = array(
  261. 'title' => '系统设置',
  262. 'soniterm' => array(
  263. 0 => array(
  264. 'title' => '系统设置',
  265. 'purview' => 'sys_Edit',
  266. 'linkurl' => 'sys_info.php'
  267. ),
  268. 1 => array(
  269. 'title' => '管理员管理',
  270. 'purview' => 'sys_User',
  271. 'linkurl' => 'sys_admin_user.php'
  272. ),
  273. 2 => array(
  274. 'title' => '会员组管理',
  275. 'purview' => 'sys_Group',
  276. 'linkurl' => 'sys_group.php'
  277. ),
  278. 3 => array(
  279. 'title' => '日志管理',
  280. 'purview' => 'sys_Log',
  281. 'linkurl' => 'log_list.php'
  282. ),
  283. 4 => array(
  284. 'title' => '图片水印设置',
  285. 'purview' => 'sys_Edit',
  286. 'linkurl' => 'sys_info_mark.php'
  287. ),
  288. 5 => array(
  289. 'title' => '软件下载设置',
  290. 'purview' => 'sys_SoftConfig',
  291. 'linkurl' => 'soft_config.php'
  292. ),
  293. 6 => DEDEBIZ_SAFE_MODE? null : array(
  294. 'title' => '数据库备份还原',
  295. 'purview' => 'sys_data',
  296. 'linkurl' => 'sys_data.php'
  297. ),
  298. 7 => DEDEBIZ_SAFE_MODE? null : array(
  299. 'title' => 'SQL命令工具',
  300. 'purview' => 'sys_data',
  301. 'linkurl' => 'sys_sql_query.php'
  302. ),
  303. 8 => array(
  304. 'title' => '文件扫描工具',
  305. 'purview' => 'sys_verifies',
  306. 'linkurl' => 'sys_safetest.php'
  307. ),
  308. 9 => array(
  309. 'title' => '系统修复工具',
  310. 'purview' => 'sys_verifies',
  311. 'linkurl' => 'sys_repair.php'
  312. ),
  313. )
  314. );
  315. ?>