info.php 6.4 KB

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