info.php 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?php
  2. $type = array
  3. (
  4. 1 => '手动输入',
  5. );
  6. $function = Dever::config('base')->type;
  7. $function[10] = '链接';
  8. $col = array
  9. (
  10. 1 => '标题',
  11. //2 => '链接',
  12. 3 => '图片',
  13. //4 => '描述',
  14. );
  15. return array
  16. (
  17. # 表名
  18. 'name' => 'info',
  19. # 显示给用户看的名称
  20. 'lang' => '推送位管理',
  21. 'order' => 10,
  22. 'check' => 'key',
  23. # 数据结构
  24. 'struct' => array
  25. (
  26. 'id' => array
  27. (
  28. 'type' => 'int-11',
  29. 'name' => '推送位ID',
  30. 'default' => '',
  31. 'desc' => '',
  32. 'match' => 'is_numeric',
  33. //'search' => 'order',
  34. 'order' => 'desc',
  35. //'list' => true,
  36. ),
  37. 'name' => array
  38. (
  39. 'type' => 'varchar-60',
  40. 'name' => '推送位标题',
  41. 'default' => '',
  42. 'desc' => '请输入推送位标题',
  43. 'match' => 'is_string',
  44. 'update' => 'text',
  45. 'search' => 'fulltext',
  46. 'list' => true,
  47. 'edit' => true,
  48. ),
  49. 'key' => array
  50. (
  51. 'type' => 'varchar-60',
  52. 'name' => '推送位标识',
  53. 'default' => '',
  54. 'desc' => '推送位标识',
  55. 'match' => 'is_string',
  56. 'update' => Dever::input('where_id') ? 'hidden' : 'text',
  57. 'search' => 'fulltext',
  58. 'list' => true,
  59. //'auth' => '!{key}'
  60. ),
  61. 'num' => array
  62. (
  63. 'type' => 'int-11',
  64. 'name' => '数据显示条数-为空或小于0则取默认值20,只对前台有效,当有分页时,则为每页显示的条数',
  65. 'default' => '20',
  66. 'desc' => '数据显示条数',
  67. 'match' => 'is_numeric',
  68. 'update' => 'text',
  69. 'list' => true,
  70. 'edit' => true,
  71. ),
  72. 'type' => array
  73. (
  74. 'type' => 'tinyint-1',
  75. 'name' => '推送位类型',
  76. 'default' => '1',
  77. 'desc' => '请选择推送位类型',
  78. 'match' => 'is_numeric',
  79. 'option' => $type,
  80. 'update' => 'radio',
  81. 'search' => 'select',
  82. //'list' => true,
  83. 'control' => 'type',
  84. ),
  85. /*
  86. 'data_type' => array
  87. (
  88. 'type' => 'varchar-50',
  89. 'name' => '数据类型定义-多个用换行隔开,必须有一个值,主要用于该推送位有多种不同类型的值',
  90. 'default' => '默认类型',
  91. 'desc' => '请选择推送位类型',
  92. 'match' => 'is_string',
  93. //'update' => 'textarea',
  94. //'show' => array('type_1'),
  95. ),
  96. 'code' => array
  97. (
  98. 'type' => 'varchar-500',
  99. 'name' => '自定义内容',
  100. 'default' => '',
  101. 'desc' => '请输入自定义内容',
  102. 'match' => 'is_string',
  103. 'update' => 'textarea',
  104. 'show' => 'type=4,5,6',
  105. ),
  106. 'sql_method' => array
  107. (
  108. 'type' => 'tinyint-1',
  109. 'name' => '选择sql执行之后的方法',
  110. 'default' => '1',
  111. 'desc' => '选择sql执行之后的方法',
  112. 'match' => 'is_numeric',
  113. 'update' => 'radio',
  114. 'option' => $sqlMethod,
  115. 'show' => 'type=5',
  116. ),
  117. 'define' => array
  118. (
  119. 'type' => 'varchar-100',
  120. 'name' => '选择预定义方法',
  121. 'default' => '',
  122. 'desc' => '请选择预定义方法',
  123. 'match' => 'is_string',
  124. 'update' => 'select',
  125. 'option' => $define,
  126. 'show' => 'type=3'
  127. ),
  128. */
  129. 'function' => array
  130. (
  131. 'type' => 'varchar-30',
  132. 'name' => '启用的功能',
  133. 'default' => '1,10',
  134. 'desc' => '启用的功能',
  135. 'match' => 'is_string',
  136. 'option' => $function,
  137. 'update' => 'checkbox',
  138. 'show' => 'type=1',
  139. ),
  140. 'col' => array
  141. (
  142. 'type' => 'varchar-30',
  143. 'name' => '启用的字段',
  144. 'default' => '1',
  145. 'desc' => '请选择启用的字段',
  146. 'match' => 'is_string',
  147. 'option' => $col,
  148. 'update' => 'checkbox',
  149. 'show' => 'type=1',
  150. 'control' => 'col',
  151. ),
  152. 'col_pic' => array
  153. (
  154. 'type' => 'varchar-20',
  155. 'name' => '图片尺寸提醒-请直接输入提醒的文字即可,如100X100',
  156. 'default' => '100X100',
  157. 'desc' => '图片尺寸提醒',
  158. 'match' => 'is_string',
  159. 'update' => 'text',
  160. 'show' => 'col=3',
  161. ),
  162. 'col_content' => array
  163. (
  164. 'type' => 'int-11',
  165. 'name' => '内容长度限制-必须是数字',
  166. 'default' => '30',
  167. 'desc' => '内容长度限制',
  168. 'match' => 'is_numeric',
  169. 'update' => 'text',
  170. 'show' => 'col=4',
  171. ),
  172. /*
  173. 'relate_id' => array
  174. (
  175. 'type' => 'int-11',
  176. 'name' => '请输入推送位id',
  177. 'default' => '',
  178. 'desc' => '请输入推送位id',
  179. 'match' => 'is_numeric',
  180. 'update' => 'text',
  181. 'show' => 'type=2',
  182. ),
  183. 'preview' => array
  184. (
  185. 'type' => 'varchar-200',
  186. 'name' => '推送位预览地址',
  187. 'default' => '',
  188. 'desc' => '推送位预览地址',
  189. 'match' => 'option',
  190. 'update' => 'text',
  191. ),
  192. 'preview_height' => array
  193. (
  194. 'type' => 'int-11',
  195. 'name' => '推送位预览的高度',
  196. 'default' => '500',
  197. 'desc' => '推送位预览的高度',
  198. 'match' => 'option',
  199. 'update' => 'text',
  200. ),
  201. */
  202. 'reorder' => array
  203. (
  204. 'type' => 'int-11',
  205. 'name' => '排序(数值越大越靠前)',
  206. 'default' => '1',
  207. 'desc' => '请输入排序',
  208. 'match' => 'option',
  209. 'update' => 'text',
  210. 'search' => 'order',
  211. 'list_name' => '排序',
  212. 'list' => true,
  213. 'order' => 'desc',
  214. //'edit' => true,
  215. ),
  216. 'state' => array
  217. (
  218. 'type' => 'tinyint-1',
  219. 'name' => '状态',
  220. 'default' => '1',
  221. 'desc' => '请选择状态',
  222. 'match' => 'is_numeric',
  223. ),
  224. 'cdate' => array
  225. (
  226. 'type' => 'int-11',
  227. 'name' => '录入时间',
  228. 'match' => array('is_numeric', time()),
  229. 'desc' => '',
  230. # 只有insert时才生效
  231. 'insert' => true,
  232. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  233. ),
  234. ),
  235. # 权限精细控制 加入到该项目的详细权限中,注意与top的不同
  236. /*
  237. 'auth' => array
  238. (
  239. # 数据来源
  240. 'data' => 'all',
  241. # 所属项目
  242. 'project' => 'module',
  243. # 项目名称
  244. 'project_name' => '推送位管理',
  245. ),
  246. */
  247. 'manage' => array
  248. (
  249. 'delete' => false,
  250. //'edit' => false,
  251. //'insert' => $curPage ? true : false,
  252. 'list_button' => array
  253. (
  254. 'add' => array('新增数据', '"data&search_option_info_id={id}&oper_parent=info"', '{type} == 1'),
  255. 'list' => array('数据列表', '"data&search_option_info_id={id}&oper_parent=info"'),
  256. ),
  257. ),
  258. # request 请求接口定义
  259. 'request' => array
  260. (
  261. # 获取列表页
  262. 'getAll' => array
  263. (
  264. # 匹配的正则或函数 选填项
  265. 'option' => array
  266. (
  267. 'type' => 'yes',
  268. //'page_id' => 'yes',
  269. 'state' => 1,
  270. ),
  271. 'type' => 'all',
  272. 'order' => array('reorder' => 'desc'),
  273. 'col' => '*',
  274. ),
  275. ),
  276. );