article.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <?php
  2. $code = array
  3. (
  4. 1 => '用户ID',
  5. 2 => '随机数字',
  6. 3 => '随机数字+字母',
  7. );
  8. # 每页的数据量
  9. $page = 15;
  10. $cate = function()
  11. {
  12. $array = array();
  13. $info = Dever::db('content/cate')->state();
  14. if($info)
  15. {
  16. $array += $info;
  17. }
  18. return $array;
  19. };
  20. $author = function()
  21. {
  22. $array = array();
  23. $info = Dever::db('content/author')->state();
  24. if($info)
  25. {
  26. $array += $info;
  27. }
  28. return $array;
  29. };
  30. $share = function()
  31. {
  32. $array = array();
  33. $info = Dever::db('poster/template')->state();
  34. if($info)
  35. {
  36. $array += $info;
  37. }
  38. return $array;
  39. };
  40. return array
  41. (
  42. # 表名
  43. 'name' => 'article',
  44. # 显示给用户看的名称
  45. 'lang' => '图文管理',
  46. 'order' => 100,
  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. ),
  58. 'name' => array
  59. (
  60. 'type' => 'varchar-80',
  61. 'name' => '标题',
  62. 'default' => '',
  63. 'desc' => '标题',
  64. 'match' => 'is_string',
  65. 'update' => 'text',
  66. 'list' => true,
  67. ),
  68. 'cate_id' => array
  69. (
  70. 'type' => 'int-11',
  71. 'name' => '所属栏目',
  72. 'default' => '1',
  73. 'desc' => '所属栏目',
  74. 'match' => 'is_numeric',
  75. 'update' => 'select',
  76. 'option' => $cate,
  77. 'search' => 'select',
  78. ),
  79. 'author_id' => array
  80. (
  81. 'type' => 'int-11',
  82. 'name' => '作者',
  83. 'default' => '1',
  84. 'desc' => '作者',
  85. 'match' => 'is_numeric',
  86. 'update' => 'select',
  87. 'option' => $author,
  88. 'search' => 'select',
  89. ),
  90. 'pic_cover' => array
  91. (
  92. 'type' => 'varchar-150',
  93. 'name' => '封面图-4:3比例的图片',
  94. 'default' => '',
  95. 'desc' => '封面图',
  96. 'match' => 'option',
  97. 'update' => 'image',
  98. 'key' => '1',
  99. 'place' => '150',
  100. ),
  101. 'num_add_view' => array
  102. (
  103. 'type' => 'int-11',
  104. 'name' => '手动增加浏览量pv数',
  105. 'default' => '0',
  106. 'desc' => '请填写手动增加浏览量pv',
  107. 'match' => 'option',
  108. 'update' => 'text',
  109. ),
  110. 'num_view' => array
  111. (
  112. 'type' => 'int-11',
  113. 'name' => '浏览量pv',
  114. 'default' => '0',
  115. 'desc' => '请填写浏览量pv',
  116. 'match' => 'option',
  117. 'search' => 'order',
  118. //'list' => '{num_view}+{num_add_view}',
  119. ),
  120. 'num_up' => array
  121. (
  122. 'type' => 'int-11',
  123. 'name' => '喜欢数',
  124. 'default' => '0',
  125. 'desc' => '请填写喜欢数',
  126. 'match' => 'option',
  127. //'search' => 'order',
  128. 'list' => '"喜欢数:{num_up}<br />浏览量:{num_view}+{num_add_view}<br />评论数:{num_comment}<br />"',
  129. 'list_name' => '统计数字',
  130. ),
  131. 'num_comment' => array
  132. (
  133. 'type' => 'int-11',
  134. 'name' => '评论数',
  135. 'default' => '0',
  136. 'desc' => '请填写评论数',
  137. 'search' => 'order',
  138. 'match' => 'option',
  139. //'list' => true,
  140. ),
  141. 'content' => array
  142. (
  143. 'type' => 'text-255',
  144. 'name' => '内容',
  145. 'default' => '',
  146. 'desc' => '请输入内容',
  147. 'match' => 'is_string',
  148. 'update' => 'editor',
  149. 'key' => 1,
  150. 'media' => 5,
  151. ),
  152. 'state' => array
  153. (
  154. 'type' => 'tinyint-1',
  155. 'name' => '状态',
  156. 'default' => '1',
  157. 'desc' => '请选择状态',
  158. 'match' => 'is_numeric',
  159. ),
  160. 'admin_founder' => array
  161. (
  162. 'type' => 'int-11',
  163. 'name' => '创建人',
  164. 'default' => '1',
  165. 'desc' => '创建人',
  166. 'match' => 'is_numeric',
  167. ),
  168. 'admin_editor' => array
  169. (
  170. 'type' => 'int-11',
  171. 'name' => '操作人',
  172. 'default' => '1',
  173. 'desc' => '操作人',
  174. 'match' => 'is_numeric',
  175. ),
  176. 'pdate' => array
  177. (
  178. 'type' => 'int-11',
  179. 'name' => '发布时间',
  180. 'match' => 'is_numeric',
  181. 'desc' => '',
  182. 'update' => 'date',
  183. 'callback' => 'maketime',
  184. 'list' => 'date("Y-m-d H:i:s", {pdate})',
  185. ),
  186. 'share' => array
  187. (
  188. 'type' => 'text-255',
  189. 'name' => '分享海报-选择海报库中的海报',
  190. 'default' => '',
  191. 'desc' => '分享海报',
  192. 'match' => 'option',
  193. 'update' => 'checkbox',
  194. 'option' => $share,
  195. ),
  196. 'udate' => array
  197. (
  198. 'type' => 'int-11',
  199. 'name' => '更新时间',
  200. 'match' => array('is_numeric', time()),
  201. 'desc' => '',
  202. ),
  203. 'cdate' => array
  204. (
  205. 'type' => 'int-11',
  206. 'name' => '录入时间',
  207. 'match' => array('is_numeric', time()),
  208. 'desc' => '',
  209. # 只有insert时才生效
  210. 'insert' => true,
  211. ),
  212. ),
  213. # 索引
  214. 'index' => array
  215. (
  216. 'version' => 1,
  217. 1 => array
  218. (
  219. 'i1' => 'uid,cate_id',
  220. )
  221. ),
  222. # 管理功能
  223. 'manage' => array
  224. (
  225. //'insert' => false,
  226. # 列表
  227. /*
  228. 'list_button' => array
  229. (
  230. 'list' => array('评论列表', '"comment&search_option_data_id={id}&oper_parent=article"'),
  231. ),
  232. */
  233. ),
  234. # request 请求接口定义
  235. 'request' => array
  236. (
  237. 'getAll' => array
  238. (
  239. # 匹配的正则或函数 选填项
  240. 'option' => array
  241. (
  242. 'cate_id' => 'yes',
  243. 'cate_ids' => array('yes-cate_id', 'in'),
  244. 'id' => 'yes',
  245. ),
  246. 'type' => 'all',
  247. 'order' => array('id' => 'desc'),
  248. 'page' => array($page, 'list'),
  249. 'col' => '*',
  250. ),
  251. # 获取默认主题,按照置顶和时间排序的
  252. 'default' => array
  253. (
  254. # 匹配的正则或函数 选填项
  255. 'option' => array
  256. (
  257. 'cate_id' => 'yes',
  258. 'uid' => 'yes',
  259. ),
  260. 'type' => 'all',
  261. 'order' => array('id' => 'desc'),
  262. 'page' => array($page, 'list'),
  263. 'col' => '*',
  264. ),
  265. # 获取最新主题
  266. 'new' => array
  267. (
  268. # 匹配的正则或函数 选填项
  269. 'option' => array
  270. (
  271. 'name' => array('yes', 'like'),
  272. 'cate_id' => 'yes',
  273. 'uid' => 'yes',
  274. ),
  275. 'type' => 'all',
  276. 'order' => array('id', 'desc'),
  277. 'page' => array($page, 'list'),
  278. 'col' => '*',
  279. ),
  280. # 获取热门主题
  281. 'hot' => array
  282. (
  283. # 匹配的正则或函数 选填项
  284. 'option' => array
  285. (
  286. 'cate_id' => 'yes',
  287. 'uid' => 'yes',
  288. ),
  289. 'type' => 'all',
  290. 'order' => array('num_view`+`num_add_view' => 'desc', 'id' => 'desc'),
  291. 'page' => array($page, 'list'),
  292. 'col' => '*',
  293. ),
  294. # 获取冷门主题
  295. 'cold' => array
  296. (
  297. # 匹配的正则或函数 选填项
  298. 'option' => array
  299. (
  300. 'cate_id' => 'yes',
  301. 'uid' => 'yes',
  302. ),
  303. 'type' => 'all',
  304. 'order' => array('num_view`+`num_add_view' => 'asc', 'id' => 'desc'),
  305. 'page' => array($page, 'list'),
  306. 'col' => '*',
  307. ),
  308. # 更新浏览量
  309. 'addView' => array
  310. (
  311. 'type' => 'update',
  312. 'where' => array
  313. (
  314. 'id' => 'yes',
  315. ),
  316. 'set' => array
  317. (
  318. 'num_view' => array('1', '+='),
  319. ),
  320. ),
  321. # 更新回复数
  322. 'addComment' => array
  323. (
  324. 'type' => 'update',
  325. 'where' => array
  326. (
  327. 'id' => 'yes',
  328. ),
  329. 'set' => array
  330. (
  331. 'num_comment' => array('1', '+='),
  332. ),
  333. ),
  334. # 更新点赞数
  335. 'addUp' => array
  336. (
  337. 'type' => 'update',
  338. 'where' => array
  339. (
  340. 'id' => 'yes',
  341. ),
  342. 'set' => array
  343. (
  344. 'num_up' => array('1', '+='),
  345. ),
  346. ),
  347. # 更新点赞数
  348. 'desUp' => array
  349. (
  350. 'type' => 'update',
  351. 'where' => array
  352. (
  353. 'id' => 'yes',
  354. ),
  355. 'set' => array
  356. (
  357. 'num_up' => array('1', '-='),
  358. ),
  359. ),
  360. ),
  361. );