info.php 8.9 KB

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