log.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | log.php 日志表
  5. |--------------------------------------------------------------------------
  6. */
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'log',
  11. # 显示给用户看的名称
  12. 'lang' => '管理操作日志',
  13. # 数据结构
  14. 'struct' => array
  15. (
  16. 'id' => array
  17. (
  18. 'type' => 'int-11',
  19. 'name' => 'ID',
  20. 'default' => '',
  21. 'desc' => '',
  22. 'match' => 'is_numeric',
  23. ),
  24. 'project' => array
  25. (
  26. 'type' => 'varchar-32',
  27. 'name' => '项目名',
  28. 'default' => '',
  29. 'desc' => '请输入项目名',
  30. 'match' => 'is_string',
  31. 'list' => 'Maze::load("manage/project.name", "{project}")',
  32. ),
  33. 'table' => array
  34. (
  35. 'type' => 'varchar-32',
  36. 'name' => '项目下的表名',
  37. 'default' => '',
  38. 'desc' => '项目下的表名',
  39. 'match' => 'is_string',
  40. 'list' => 'Maze::load("manage/database.getTableName", array("{project}", "{table}"))',
  41. ),
  42. 'info' => array
  43. (
  44. 'type' => 'text-255',
  45. 'name' => '日志记录',
  46. 'default' => '',
  47. 'desc' => '日志记录',
  48. 'match' => 'is_string',
  49. 'list' => 'base64_decode("{info}")',
  50. 'modal' => '查看详情',
  51. ),
  52. 'admin' => array
  53. (
  54. 'type' => 'int-11',
  55. 'name' => '操作人',
  56. 'default' => '',
  57. 'desc' => '操作人',
  58. 'match' => 'is_string',
  59. 'list' => 'Maze::load("manage/admin-one#username", {admin})',
  60. ),
  61. 'tid' => array
  62. (
  63. 'type' => 'int-11',
  64. 'name' => '来源表id',
  65. 'default' => '',
  66. 'desc' => '来源表id',
  67. 'match' => 'is_string',
  68. ),
  69. 'state' => array
  70. (
  71. 'type' => 'tinyint-1',
  72. 'name' => '状态',
  73. 'default' => '1',
  74. 'desc' => '请选择状态',
  75. 'match' => 'option',
  76. ),
  77. 'cdate' => array
  78. (
  79. 'type' => 'int-11',
  80. 'name' => '操作时间',
  81. 'match' => array('is_numeric', time()),
  82. 'desc' => '',
  83. # 只有insert时才生效
  84. 'insert' => true,
  85. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  86. ),
  87. ),
  88. # 索引
  89. 'index' => array
  90. (
  91. # 索引名 => 索引id
  92. //'id' => 'id,state',
  93. ),
  94. # request 请求接口定义
  95. 'request' => array
  96. (
  97. # onload 增加hack功能 使用该请求接口必须首先载入的类 如果需要子项也添加类似功能,可以使用start、end
  98. 'onload' => 'manage/auth.init',//这个是权限验证,必须后台登录
  99. ),
  100. );