menu.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <?php
  2. # 定义几个常用的选项
  3. $option = array
  4. (
  5. 1 => '生效',
  6. 2 => '失效',
  7. );
  8. $fast = array
  9. (
  10. 1 => '是',
  11. 2 => '否',
  12. );
  13. $type = array
  14. (
  15. 1 => '开启',
  16. 2 => '不开启',
  17. );
  18. # 图标
  19. $icon = array
  20. (
  21. 1 => '默认',
  22. );
  23. $menu = function()
  24. {
  25. $array = array(-1 => array('name' => '父级菜单'));
  26. $menu = Maze::load('manage/menu-get');
  27. if($menu)
  28. {
  29. $array += $menu;
  30. }
  31. return $array;
  32. };
  33. return array
  34. (
  35. # 表名
  36. 'name' => 'menu',
  37. # 显示给用户看的名称
  38. 'lang' => '管理菜单设置',
  39. 'order' => 2,
  40. # 不允许key重复
  41. 'start' => array
  42. (
  43. 'update' => 'manage/menu.checkKey',
  44. 'insert' => 'manage/menu.checkKey',
  45. ),
  46. # 数据结构
  47. 'struct' => array
  48. (
  49. 'id' => array
  50. (
  51. 'type' => 'int-11',
  52. 'name' => '菜单ID',
  53. 'default' => '',
  54. 'desc' => '',
  55. 'match' => 'is_numeric',
  56. 'order' => 'desc',
  57. ),
  58. 'name' => array
  59. (
  60. 'type' => 'varchar-50',
  61. 'name' => '菜单名称',
  62. 'default' => '',
  63. 'desc' => '请输入菜单名称',
  64. 'match' => 'is_string',
  65. 'update' => 'text',
  66. 'search' => 'order,fulltext',
  67. 'list' => true,
  68. ),
  69. 'menu_id' => array
  70. (
  71. 'type' => 'int-11',
  72. 'name' => '上级菜单',
  73. 'default' => -1,
  74. 'desc' => '请选择上级菜单',
  75. 'match' => 'is_numeric',
  76. 'update' => 'select',
  77. 'search' => 'order,select',
  78. 'list' => '{menu_id} > 0 ? Maze::load("manage/menu-one#name", {menu_id}) : "父级菜单"',
  79. 'option' => $menu,
  80. ),
  81. 'key' => array
  82. (
  83. 'type' => 'varchar-100',
  84. 'name' => '菜单唯一key',
  85. 'default' => '',
  86. 'desc' => '请输入菜单唯一key',
  87. 'match' => 'is_string',
  88. 'update' => 'text',
  89. 'search' => 'fulltext',
  90. 'list' => true,
  91. ),
  92. 'link' => array
  93. (
  94. 'type' => 'varchar-150',
  95. 'name' => '链接(或路径)',
  96. 'default' => '',
  97. 'desc' => '请输入链接',
  98. 'match' => 'is_string',
  99. 'update' => 'text',
  100. //'search' => 'fulltext',
  101. //'list' => true,
  102. ),
  103. 'reorder' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => '排序',
  107. 'default' => '1',
  108. 'desc' => '请输入排序',
  109. 'match' => 'option',
  110. 'update' => 'text',
  111. 'search' => 'order',
  112. 'list' => true,
  113. 'order' => 'desc',
  114. ),
  115. 'type' => array
  116. (
  117. 'type' => 'tinyint-1',
  118. 'name' => '开启子菜单',
  119. 'default' => '2',
  120. 'desc' => '请选择开启子菜单',
  121. 'match' => 'is_numeric',
  122. 'option' => $type,
  123. 'update' => 'radio',
  124. 'list' => true,
  125. ),
  126. 'icon' => array
  127. (
  128. 'type' => 'int-2',
  129. 'name' => '图标',
  130. 'default' => '1',
  131. 'desc' => '请选择图标',
  132. 'match' => 'is_numeric',
  133. 'option' => $icon,
  134. 'update' => 'radio',
  135. ),
  136. 'fast' => array
  137. (
  138. 'type' => 'tinyint-1',
  139. 'name' => '是否快捷菜单',
  140. 'default' => '2',
  141. 'desc' => '请选择快捷菜单',
  142. 'match' => 'is_numeric',
  143. 'option' => $fast,
  144. 'update' => 'radio',
  145. 'list' => true,
  146. ),
  147. 'state' => array
  148. (
  149. 'type' => 'tinyint-1',
  150. 'name' => '状态',
  151. 'default' => '1',
  152. 'desc' => '请选择状态',
  153. 'match' => array('is_numeric', 1),
  154. 'option' => $option,
  155. 'update' => 'radio',
  156. 'list' => true,
  157. ),
  158. 'cdate' => array
  159. (
  160. 'type' => 'int-11',
  161. 'name' => '录入时间',
  162. 'match' => array('is_numeric', time()),
  163. 'desc' => '',
  164. # 只有insert时才生效
  165. 'insert' => true,
  166. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  167. ),
  168. ),
  169. 'manage' => array
  170. (
  171. 'list_button' => array(6 => '删除'),
  172. 'button' => array
  173. (
  174. '更新菜单' => 'manage/menu.update',
  175. //'全部清空' => 'manage/menu.delete',
  176. )
  177. ),
  178. # request 请求接口定义
  179. 'request' => array
  180. (
  181. # info 取一条正常的数据
  182. 'info' => array
  183. (
  184. 'where' => array
  185. (
  186. 'id' => 'is_numeric',
  187. 'state' => 1,
  188. ),
  189. 'type' => 'one',
  190. ),
  191. 'key' => array
  192. (
  193. 'where' => array
  194. (
  195. 'key' => 'yes',
  196. ),
  197. 'type' => 'one',
  198. ),
  199. 'keyId' => array
  200. (
  201. 'where' => array
  202. (
  203. 'key' => 'yes',
  204. 'id' => array('yes', '!='),
  205. ),
  206. 'type' => 'one',
  207. ),
  208. # 取所有菜单
  209. 'all' => array
  210. (
  211. 'type' => 'all',
  212. 'order' => array('reorder` desc,`id', 'desc'),
  213. 'col' => '*|id',
  214. ),
  215. # main 取所有子菜单
  216. 'child' => array
  217. (
  218. 'where' => array
  219. (
  220. 'state' => 1,
  221. 'menu_id' => array(1, '>='),
  222. ),
  223. 'type' => 'all',
  224. 'order' => array('reorder` desc,`id', 'desc'),
  225. 'col' => '*|menu_id|key|',
  226. ),
  227. # main 取所有一级菜单
  228. 'main' => array
  229. (
  230. 'where' => array
  231. (
  232. 'state' => 1,
  233. 'menu_id' => -1,
  234. ),
  235. 'type' => 'all',
  236. 'order' => array('reorder` desc,`id', 'desc'),
  237. 'col' => '*|key',
  238. ),
  239. # main 取所有一级菜单
  240. 'get' => array
  241. (
  242. 'where' => array
  243. (
  244. 'state' => 1,
  245. 'menu_id' => -1,
  246. ),
  247. 'type' => 'all',
  248. 'order' => array('reorder` desc,`id', 'desc'),
  249. 'col' => '*|id',
  250. ),
  251. ),
  252. );