role.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | role.php 角色表
  5. |--------------------------------------------------------------------------
  6. */
  7. # 定义几个常用的选项
  8. $option = array
  9. (
  10. 1 => '可用',
  11. 2 => '不可用',
  12. );
  13. # 获取权限list 建议这里使用匿名函数
  14. $auth = function()
  15. {
  16. return Maze::load('manage/auth.get');
  17. };
  18. # 获取头部菜单list 建议这里使用匿名函数
  19. $top = function()
  20. {
  21. $data = Maze::load('manage/top.all');
  22. $data['state'] = 1;
  23. return $data;
  24. };
  25. # 操作权限控制
  26. $oper = array
  27. (
  28. 1 => '浏览',
  29. 2 => '检索',
  30. 3 => '更新',
  31. 4 => '新增',
  32. 5 => '删除',
  33. );
  34. //print_r($auth);die;
  35. return array
  36. (
  37. # 表名
  38. 'name' => 'role',
  39. # 显示给用户看的名称
  40. 'lang' => '管理角色设置',
  41. 'order' => 8,
  42. # 数据结构
  43. 'struct' => array
  44. (
  45. 'id' => array
  46. (
  47. 'type' => 'int-11',
  48. 'name' => '角色ID',
  49. 'default' => '',
  50. 'desc' => '',
  51. 'match' => 'is_numeric',
  52. 'search' => 'order',
  53. 'list' => true,
  54. ),
  55. 'name' => array
  56. (
  57. 'type' => 'varchar-24',
  58. 'name' => '角色名',
  59. 'default' => '',
  60. 'desc' => '请输入角色名',
  61. 'match' => 'is_string',
  62. 'update' => 'text',
  63. 'search' => 'fulltext',
  64. 'list_name' => '角色名',//定义列表页的名称
  65. 'list' => true,
  66. 'edit' => true,
  67. ),
  68. /*
  69. //启用复制其他字段的值
  70. 'testname' => array
  71. (
  72. 'type' => 'varchar-24',
  73. 'name' => '角色名',
  74. 'default' => '',
  75. 'desc' => '请输入角色名',
  76. 'match' => 'is_string',
  77. 'update' => 'copy.name',//直接复制name的值
  78. 'search' => 'order,fulltext',
  79. 'list' => true,
  80. ),
  81. */
  82. #设置分割条
  83. /*
  84. 'hr1' => array
  85. (
  86. 'name' => '基本信息',
  87. 'class' => '',//本项必须填写
  88. 'attr' => '',
  89. ),
  90. */
  91. 'oper' => array
  92. (
  93. 'type' => 'varchar-24',
  94. 'name' => '操作权限',
  95. 'default' => array(1,2,3),
  96. 'desc' => '请选择操作权限',
  97. 'match' => 'is_string',
  98. 'update' => 'checkbox',
  99. 'option' => $oper,
  100. ),
  101. 'auth' => array
  102. (
  103. 'type' => 'text-255',
  104. 'name' => '权限设置',
  105. 'default' => '',
  106. 'desc' => '请选择权限',
  107. 'match' => 'is_string',
  108. 'update' => 'checkbox',
  109. //每个项对应的一个input以及父级更新的类型
  110. //'update_input' => '数量',
  111. //'update_parent' => 'radio',
  112. 'option' => $auth,
  113. ),
  114. 'top' => array
  115. (
  116. 'type' => 'text-255',
  117. 'name' => '头部菜单',
  118. 'default' => '',
  119. 'desc' => '请选择头部菜单',
  120. 'match' => 'option',
  121. 'update' => 'checkbox',
  122. 'option' => $top,
  123. ),
  124. 'state' => array
  125. (
  126. 'type' => 'tinyint-1',
  127. 'name' => '状态',
  128. 'default' => '1',
  129. 'desc' => '请选择状态',
  130. 'match' => 'is_numeric',
  131. 'option' => $option,
  132. 'update' => 'radio',
  133. 'list' => true,
  134. 'edit' => true,
  135. /*
  136. //启用位运算,仅支持与操作,数据保存时,将从0开始加起,一般用于站点之类的保存,慎用,测试需将radio改成checkbox
  137. 'bit' => array
  138. (
  139. 1 => 1,//1为对应的值,100为保存到数据库中的值
  140. 2 => 10,
  141. //4 => 100,
  142. ),
  143. */
  144. ),
  145. 'cdate' => array
  146. (
  147. 'type' => 'int-11',
  148. 'name' => '录入时间',
  149. 'match' => array('is_numeric', time()),
  150. 'desc' => '',
  151. # 只有insert时才生效
  152. 'insert' => true,
  153. # 加入搜索时间区间段
  154. 'search' => 'date',
  155. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  156. ),
  157. ),
  158. # 更新表结构 请注意,新增字段已经无需在此增加add了,直接在struct中新增即可。如果是更新字段和删除字段,还需在此加相应配置,并且修改最新的版本号。
  159. /*
  160. 'alter' => array
  161. (
  162. 1 => array
  163. (
  164. array('add', 'top', 'top', 'text-255 头部菜单'),//新增字段
  165. array('update', 't1', 't2', 'text-255 头部菜单'),//更新字段
  166. array('delete', 't1'), //删除字段
  167. ),
  168. 'version' => 1,
  169. ),
  170. */
  171. # 默认值
  172. 'default' => array
  173. (
  174. 'col' => 'name,oper,auth,state,cdate',
  175. 'value' => array
  176. (
  177. '"系统管理员","all","all",1,' . time(),
  178. ),
  179. ),
  180. # 索引
  181. 'index' => array
  182. (
  183. # 索引名 => 索引id
  184. //'id' => 'id,state',
  185. # 版本号 更改版本号会更新当前表的索引,慎用
  186. //'version' => 1,
  187. ),
  188. # 后台管理 此处的功能全部开放
  189. 'manage' => array
  190. (
  191. # 启动自动保存功能
  192. 'save' => true,
  193. # 启动预览功能
  194. 'preview' => true,
  195. # 开启报表下载
  196. 'excel' => true,
  197. # 开启批量管理
  198. 'mul' => true,
  199. # 开启主动统计,需要人工选择选项来确定统计的项,有别于被动统计,实现中
  200. 'stat' => 'top,auth,state,oper',//值为不显示的字段,无需输入id和cdate
  201. # 列表页每个元素管理下的button,其中3为编辑、6为删除,其他可以自定义。
  202. //'list_button' => array(1 => array('日志', '"api_log&option_site={id}"'), 6 => '删除'),
  203. //'list_button' => array(6 => '删除'),
  204. # 列表头部的button,多个直接添加字段即可
  205. 'button' => array
  206. (
  207. //'更新接口' => 'manage/api.update',
  208. )
  209. ),
  210. # request 请求接口定义
  211. 'request' => array
  212. (
  213. # all 取所有数据
  214. 'all' => array
  215. (
  216. # 匹配的正则或函数 选填项
  217. 'option' => array
  218. (
  219. 'name' => array('is_string', 'like'),
  220. 'state' => 1,
  221. ),
  222. 'type' => 'all',
  223. 'order' => array('id', 'desc'),
  224. 'col' => '*,name as value,name as label|id',//这里为了做autocomplete进行测试,必须输出value和label
  225. ),
  226. # 带有*号前缀的,可以直接接口访问
  227. '*get' => array
  228. (
  229. # 匹配的正则或函数 选填项
  230. 'where' => array
  231. (
  232. 'id' => array('is_string', 'in'),
  233. ),
  234. 'type' => 'all',
  235. 'order' => array('id', 'desc'),
  236. 'col' => '*',
  237. ),
  238. # get 根据role的id取多条数据
  239. 'get' => array
  240. (
  241. # 匹配的正则或函数 选填项
  242. 'where' => array
  243. (
  244. 'id' => array('is_string', 'in'),
  245. ),
  246. 'type' => 'all',
  247. 'order' => array('id', 'desc'),
  248. 'col' => '*|id',
  249. ),
  250. ),
  251. );