info.php 9.4 KB

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