info.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <?php
  2. $audit = Dever::config('base')->audit;
  3. $table = Dever::config('base')->table;
  4. $table_name = Dever::config('base')->table_name;
  5. $cate = function()
  6. {
  7. $array = array();
  8. $info = Dever::load('attr/cate-state');
  9. if($info)
  10. {
  11. $array += $info;
  12. }
  13. return $array;
  14. };
  15. return array
  16. (
  17. # 表名
  18. 'name' => 'info',
  19. # 显示给用户看的名称
  20. 'lang' => '社区信息管理',
  21. # 是否显示在后台菜单
  22. 'order' => 80,
  23. 'set' => array
  24. (
  25. 'table' => $table,
  26. 'table_name' => $table_name,
  27. ),
  28. # 数据结构
  29. 'struct' => array
  30. (
  31. 'id' => array
  32. (
  33. 'type' => 'int-11',
  34. 'name' => 'ID',
  35. 'default' => '',
  36. 'desc' => '',
  37. 'match' => 'is_numeric',
  38. 'order' => 'desc',
  39. //'list' => true,
  40. ),
  41. 'uid' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '用户名',
  45. 'default' => '0',
  46. 'desc' => '请选择用户',
  47. 'match' => 'is_numeric',
  48. //'update' => 'text',
  49. //'search' => 'select',
  50. 'search' => array
  51. (
  52. 'api' => 'passport/user-all',
  53. 'col' => 'username',
  54. 'result' => 'id',
  55. ),
  56. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#username", {uid}) : "匿名用户"',
  57. ),
  58. 'to_id' => array
  59. (
  60. 'type' => 'int-11',
  61. 'name' => '引用的信息id',
  62. 'default' => '0',
  63. 'desc' => '引用的信息id',
  64. 'match' => 'is_numeric',
  65. //'update' => 'text',
  66. ),
  67. 'to_uid' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '引用的信息所属uid',
  71. 'default' => '0',
  72. 'desc' => '引用的信息所属uid',
  73. 'match' => 'is_numeric',
  74. //'update' => 'text',
  75. ),
  76. 'cate_id' => array
  77. (
  78. 'type' => 'int-11',
  79. 'name' => '所属类别',
  80. 'default' => '1',
  81. 'desc' => '所属类别',
  82. 'match' => 'is_numeric',
  83. //'update' => 'select',
  84. 'option' => $cate,
  85. //'list' => '{cate_id} > 0 ? Dever::load("attr/cate-one#name", {cate_id}) : "未选择"',
  86. ),
  87. 'type' => array
  88. (
  89. 'type' => 'tinyint-1',
  90. 'name' => '所属数据源',
  91. 'default' => '',
  92. 'desc' => '所属数据源',
  93. 'match' => 'option',
  94. 'option' => $table,
  95. 'search' => 'select',
  96. //'update' => 'select',
  97. //'list' => true,
  98. ),
  99. 'type_id' => array
  100. (
  101. 'type' => 'varchar-11',
  102. 'name' => '数据源id',
  103. 'default' => '',
  104. 'desc' => '数据源id',
  105. 'match' => 'option',
  106. //'update' => 'text',
  107. ),
  108. 'type_name' => array
  109. (
  110. 'type' => 'varchar-200',
  111. 'name' => '数据源标题',
  112. 'default' => '',
  113. 'desc' => '数据源标题',
  114. 'match' => 'option',
  115. 'search' => 'fulltext',
  116. //'update' => 'text',
  117. //'list' => true,
  118. ),
  119. 'day' => array
  120. (
  121. 'type' => 'int-11',
  122. 'name' => '日期',
  123. 'default' => '-1',
  124. 'desc' => '日期',
  125. 'match' => 'is_numeric',
  126. //'update' => 'text',
  127. ),
  128. 'num_up' => array
  129. (
  130. 'type' => 'int-11',
  131. 'name' => '点赞数',
  132. 'default' => '0',
  133. 'desc' => '点赞数',
  134. 'match' => 'option',
  135. //'search' => 'order',
  136. //'list' => true,
  137. ),
  138. 'num_oppose' => array
  139. (
  140. 'type' => 'int-11',
  141. 'name' => '反对数',
  142. 'default' => '0',
  143. 'desc' => '反对数',
  144. 'match' => 'option',
  145. //'search' => 'order',
  146. //'list' => true,
  147. ),
  148. 'num_comment' => array
  149. (
  150. 'type' => 'int-11',
  151. 'name' => '评论数',
  152. 'default' => '0',
  153. 'desc' => '评论数',
  154. 'match' => 'option',
  155. //'search' => 'order',
  156. //'list' => true,
  157. ),
  158. 'pic' => array
  159. (
  160. 'type' => 'text-255',
  161. 'name' => '图片-图片尺寸不等,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  162. 'default' => '',
  163. 'desc' => '图片',
  164. 'match' => 'is_string',
  165. 'update' => 'images',
  166. 'key' => '1',
  167. ),
  168. 'content' => array
  169. (
  170. 'type' => 'text-255',
  171. 'name' => '内容',
  172. 'update' => 'editor',
  173. 'key' => 1,
  174. 'default' => '',
  175. 'desc' => '请输入内容',
  176. 'match' => 'is_string',
  177. 'search' => 'fulltext',
  178. //'list' => true,
  179. //'modal' => '查看详情',
  180. 'list' => 'Dever::load("community/lib/info.content", "{id}")',
  181. ),
  182. 'audit' => array
  183. (
  184. 'type' => 'int-11',
  185. 'name' => '审核',
  186. 'default' => '1',
  187. 'desc' => '审核',
  188. 'match' => 'is_numeric',
  189. //'update' => 'select',
  190. 'option' => $audit,
  191. //'search' => 'select',
  192. 'list' => true,
  193. 'edit' => true,
  194. ),
  195. 'state' => array
  196. (
  197. 'type' => 'tinyint-1',
  198. 'name' => '状态',
  199. 'default' => '1',
  200. 'desc' => '请选择状态',
  201. 'match' => 'is_numeric',
  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. 'search' => 'date',
  212. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  213. ),
  214. ),
  215. # 索引
  216. 'index' => array
  217. (
  218. # 索引名 => 索引id
  219. //'id' => 'id,state',
  220. 1 => array
  221. (
  222. 'search' => 'cate_id,type,type_id,day',
  223. ),
  224. 'version' => 1,
  225. ),
  226. 'manage' => array
  227. (
  228. //'insert' => false,
  229. //'edit' => false,
  230. ),
  231. # request 请求接口定义
  232. 'request' => array
  233. (
  234. 'getAll' => array
  235. (
  236. # 匹配的正则或函数 选填项
  237. 'option' => array
  238. (
  239. 'uid' => 'yes',
  240. 'cate_id' => 'yes',
  241. 'type' => 'yes',
  242. 'type_id' => 'yes',
  243. 'day' => 'yes',
  244. 'noid' => array('yes-id', '!='),
  245. 'audit' => 1,
  246. 'state' => 1,
  247. ),
  248. 'type' => 'all',
  249. 'order' => array('num_up`-`num_oppose' => 'desc', 'id' => 'desc'),
  250. 'page' => array(5, 'list'),
  251. 'col' => '*',
  252. ),
  253. 'getHot' => array
  254. (
  255. # 匹配的正则或函数 选填项
  256. 'option' => array
  257. (
  258. 'uid' => 'yes',
  259. 'cate_id' => 'yes',
  260. 'type' => 'yes',
  261. 'type_id' => 'yes',
  262. 'day' => 'yes',
  263. 'audit' => 1,
  264. 'state' => 1,
  265. ),
  266. 'type' => 'all',
  267. 'order' => array('num_up`-`num_oppose' => 'desc', 'id' => 'desc'),
  268. 'limit' => '0,1',
  269. 'col' => '*',
  270. ),
  271. 'getTotal' => array
  272. (
  273. # 匹配的正则或函数 选填项
  274. 'option' => array
  275. (
  276. 'uid' => 'yes',
  277. 'cate_id' => 'yes',
  278. 'type' => 'yes',
  279. 'type_id' => 'yes',
  280. 'day' => 'yes',
  281. 'audit' => 1,
  282. 'state' => 1,
  283. ),
  284. 'type' => 'count',
  285. ),
  286. )
  287. );