info.php 9.3 KB

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