module.php 8.6 KB

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