menu.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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 = Dever::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 ? Dever::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' => 'option',
  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. 'edit' => true,
  115. ),
  116. 'type' => array
  117. (
  118. 'type' => 'tinyint-1',
  119. 'name' => '开启子菜单',
  120. 'default' => '2',
  121. 'desc' => '请选择开启子菜单',
  122. 'match' => 'is_numeric',
  123. 'option' => $type,
  124. 'update' => 'radio',
  125. 'list' => true,
  126. ),
  127. 'icon' => array
  128. (
  129. 'type' => 'varchar-100',
  130. 'name' => '图标代码-请<a href="http://dwz.cn/1j8SP0" target="_blank">点此</a>查看图标代码',
  131. 'default' => 'glyphicon glyphicon-folder-close',
  132. 'desc' => '请输入图标代码',
  133. 'match' => 'is_string',
  134. //'option' => $icon,
  135. 'update' => 'text',
  136. ),
  137. 'fast' => array
  138. (
  139. 'type' => 'tinyint-1',
  140. 'name' => '是否快捷菜单',
  141. 'default' => '2',
  142. 'desc' => '请选择快捷菜单',
  143. 'match' => 'is_numeric',
  144. 'option' => $fast,
  145. 'update' => 'radio',
  146. 'list' => true,
  147. 'edit' => true,
  148. ),
  149. 'state' => array
  150. (
  151. 'type' => 'tinyint-1',
  152. 'name' => '状态',
  153. 'default' => '1',
  154. 'desc' => '请选择状态',
  155. 'match' => array('is_numeric', 1),
  156. 'option' => $option,
  157. 'update' => 'radio',
  158. 'list' => true,
  159. ),
  160. 'cdate' => array
  161. (
  162. 'type' => 'int-11',
  163. 'name' => '录入时间',
  164. 'match' => array('is_numeric', time()),
  165. 'desc' => '',
  166. # 只有insert时才生效
  167. 'insert' => true,
  168. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  169. ),
  170. ),
  171. 'manage' => array
  172. (
  173. 'list_button' => array(6 => '删除'),
  174. 'button' => array
  175. (
  176. '更新菜单' => 'manage/menu.update',
  177. //'全部清空' => 'manage/menu.delete',
  178. )
  179. ),
  180. # request 请求接口定义
  181. 'request' => array
  182. (
  183. # info 取一条正常的数据
  184. 'info' => array
  185. (
  186. 'where' => array
  187. (
  188. 'id' => 'is_numeric',
  189. 'state' => 1,
  190. ),
  191. 'type' => 'one',
  192. ),
  193. 'key' => array
  194. (
  195. 'where' => array
  196. (
  197. 'key' => 'yes',
  198. ),
  199. 'type' => 'one',
  200. ),
  201. 'keyId' => array
  202. (
  203. 'where' => array
  204. (
  205. 'key' => 'yes',
  206. 'id' => array('yes', '!='),
  207. ),
  208. 'type' => 'one',
  209. ),
  210. # 取所有菜单
  211. 'all' => array
  212. (
  213. 'type' => 'all',
  214. 'order' => array('reorder` desc,`id', 'desc'),
  215. 'col' => '*|id',
  216. ),
  217. # main 取所有子菜单
  218. 'child' => array
  219. (
  220. 'where' => array
  221. (
  222. 'state' => 1,
  223. 'menu_id' => array(1, '>='),
  224. ),
  225. 'type' => 'all',
  226. 'order' => array('reorder` desc,`id', 'desc'),
  227. 'col' => '*|menu_id|key|',
  228. ),
  229. # main 取所有一级菜单
  230. 'main' => array
  231. (
  232. 'where' => array
  233. (
  234. 'state' => 1,
  235. 'menu_id' => -1,
  236. ),
  237. 'option' => array
  238. (
  239. 'key' => array('yes', 'in'),
  240. ),
  241. 'type' => 'all',
  242. 'order' => array('reorder` desc,`id', 'desc'),
  243. 'col' => '*|key',
  244. ),
  245. # main 取所有一级菜单
  246. 'get' => array
  247. (
  248. 'where' => array
  249. (
  250. 'state' => 1,
  251. 'menu_id' => -1,
  252. ),
  253. 'type' => 'all',
  254. 'order' => array('reorder` desc,`id', 'desc'),
  255. 'col' => '*|id',
  256. ),
  257. ),
  258. );