info.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. <?php
  2. $audit = Dever::config('base')->audit;
  3. $status = Dever::config('base')->status;
  4. $share = function()
  5. {
  6. $array = array();
  7. $info = Dever::db('poster/template')->state();
  8. if($info)
  9. {
  10. $array += $info;
  11. }
  12. return $array;
  13. };
  14. $share = array
  15. (
  16. 1 => '显示',
  17. 2 => '不显示',
  18. );
  19. $buy = array
  20. (
  21. 1 => '收费',
  22. 2 => '免费',
  23. );
  24. $page = 15;
  25. # 常用的col
  26. $col = 'id,name,subname,pic_cover,pic_view_cover,pic_view_bg,pdate,num_add_view+num_view as num_view,num_ding+num_add_ding as num_ding,num_comment,buy';
  27. return array
  28. (
  29. # 表名
  30. 'name' => 'info',
  31. # 显示给用户看的名称
  32. 'lang' => '小刊管理',
  33. 'order' => 100,
  34. # 同步更新另外一个或多个表的数据 小刊不需要同步到审核页面
  35. /*
  36. 'syncone' => array
  37. (
  38. 'audit/data' => array
  39. (
  40. # 更新另外一个表的字段 => 本表的字段
  41. 'where' => array('data_id' => 'id', 'type' => 4),
  42. # 要更新的数据
  43. 'update' => array('data_id' => 'id', 'type' => 4, 'pdate' => 'pdate', 'reorder' => 'reorder', 'name' => 'name', 'audit' => 'audit'),
  44. )
  45. ),
  46. */
  47. # 数据结构
  48. 'struct' => array
  49. (
  50. 'id' => array
  51. (
  52. 'type' => 'int-11',
  53. 'name' => 'ID',
  54. 'default' => '',
  55. 'desc' => '',
  56. 'match' => 'is_numeric',
  57. //'list' => true,
  58. ),
  59. 'name' => array
  60. (
  61. 'type' => 'varchar-180',
  62. 'name' => '杂志标题',
  63. 'default' => '',
  64. 'desc' => '标题',
  65. 'match' => 'is_string',
  66. 'update' => 'text',
  67. 'search' => 'fulltext',
  68. 'list' => true,
  69. ),
  70. 'subname' => array
  71. (
  72. 'type' => 'varchar-80',
  73. 'name' => '子标题-一般为杂志的期数,如第1期',
  74. 'default' => '',
  75. 'desc' => '子标题',
  76. 'match' => 'is_string',
  77. 'update' => 'text',
  78. //'list' => true,
  79. ),
  80. 'pic_cover' => array
  81. (
  82. 'type' => 'varchar-150',
  83. 'name' => '列表页封面图-4:3比例的图片',
  84. 'default' => '',
  85. 'desc' => '列表封面图',
  86. 'match' => 'option',
  87. //'update' => 'image',
  88. 'key' => '1',
  89. 'place' => '150',
  90. ),
  91. 'pic_view_cover' => array
  92. (
  93. 'type' => 'varchar-150',
  94. 'name' => '封面图-1:1比例的图片',
  95. 'default' => '',
  96. 'desc' => '封面图',
  97. 'match' => 'option',
  98. 'update' => 'image',
  99. 'key' => '1',
  100. 'place' => '150',
  101. ),
  102. 'pic_view_bg' => array
  103. (
  104. 'type' => 'text-255',
  105. 'name' => '全屏背景图-进入小刊阅读页之前的全屏背景图,可以多张切换,尽量保持在5张之内',
  106. 'default' => '',
  107. 'desc' => '全屏背景图',
  108. 'match' => 'option',
  109. 'update' => 'images',
  110. 'key' => '1',
  111. 'place' => '150',
  112. ),
  113. 'num_add_ding' => array
  114. (
  115. 'type' => 'int-11',
  116. 'name' => '订阅数基数',
  117. 'default' => '0',
  118. 'desc' => '手动增加阅读数',
  119. 'match' => 'option',
  120. 'update' => 'text',
  121. ),
  122. 'num_ding' => array
  123. (
  124. 'type' => 'int-11',
  125. 'name' => '订阅数',
  126. 'default' => '0',
  127. 'desc' => '请填写订阅数',
  128. 'match' => 'option',
  129. 'search' => 'order',
  130. //'list' => '{num_view}+{num_add_view}',
  131. ),
  132. 'num_add_view' => array
  133. (
  134. 'type' => 'int-11',
  135. 'name' => '阅读数基数',
  136. 'default' => '0',
  137. 'desc' => '手动增加阅读数',
  138. 'match' => 'option',
  139. 'update' => 'text',
  140. ),
  141. 'num_view' => array
  142. (
  143. 'type' => 'int-11',
  144. 'name' => '阅读数',
  145. 'default' => '0',
  146. 'desc' => '请填写阅读数',
  147. 'match' => 'option',
  148. 'search' => 'order',
  149. //'list' => '{num_view}+{num_add_view}',
  150. ),
  151. 'num_add_up' => array
  152. (
  153. 'type' => 'int-11',
  154. 'name' => '喜欢基数',
  155. 'default' => '0',
  156. 'desc' => '喜欢基数',
  157. 'match' => 'option',
  158. //'update' => 'text',
  159. ),
  160. 'num_up' => array
  161. (
  162. 'type' => 'int-11',
  163. 'name' => '喜欢数',
  164. 'default' => '0',
  165. 'desc' => '请填写喜欢数',
  166. 'match' => 'option',
  167. //'search' => 'order',
  168. 'list' => '"订阅数:{num_ding}+{num_add_ding}<br />阅读数:{num_view}+{num_add_view}<br />评论数:{num_comment}<br />"',
  169. 'list_name' => '统计数字',
  170. ),
  171. 'num_comment' => array
  172. (
  173. 'type' => 'int-11',
  174. 'name' => '评论数',
  175. 'default' => '0',
  176. 'desc' => '请填写评论数',
  177. 'search' => 'order',
  178. 'match' => 'option',
  179. //'list' => true,
  180. ),
  181. 'state' => array
  182. (
  183. 'type' => 'tinyint-1',
  184. 'name' => '状态',
  185. 'default' => '1',
  186. 'desc' => '请选择状态',
  187. 'match' => 'is_numeric',
  188. ),
  189. 'audit' => array
  190. (
  191. 'type' => 'int-11',
  192. 'name' => '审核',
  193. 'default' => '1',
  194. 'desc' => '审核',
  195. 'match' => 'is_numeric',
  196. //'update' => 'select',
  197. 'option' => $audit,
  198. //'search' => 'select',
  199. //'list' => true,
  200. //'edit' => true,
  201. ),
  202. 'status' => array
  203. (
  204. 'type' => 'int-11',
  205. 'name' => '上线状态',
  206. 'default' => '1',
  207. 'desc' => '上线状态',
  208. 'match' => 'is_numeric',
  209. //'update' => 'select',
  210. 'option' => $status,
  211. 'search' => 'select',
  212. 'list' => true,
  213. 'edit' => true,
  214. ),
  215. 'admin_founder' => array
  216. (
  217. 'type' => 'int-11',
  218. 'name' => '创建人',
  219. 'default' => '1',
  220. 'desc' => '创建人',
  221. 'match' => 'is_numeric',
  222. ),
  223. 'admin_editor' => array
  224. (
  225. 'type' => 'int-11',
  226. 'name' => '操作人',
  227. 'default' => '1',
  228. 'desc' => '操作人',
  229. 'match' => 'is_numeric',
  230. ),
  231. 'pdate' => array
  232. (
  233. 'type' => 'int-11',
  234. 'name' => '发布时间',
  235. 'match' => array('is_numeric', time()),
  236. 'default' => '',
  237. 'desc' => '',
  238. 'update' => 'date',
  239. 'callback' => 'maketime',
  240. 'insert' => true,
  241. //'list' => 'date("Y-m-d H:i:s", {pdate})',
  242. 'auth' => '"{pdate}" > 0',
  243. ),
  244. 'share' => array
  245. (
  246. 'type' => 'text-255',
  247. 'name' => '分享海报-选择海报库中的海报',
  248. 'default' => '',
  249. 'desc' => '分享海报',
  250. 'match' => 'option',
  251. //'update' => 'checkbox',
  252. 'option' => $share,
  253. ),
  254. 'buy' => array
  255. (
  256. 'type' => 'int-11',
  257. 'name' => '小刊是否收费',
  258. 'default' => '1',
  259. 'desc' => '小刊是否收费',
  260. 'match' => 'option',
  261. 'update' => 'radio',
  262. 'option' => $buy,
  263. ),
  264. 'reorder' => array
  265. (
  266. 'type' => 'int-11',
  267. 'name' => '排序(数值越大越靠前)',
  268. 'default' => '1',
  269. 'desc' => '请输入排序',
  270. 'match' => 'option',
  271. 'update' => 'text',
  272. 'search' => 'order',
  273. 'list' => true,
  274. 'order' => 'desc',
  275. 'edit' => true,
  276. ),
  277. 'udate' => array
  278. (
  279. 'type' => 'int-11',
  280. 'name' => '更新时间',
  281. 'match' => array('is_numeric', time()),
  282. 'desc' => '',
  283. ),
  284. 'cdate' => array
  285. (
  286. 'type' => 'int-11',
  287. 'name' => '录入时间',
  288. 'match' => array('is_numeric', time()),
  289. 'desc' => '',
  290. # 只有insert时才生效
  291. 'insert' => true,
  292. ),
  293. ),
  294. # 管理功能
  295. 'manage' => array
  296. (
  297. //'insert' => false,
  298. 'delete' => false,
  299. # 列表
  300. 'list_button' => array
  301. (
  302. 'edit' => array('预览', Dever::url('main/preview.get?type=4')),
  303. 'br1' => array('<br />'),
  304. 'list' => array('内页管理', '"content&search_option_info_id={id}&oper_parent=info&page_type=1"' , '{audit} == 1'),
  305. 'br2' => array('<br />'),
  306. 'add' => array('购买设置', '"buy&project=journal&search_option_info_id={id}&oper_parent=info&oper_project=journal&oper_save_jump=info&where_id={id}"', '{audit} == 1'),
  307. 'add1' => array('活动设置', '"active&project=journal&search_option_info_id={id}&oper_parent=info&oper_project=journal&oper_save_jump=info&where_id={id}"', '{audit} == 1'),
  308. 'br3' => array('<br />'),
  309. 'list1' => array('购买本数管理', '"buy_num&search_option_info_id={id}&oper_parent=info"' , '{audit} == 1 && {buy} == 1'),
  310. ),
  311. ),
  312. # request 请求接口定义
  313. 'request' => array
  314. (
  315. 'search' => array
  316. (
  317. # 匹配的正则或函数 选填项
  318. 'option' => array
  319. (
  320. 'ids' => array('yes-id', 'in'),
  321. //'cate_id' => 'yes',
  322. 'name' => array('yes', 'like'),
  323. 'id' => 'yes',
  324. ),
  325. 'type' => 'all',
  326. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  327. 'limit' => '0,1000',
  328. 'col' => 'name as name, id, id as value, "" as selected, "" as disabled',
  329. ),
  330. 'getAll' => array
  331. (
  332. # 匹配的正则或函数 选填项
  333. 'option' => array
  334. (
  335. //'audit' => 2,
  336. 'status' => 2,
  337. 'state' => 1,
  338. ),
  339. 'type' => 'all',
  340. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  341. 'page' => array(10, 'list'),
  342. 'col' => $col,
  343. ),
  344. # 更新浏览量
  345. 'addView' => array
  346. (
  347. 'type' => 'update',
  348. 'where' => array
  349. (
  350. 'id' => 'yes',
  351. ),
  352. 'set' => array
  353. (
  354. 'num_view' => array('1', '+='),
  355. ),
  356. ),
  357. ),
  358. );