123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- <?php
- # 显示的页面
- /*
- $curPage = Dever::input('search_option_page_id');
- $page = function()
- {
- $parent = Dever::db('push/page')->getParent();
- $child = Dever::db('push/page')->getChild();
- foreach ($parent as $k => $v) {
- $parent[$k]['child'] = $child[$v['id']];
- }
- $array = array(-1 => array('id' => -1, 'name' => '无'));
- if ($parent) {
- $array += $parent;
- }
- return $array;
- };
- */
- $type = array
- (
- 1 => '手动输入',
- /*
- 2 => '调取其他推送位',
- 3 => '预定义方法',
- 4 => '自定义方法',
- 5 => '自定义SQL',
- 6 => '自定义接口',
- */
- );
- //$define = Dever::config('base')->module;
- $function = Dever::config('base')->table;
- $function[10] = '外链接';
- $col = array
- (
- 1 => '标题',
- 2 => '副标题',
- 3 => '链接',
- 4 => '作者',
- 5 => '图片',
- 6 => '描述',
- 7 => '发布时间',
- );
- return array
- (
- # 表名
- 'name' => 'info',
- # 显示给用户看的名称
- 'lang' => '推送位管理',
- 'order' => 10,
- 'check' => 'key',
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => '推送位ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- //'search' => 'order',
- 'order' => 'desc',
- //'list' => true,
- ),
-
- 'name' => array
- (
- 'type' => 'varchar-60',
- 'name' => '推送位标题',
- 'default' => '',
- 'desc' => '请输入推送位标题',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- 'edit' => true,
- ),
- 'key' => array
- (
- 'type' => 'varchar-60',
- 'name' => '推送位标识',
- 'default' => '',
- 'desc' => '推送位标识',
- 'match' => 'is_string',
- 'update' => Dever::input('where_id') ? 'hidden' : 'text',
- 'search' => 'fulltext',
- 'list' => true,
- //'auth' => '!{key}'
- ),
- 'num' => array
- (
- 'type' => 'int-11',
- 'name' => '数据显示条数-为空或小于0则取默认值20,只对前台有效,当有分页时,则为每页显示的条数',
- 'default' => '20',
- 'desc' => '数据显示条数',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'list' => true,
- 'edit' => true,
- ),
- 'type' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '推送位类型',
- 'default' => '1',
- 'desc' => '请选择推送位类型',
- 'match' => 'is_numeric',
- 'option' => $type,
- 'update' => 'radio',
- 'search' => 'select',
- //'list' => true,
- 'control' => 'type',
- ),
- /*
- 'data_type' => array
- (
- 'type' => 'varchar-50',
- 'name' => '数据类型定义-多个用换行隔开,必须有一个值,主要用于该推送位有多种不同类型的值',
- 'default' => '默认类型',
- 'desc' => '请选择推送位类型',
- 'match' => 'is_string',
- //'update' => 'textarea',
- //'show' => array('type_1'),
- ),
- 'code' => array
- (
- 'type' => 'varchar-500',
- 'name' => '自定义内容',
- 'default' => '',
- 'desc' => '请输入自定义内容',
- 'match' => 'is_string',
- 'update' => 'textarea',
- 'show' => 'type=4,5,6',
- ),
- 'sql_method' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '选择sql执行之后的方法',
- 'default' => '1',
- 'desc' => '选择sql执行之后的方法',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $sqlMethod,
- 'show' => 'type=5',
- ),
- 'define' => array
- (
- 'type' => 'varchar-100',
- 'name' => '选择预定义方法',
- 'default' => '',
- 'desc' => '请选择预定义方法',
- 'match' => 'is_string',
- 'update' => 'select',
- 'option' => $define,
- 'show' => 'type=3'
- ),
- */
- 'function' => array
- (
- 'type' => 'varchar-30',
- 'name' => '启用的功能',
- 'default' => '1',
- 'desc' => '启用的功能',
- 'match' => 'is_string',
- 'option' => $function,
- 'update' => 'checkbox',
- 'show' => 'type=1',
- ),
- 'col' => array
- (
- 'type' => 'varchar-30',
- 'name' => '启用的字段',
- 'default' => '1',
- 'desc' => '请选择启用的字段',
- 'match' => 'is_string',
- 'option' => $col,
- 'update' => 'checkbox',
- 'show' => 'type=1',
- 'control' => 'col',
- ),
- 'col_pic' => array
- (
- 'type' => 'varchar-20',
- 'name' => '图片尺寸提醒-请直接输入提醒的文字即可,如100*100',
- 'default' => '',
- 'desc' => '图片尺寸提醒',
- 'match' => 'is_string',
- 'update' => 'text',
- 'show' => 'col=5',
- ),
- 'col_content' => array
- (
- 'type' => 'int-11',
- 'name' => '内容长度限制-必须是数字',
- 'default' => '30',
- 'desc' => '内容长度限制',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'show' => 'col=6',
- ),
- /*
- 'relate_id' => array
- (
- 'type' => 'int-11',
- 'name' => '请输入推送位id',
- 'default' => '',
- 'desc' => '请输入推送位id',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'show' => 'type=2',
- ),
- 'preview' => array
- (
- 'type' => 'varchar-200',
- 'name' => '推送位预览地址',
- 'default' => '',
- 'desc' => '推送位预览地址',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'preview_height' => array
- (
- 'type' => 'int-11',
- 'name' => '推送位预览的高度',
- 'default' => '500',
- 'desc' => '推送位预览的高度',
- 'match' => 'option',
- 'update' => 'text',
- ),
- */
-
- 'reorder' => array
- (
- 'type' => 'int-11',
- 'name' => '排序(数值越大越靠前)',
- 'default' => '1',
- 'desc' => '请输入排序',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'order',
- 'list_name' => '排序',
- 'list' => true,
- 'order' => 'desc',
- //'edit' => true,
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '录入时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- # 权限精细控制 加入到该项目的详细权限中,注意与top的不同
- /*
- 'auth' => array
- (
- # 数据来源
- 'data' => 'all',
- # 所属项目
- 'project' => 'module',
- # 项目名称
- 'project_name' => '推送位管理',
- ),
- */
- 'manage' => array
- (
- 'delete' => false,
- //'edit' => false,
- //'insert' => $curPage ? true : false,
- 'list_button' => array
- (
- 'add' => array('新增数据', '"data&search_option_info_id={id}&oper_parent=info"', '{type} == 1'),
- 'list' => array('数据列表', '"data&search_option_info_id={id}&oper_parent=info"'),
- ),
- ),
- # request 请求接口定义
- 'request' => array
- (
- # 获取列表页
- 'getAll' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'type' => 'yes',
- //'page_id' => 'yes',
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc'),
- 'col' => '*',
- ),
- ),
- );
|