info.php 7.9 KB

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