国内流行的内容管理系统(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.

437 lines
18KB

  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 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. 'toptitle' => '运维',
  16. 'title' => '常规操作',
  17. 'description' => '站点档案常规功能操作',
  18. 'soniterm' => array(
  19. 0 => array(
  20. 'title' => '网站栏目管理',
  21. 'description' => '站点所有栏目管理',
  22. 'purview' => 't_List,t_AccList',
  23. 'linkurl' => 'catalog_main.php'
  24. ),
  25. 1 => array(
  26. 'title' => '等审核的档案',
  27. 'description' => '所有内容模型发表的未经审核内容列表',
  28. 'purview' => 'a_Check,a_AccCheck',
  29. 'linkurl' => 'content_list.php?arcrank=-1'
  30. ),
  31. 2 => array(
  32. 'title' => '我发布的文档',
  33. 'description' => '现在登录的管理员所发表的所有内容模型中的文档',
  34. 'purview' => 'a_List,a_AccList,a_MyList',
  35. 'linkurl' => 'content_list.php?mid='.$cuserLogin->userID
  36. ),
  37. 3 => array(
  38. 'title' => '评论管理',
  39. 'description' => '网站所有评论管理',
  40. 'purview' => 'sys_Feedback',
  41. 'linkurl' => 'feedback_main.php'
  42. ),
  43. 4 => array(
  44. 'title' => '内容回收站',
  45. 'description' => '如果在"系统配置变量"的"核心设置"中开启了"文章回收站是否开启功能",后台删除的文档将会存放在此处',
  46. 'purview' => 'a_List,a_AccList,a_MyList',
  47. 'linkurl' => 'recycling.php'
  48. )
  49. )
  50. );
  51. $actionSearch[1] = array(
  52. 'toptitle' => '运维',
  53. 'title' => '内容管理',
  54. 'description' => '网站对应内容模型的文档管理',
  55. 'soniterm' => array(
  56. 0 => array(
  57. 'title' => '专题管理',
  58. 'description' => '所有专题内容的管理',
  59. 'purview' => 'spec_New',
  60. 'linkurl' => 'content_s_list.php'
  61. ),
  62. )
  63. );
  64. $actionSearch[2] = array(
  65. 'toptitle' => '运维',
  66. 'title' => '附件管理',
  67. 'description' => '所有上传的附件管理',
  68. 'soniterm' => array(
  69. 0 => array(
  70. 'title' => '上传新文件 ',
  71. 'description' => '通过这可以上传图片、FLASH、视频音频、附件其它等附件 ',
  72. 'purview' => '',
  73. 'linkurl' => 'media_add.php'
  74. ),
  75. 1 => array(
  76. 'title' => '附件数据管理 ',
  77. 'description' => '列出所有上传的附件',
  78. 'purview' => 'sys_Upload,sys_MyUpload',
  79. 'linkurl' => 'media_main.php'
  80. ),
  81. 2 => array(
  82. 'title' => '文件式管理器 ',
  83. 'description' => '应用文件浏览的模式进行附件的管理',
  84. 'purview' => 'plus_文件管理器',
  85. 'linkurl' => 'media_main.php?dopost=filemanager'
  86. ),
  87. )
  88. );
  89. $actionSearch[3] = array(
  90. 'toptitle' => '运维',
  91. 'title' => '频道模型',
  92. 'description' => '所有上传的附件管理',
  93. 'soniterm' => array(
  94. 0 => array(
  95. 'title' => '内容模型管理 ',
  96. 'description' => '可以对现有商品、软件、图片集、普通文章、专题、分类信息等模型就行管理,也可以创建新的内容模型',
  97. 'purview' => 'c_List',
  98. 'linkurl' => 'mychannel_main.php'
  99. ),
  100. 1 => array(
  101. 'title' => '单页文档管理 ',
  102. 'description' => '创建和管理单页面',
  103. 'purview' => 'temp_One',
  104. 'linkurl' => 'templets_one.php'
  105. ),
  106. 2 => array(
  107. 'title' => '联动类别管理 ',
  108. 'description' => '创建和管理所有的联动',
  109. 'purview' => 'c_Stepseclect',
  110. 'linkurl' => 'stepselect_main.php?dopost=filemanager'
  111. ),
  112. 3 => array(
  113. 'title' => '自由列表管理 ',
  114. 'description' => '创建不同的列表形式',
  115. 'purview' => 'c_List',
  116. 'linkurl' => 'freelist_main.php'
  117. ),
  118. 4 => array(
  119. 'title' => '自定义表单 ',
  120. 'description' => '创建和管理自定义表单',
  121. 'purview' => 'c_List',
  122. 'linkurl' => 'diy_main.php'
  123. ),
  124. )
  125. );
  126. $actionSearch[4] = array(
  127. 'toptitle' => '运维',
  128. 'title' => '批量维护',
  129. 'description' => '对一些东西进行批量的删除,添加等等',
  130. 'soniterm' => array(
  131. 0 => array(
  132. 'title' => '更新系统缓存 ',
  133. 'description' => '更新栏目缓存、更新枚举缓存 、清理arclist调用缓存 、清理过期会员访问历史 、删除过期短信',
  134. 'purview' => 'sys_ArcBatch',
  135. 'linkurl' => 'sys_cache_up.php'
  136. ),
  137. 1 => array(
  138. 'title' => '文档批量维护 ',
  139. 'description' => '批量的对某个栏目或者全部栏目的内容进行审核文档、更新HTML、移动文档、删除文档',
  140. 'purview' => 'sys_ArcBatch',
  141. 'linkurl' => 'content_batch_up.php'
  142. ),
  143. 2 => array(
  144. 'title' => '搜索关键词维护 ',
  145. 'description' => '对已经进行的所有所搜的关键词进行管理',
  146. 'purview' => 'sys_Keyword',
  147. 'linkurl' => 'search_keywords_main.php?dopost=filemanager'
  148. ),
  149. 3 => array(
  150. 'title' => '文档关键词维护 ',
  151. 'description' => '对文档中的关键词进行批量的维护',
  152. 'purview' => 'sys_Keyword',
  153. 'linkurl' => 'article_keywords_main.php'
  154. ),
  155. 4 => array(
  156. 'title' => '重复文档检测 ',
  157. 'description' => '可以对网站中出现的重复标题的文档进行处理',
  158. 'purview' => 'sys_ArcBatch',
  159. 'linkurl' => 'article_test_same.php'
  160. ),
  161. 5 => array(
  162. 'title' => '自动摘要|分页 ',
  163. 'description' => '用于自动更新您系统没有填写摘要的文档的摘要信息或更新没分页的文档的自动分页标识',
  164. 'purview' => 'sys_Keyword',
  165. 'linkurl' => 'article_description_main.php'
  166. ),
  167. 6 => array(
  168. 'title' => 'Tag标签管理 ',
  169. 'description' => '对整个网站的tag进行批量的维护',
  170. 'purview' => 'sys_Keyword',
  171. 'linkurl' => 'tags_main.php'
  172. ),
  173. 7 => array(
  174. 'title' => '数据库内容替换 ',
  175. 'description' => '可以对数据库中的某张表中的字段进行内容的批量替换',
  176. 'purview' => 'sys_ArcBatch',
  177. 'linkurl' => 'sys_data_replace.php'
  178. ),
  179. )
  180. );
  181. $actionSearch[5] = array(
  182. 'toptitle' => '会员',
  183. 'title' => '会员管理',
  184. 'description' => '注册会员及积分等配置管理',
  185. 'soniterm' => array(
  186. 0 => array(
  187. 'title' => '注册会员列表',
  188. 'description' => '所有注册会员的管理项,其中包含修改,删除,查看会员文档以及提升管理员等操作',
  189. 'purview' => 'member_List',
  190. 'linkurl' => 'member_main.php'
  191. ),
  192. 1 => array(
  193. 'title' => '会员级别设置',
  194. 'description' => '设置会员的级别,可以通过设计不同会员的访问权限来对会员级别进行一个扩展',
  195. 'purview' => 'member_Type',
  196. 'linkurl' => 'member_rank.php'
  197. ),
  198. 2 => array(
  199. 'title' => '积分头衔设置',
  200. 'description' => '会员积分等级设置,根据会员活动积分对会员进行头衔划分',
  201. 'purview' => 'member_Type',
  202. 'linkurl' => 'member_scores.php'
  203. ),
  204. 4 => array(
  205. 'title' => '会员短信管理',
  206. 'description' => '会员之间发送的短消息管理,其中包含群发短消息和对单个会员发送短消息两种',
  207. 'purview' => 'member_Type',
  208. 'linkurl' => 'member_pm.php'
  209. ),
  210. )
  211. );
  212. $actionSearch[6] = array(
  213. 'toptitle' => '会员',
  214. 'title' => '支付工具',
  215. 'description' => '站点财务相关设置,包含点卡,商店订单等操作',
  216. 'soniterm' => array(
  217. 0 => array(
  218. 'title' => '点卡产品分类',
  219. 'description' => '网站点卡产品分类,可以添加不同点数的点卡产品类型',
  220. 'purview' => 'sys_Data',
  221. 'linkurl' => 'cards_type.php'
  222. ),
  223. 1 => array(
  224. 'title' => '点卡产品管理',
  225. 'description' => '管理网站点卡,可以在这里生成点卡以及查看点卡的当前状态',
  226. 'purview' => 'sys_Data',
  227. 'linkurl' => 'cards_manage.php'
  228. ),
  229. 2 => array(
  230. 'title' => '会员产品分类',
  231. 'description' => '可以将会员类型进行产品划分,比如出售高级会员1年这种,在这里可以对会员产品进行定义',
  232. 'purview' => 'sys_Data',
  233. 'linkurl' => 'member_type.php'
  234. ),
  235. 3 => array(
  236. 'title' => '会员消费记录',
  237. 'description' => '会员在前台进行操作、消费积分的消费记录,同时可以查看消费充值订单的付款情况',
  238. 'purview' => 'sys_Data',
  239. 'linkurl' => 'member_operations.php'
  240. ),
  241. 4 => array(
  242. 'title' => '商店订单记录',
  243. 'description' => '前台会员商店提交的订单记录,这里可以对这些订单进行一个统一的管理',
  244. 'purview' => 'sys_Data',
  245. 'linkurl' => 'shops_operations.php'
  246. ),
  247. 5 => array(
  248. 'title' => '支付接口设置',
  249. 'description' => '商店以及会员产品付款用到的在线付款方式需要设置的支付接口,这里含有常用的接口,例如:支付宝,易宝等',
  250. 'purview' => 'sys_Data',
  251. 'linkurl' => 'sys_payment.php'
  252. ),
  253. 6 => array(
  254. 'title' => '配货方式设置',
  255. 'description' => '网站在线商城的送货方式,这里可以对其进行编辑管理',
  256. 'purview' => 'sys_Data',
  257. 'linkurl' => 'shops_delivery.php'
  258. ),
  259. 7 => array(
  260. 'title' => '汇款账号设置',
  261. 'description' => '银行付款的账号设置,用户可以查看到您的银行付款账号方便支付',
  262. 'purview' => 'sys_Data',
  263. 'linkurl' => 'shops_bank.php'
  264. ),
  265. )
  266. );
  267. $actionSearch[7] = array(
  268. 'toptitle' => '生成',
  269. 'title' => '更新任务',
  270. 'description' => '一键生成静态管理',
  271. 'soniterm' => array(
  272. 0 => array(
  273. 'title' => '更新网站',
  274. 'description' => '可以一键生成所有静态页面',
  275. 'purview' => 'sys_MakeHtml',
  276. 'linkurl' => 'makehtml_all.php'
  277. ),
  278. 1 => array(
  279. 'title' => '更新主页',
  280. 'description' => '生成网站主页面',
  281. 'purview' => 'sys_MakeHtml',
  282. 'linkurl' => 'makehtml_homepage.php'
  283. ),
  284. 2 => array(
  285. 'title' => '更新栏目',
  286. 'description' => '对每个栏目进行静态页面的生成',
  287. 'purview' => 'sys_MakeHtml',
  288. 'linkurl' => 'makehtml_list.php'
  289. ),
  290. 3 => array(
  291. 'title' => '更新文档',
  292. 'description' => '对每个栏目下的文档进行静态页面的生成',
  293. 'purview' => 'sys_MakeHtml',
  294. 'linkurl' => 'makehtml_archives.php'
  295. ),
  296. 4 => array(
  297. 'title' => '更新专题',
  298. 'description' => '对专题进行静态页面的生成',
  299. 'purview' => 'sys_MakeHtml',
  300. 'linkurl' => 'makehtml_spec.php'
  301. ),
  302. 5 => array(
  303. 'title' => '更新订阅',
  304. 'description' => '对全站的RSS进行更新',
  305. 'purview' => 'sys_MakeHtml',
  306. 'linkurl' => 'makehtml_rss.php'
  307. ),
  308. 6 => array(
  309. 'title' => '更新缓存',
  310. 'description' => '更新栏目缓存、更新枚举缓存、清理arclist调用缓存、清理过期会员访问历史、删除过期短信 ',
  311. 'purview' => 'sys_ArcBatch',
  312. 'linkurl' => 'sys_cache_up.php'
  313. ),
  314. )
  315. );
  316. $actionSearch[8] = array(
  317. 'toptitle' => '模板',
  318. 'title' => '模板管理',
  319. 'description' => '针对主页、栏目、文档、专题等等进行更新',
  320. 'soniterm' => array(
  321. 0 => array(
  322. 'title' => '默认模板管理 ',
  323. 'description' => '对网站正在采用的模板文件进行管理',
  324. 'purview' => 'temp_All',
  325. 'linkurl' => 'templets_main.php'
  326. ),
  327. 1 => array(
  328. 'title' => '标签源码管理 ',
  329. 'description' => '对现有的标签文件进行修改、添加',
  330. 'purview' => 'temp_All',
  331. 'linkurl' => 'templets_tagsource.php'
  332. ),
  333. 2 => array(
  334. 'title' => '自定义宏标记',
  335. 'description' => '管理自定义标记',
  336. 'purview' => 'temp_MyTag',
  337. 'linkurl' => 'mytag_main.php'
  338. ),
  339. 3 => array(
  340. 'title' => '智能标记向导',
  341. 'description' => '可以根据需要生成相应的调用标签',
  342. 'purview' => 'temp_Other',
  343. 'linkurl' => 'mytag_tag_guide.php'
  344. ),
  345. 4 => array(
  346. 'title' => '全局标记测试 ',
  347. 'description' => '可以对全局的标签调用进行测试',
  348. 'purview' => 'temp_Test',
  349. 'linkurl' => 'tag_test.php'
  350. ),
  351. )
  352. );
  353. $actionSearch[9] = array(
  354. 'toptitle' => '系统',
  355. 'title' => '系统设置',
  356. 'description' => '对网站的一些基本信息和配置进行管理',
  357. 'soniterm' => array(
  358. 0 => array(
  359. 'title' => '系统配置变量',
  360. 'description' => '包含站点设置、核心设置 、附件设置、会员设置、互动设置、性能选项、其它选项、模块设置、添加新变量等分类,其中有网站基本信息和网站的基本设置选项',
  361. 'purview' => 'sys_Edit',
  362. 'linkurl' => 'sys_info.php'
  363. ),
  364. 1 => array(
  365. 'title' => '系统用户管理',
  366. 'description' => '对现有的网站管理员进行管理',
  367. 'purview' => 'sys_User',
  368. 'linkurl' => 'sys_admin_user.php'
  369. ),
  370. 2 => array(
  371. 'title' => '用户组设定',
  372. 'description' => '对网站管理员进行用户组别的划分',
  373. 'purview' => 'sys_Group',
  374. 'linkurl' => 'sys_group.php'
  375. ),
  376. 3 => array(
  377. 'title' => '系统日志管理',
  378. 'description' => '对每个登录后台的管理员进行的操作进行记录',
  379. 'purview' => 'sys_Log',
  380. 'linkurl' => 'log_list.php'
  381. ),
  382. 5 => array(
  383. 'title' => '图片水印设置',
  384. 'description' => '对于上传的图片添加的水印进行配置',
  385. 'purview' => 'sys_Edit',
  386. 'linkurl' => 'sys_info_mark.php'
  387. ),
  388. 6 => array(
  389. 'title' => '自定义文档属性',
  390. 'description' => '在以往的版本中,网站主页、频道封面的设计,都只能单调的用 arclist 标记把某栏目最新或按特定排序方式的文档无选择的读出来,这样做法存在很大的不足,在发布的时候对适合的文档选择专门的属性,那么使用arclist的地方就会按您的意愿显示指定的文档',
  391. 'purview' => 'sys_Att',
  392. 'linkurl' => 'content_att.php'
  393. ),
  394. 7 => array(
  395. 'title' => '软件频道设置',
  396. 'description' => '可以对软件下载时的连接显示方式,下载方式,镜像服务器等等进行配置',
  397. 'purview' => 'sys_SoftConfig',
  398. 'linkurl' => 'soft_config.php'
  399. ),
  400. 8 => array(
  401. 'title' => '防采集串混淆',
  402. 'description' => '防采集混淆字符串管理',
  403. 'purview' => 'sys_StringMix',
  404. 'linkurl' => 'article_string_mix.php'
  405. ),
  406. 9 => array(
  407. 'title' => '随机模板设置',
  408. 'description' => '本设置仅适用于系统默认的文章模型,设置后发布文章时会自动按指定的模板随机获取一个,如果不想使用此功能,把它设置为空即可',
  409. 'purview' => 'sys_StringMix',
  410. 'linkurl' => 'article_template_rand.php'
  411. ),
  412. 11 => array(
  413. 'title' => '数据库备份还原',
  414. 'description' => '对数据库进行备份和还原',
  415. 'purview' => 'sys_data',
  416. 'linkurl' => 'sys_data.php'
  417. ),
  418. 12 => array(
  419. 'title' => 'SQL命令行工具',
  420. 'description' => '可以在针对每张数据表执行单行或者多行的SQL语句',
  421. 'purview' => 'sys_data',
  422. 'linkurl' => 'sys_sql_query.php'
  423. ),
  424. 14 => array(
  425. 'title' => '病毒扫描',
  426. 'description' => '以DedeBIZ开发模式为标准对现有的文件进行扫描并进行判断',
  427. 'purview' => 'sys_verifies',
  428. 'linkurl' => 'sys_safetest.php'
  429. ),
  430. 15 => array(
  431. 'title' => '系统错误修复',
  432. 'description' => '由于手动升级时用户没运行指定的SQL语句,或自动升级的遗漏处理或处理出错,可能会导致一些错误,使用本工具会自动检测并处理',
  433. 'purview' => 'sys_verifies',
  434. 'linkurl' => 'sys_repair.php'
  435. ),
  436. )
  437. );