123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | log.php 日志表
- |--------------------------------------------------------------------------
- */
- return array
- (
- # 表名
- 'name' => 'log',
- # 显示给用户看的名称
- 'lang' => '管理操作日志',
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- ),
-
- 'project' => array
- (
- 'type' => 'varchar-32',
- 'name' => '项目名',
- 'default' => '',
- 'desc' => '请输入项目名',
- 'match' => 'is_string',
- 'list' => 'Maze::load("manage/project.name", "{project}")',
- ),
-
- 'table' => array
- (
- 'type' => 'varchar-32',
- 'name' => '项目下的表名',
- 'default' => '',
- 'desc' => '项目下的表名',
- 'match' => 'is_string',
- 'list' => 'Maze::load("manage/database.getTableName", array("{project}", "{table}"))',
- ),
-
- 'info' => array
- (
- 'type' => 'text-255',
- 'name' => '日志记录',
- 'default' => '',
- 'desc' => '日志记录',
- 'match' => 'is_string',
- 'list' => 'base64_decode("{info}")',
- 'modal' => '查看详情',
- ),
-
- 'admin' => array
- (
- 'type' => 'int-11',
- 'name' => '操作人',
- 'default' => '',
- 'desc' => '操作人',
- 'match' => 'is_string',
- 'list' => 'Maze::load("manage/admin-one#username", {admin})',
- ),
-
- 'tid' => array
- (
- 'type' => 'int-11',
- 'name' => '来源表id',
- 'default' => '',
- 'desc' => '来源表id',
- 'match' => 'is_string',
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'option',
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '操作时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
-
- # 索引
- 'index' => array
- (
- # 索引名 => 索引id
- //'id' => 'id,state',
- ),
-
- # request 请求接口定义
- 'request' => array
- (
- # onload 增加hack功能 使用该请求接口必须首先载入的类 如果需要子项也添加类似功能,可以使用start、end
- 'onload' => 'manage/auth.init',//这个是权限验证,必须后台登录
- ),
- );
|