123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- <?php
- $status = Dever::config('base')->status;
- # 每页的数据量
- $page = 12;
- $cate = function()
- {
- $array = array();
- $info = Dever::db('content/cate')->select(array('type' => 3));
- if($info)
- {
- $array += $info;
- }
- return $array;
- };
- $author = function()
- {
- $array = array();
- $info = Dever::db('content/author')->state();
- if($info)
- {
- $array += $info;
- }
- return $array;
- };
- $yes = array
- (
- 1 => '是',
- 2 => '否',
- );
- # 常用的col
- $col = 'id,cate_id,name,pic_cover,video,num_add_view+num_view as num_view,num_add_up+num_up as num_up,author_id,`desc`,pdate,cdate,tag';
- return array
- (
- # 表名
- 'name' => 'video',
- # 显示给用户看的名称
- 'lang' => '视频管理',
- 'order' => 98,
- # 同步更新另外一个或多个表的数据
- 'syncone' => array
- (
- 'content/search' => array
- (
- # 更新另外一个表的字段 => 本表的字段
- 'where' => array('data_id' => 'id', 'type' => 3),
- # 要更新的数据
- 'update' => array('data_id' => 'id', 'type' => 3, 'pdate' => 'pdate', 'reorder' => 'reorder', 'name' => 'name', 'status' => 'status', 'cate_id' => 'cate_id', 'state' => 'state'),
- )
- ),
- 'end' => array
- (
- 'insert' => array('content/lib/author.data?source_table=content/video','tag/lib/core.data?source_table=content/video'),
- 'update' => array('content/lib/author.data?source_table=content/video','tag/lib/core.data?source_table=content/video'),
- ),
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'list' => true,
- ),
-
- 'name' => array
- (
- 'type' => 'varchar-80',
- 'name' => '标题',
- 'default' => '',
- 'desc' => '标题',
- 'match' => 'is_string',
- 'update' => 'text',
- 'list' => true,
- 'search' => 'fulltext',
- //增加预览
- 'preview' => true,
- ),
- 'desc' => array
- (
- 'type' => 'varchar-500',
- 'name' => '摘要',
- 'default' => '',
- 'desc' => '摘要',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- 'cate_id' => array
- (
- 'type' => 'int-11',
- 'name' => '所属栏目',
- 'default' => '1',
- 'desc' => '所属栏目',
- 'match' => 'is_numeric',
- 'update' => 'select',
- 'option' => $cate,
- 'search' => 'select',
- 'list' => 'Dever::load("content/cate-one#name", {cate_id})',
- ),
- 'author_id' => array
- (
- 'type' => 'int-11',
- 'name' => '作者',
- 'default' => '1',
- 'desc' => '作者',
- 'match' => 'is_numeric',
- 'update' => 'select',
- //'option' => $author,
- 'search' => 'select',
- 'update_search' => 'content/lib/author.search',
- ),
- 'video' => array
- (
- 'type' => 'varchar-800',
- 'name' => '上传视频-视频格式mp4,上传大小不能超过4G',
- 'default' => '',
- 'desc' => '上传视频',
- 'match' => 'is_string',
- 'update' => 'video',
- 'key' => '3',
- 'place' => '150',
- 'upload' => 'yun',
- 'large' => true,
- 'cover' => 'pic_cover',//封面图字段名
- ),
- 'video_info' => array
- (
- 'type' => 'text-255',
- 'name' => '视频信息',
- 'default' => '',
- 'desc' => '视频信息',
- 'match' => 'is_string',
- ),
- 'pic_cover' => array
- (
- 'type' => 'varchar-150',
- 'name' => '封面图',
- 'default' => '',
- 'desc' => '封面图',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '345*200',
- ),
- 'tag' => array
- (
- 'type' => 'text-255',
- 'name' => '标签',
- 'default' => '',
- 'desc' => '标签',
- 'match' => 'is_numeric',
- 'update' => 'selects',
- //'search' => 'fulltext',
- 'update_search' => 'tag/lib/core.search',
- ),
- 'num_add_view' => array
- (
- 'type' => 'int-11',
- 'name' => '浏览量基数',
- 'default' => '0',
- 'desc' => '浏览量基数',
- 'match' => 'option',
- //'update' => 'text',
- ),
- 'num_view' => array
- (
- 'type' => 'int-11',
- 'name' => '浏览量',
- 'default' => '0',
- 'desc' => '请填写浏览量',
- 'match' => 'option',
- 'search' => 'order',
- 'list' => '{num_view}+{num_add_view}',
- ),
- 'num_add_up' => array
- (
- 'type' => 'int-11',
- 'name' => '点赞量基数',
- 'default' => '0',
- 'desc' => '点赞量基数',
- 'match' => 'option',
- //'update' => 'text',
- ),
- 'num_up' => array
- (
- 'type' => 'int-11',
- 'name' => '点赞量',
- 'default' => '0',
- 'desc' => '请填写点赞量',
- 'match' => 'option',
- 'search' => 'order',
- 'list' => '{num_up}+{num_add_up}',
- ),
- 'top' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '是否精选推荐',
- 'default' => '2',
- 'desc' => '是否精选推荐',
- 'match' => 'is_numeric',
- 'update' => 'radio',
- 'option' => $yes,
- ),
- 'pdate' => array
- (
- 'type' => 'int-11',
- 'name' => '发布时间',
- 'match' => array('is_numeric', time()),
- 'default' => '',
- 'desc' => '',
- 'update' => 'date',
- 'callback' => 'maketime',
- 'insert' => true,
- //'list' => 'date("Y-m-d H:i:s", {pdate})',
- 'auth' => '"{pdate}" > 0',
- ),
- 'reorder' => array
- (
- 'type' => 'int-11',
- 'name' => '排序(数值越大越靠前)',
- 'default' => '1',
- 'desc' => '请输入排序',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'order',
- 'list' => true,
- 'order' => 'desc',
- 'edit' => true,
- ),
- 'udate' => array
- (
- 'type' => 'int-11',
- 'name' => '更新时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- ),
- 'status' => array
- (
- 'type' => 'int-11',
- 'name' => '发布状态',
- 'default' => '1',
- 'desc' => '发布状态',
- 'match' => 'is_numeric',
- //'update' => 'select',
- 'option' => $status,
- 'search' => 'select',
- 'list' => true,
- 'edit' => true,
- ),
- 'spider_data_id'=> array
- (
- 'type' => 'int-11',
- 'name' => '采集数据id',
- 'default' => '0',
- 'desc' => '采集数据id',
- 'match' => 'is_numeric',
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
- 'admin_founder' => array
- (
- 'type' => 'int-11',
- 'name' => '创建人',
- 'default' => '1',
- 'desc' => '创建人',
- 'match' => 'is_numeric',
- ),
- 'admin_editor' => array
- (
- 'type' => 'int-11',
- 'name' => '操作人',
- 'default' => '1',
- 'desc' => '操作人',
- 'match' => 'is_numeric',
- ),
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '录入时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- ),
- ),
- # 索引
- 'index' => array
- (
- 'version' => 1,
-
- 1 => array
- (
- 'i1' => 'cate_id,reorder',
- )
- ),
-
- # 管理功能
- 'manage' => array
- (
- //'insert' => false,
- # 列表
- 'list_button' => array
- (
- //'edit' => array('预览', str_replace('https://api.', 'http://www.', Dever::url('main/preview.get?type=1'))),
- ),
- ),
- # request 请求接口定义
- 'request' => array
- (
- 'search' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'ids' => array('yes-id', 'in'),
- 'cate_id' => 'yes',
- 'name' => array('yes', 'like'),
- 'id' => 'yes',
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc', 'pdate' => 'desc'),
- 'limit' => '0,1000',
- 'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
- ),
- 'getAll' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'cate_id' => 'yes',
- 'cate_ids' => array('yes-cate_id', 'in'),
- 'id' => 'yes',
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc','pdate' => 'desc'),
- 'page' => array($page, 'list'),
- 'col' => $col,
- ),
- # 获取首页推荐
- 'getTop' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'cate_id' => 'yes',
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('top' => 'asc', 'reorder' => 'desc','pdate' => 'desc'),
- 'limit' => '0,4',
- 'col' => $col,
- ),
- 'getList' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'cate_id' => 'yes',
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc','pdate' => 'desc'),
- 'limit' => '0,10',
- 'col' => $col,
- ),
- 'getRelation' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'cate_id' => 'yes',
- 'cate_ids' => array('yes-cate_id', 'in'),
- 'noid' => array('yes-id', '!='),
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('reorder' => 'desc','pdate' => 'desc'),
- 'limit' => '0,2',
- 'col' => $col,
- ),
- 'getOne' => array
- (
- # 匹配的正则或函数 选填项
- 'where' => array
- (
- 'id' => 'yes',
- ),
- 'type' => 'one',
- 'col' => $col,
- ),
-
- # 更新浏览量
- 'addView' => array
- (
- 'type' => 'update',
- 'where' => array
- (
- 'id' => 'yes',
- ),
- 'set' => array
- (
- 'num_view' => array('1', '+='),
- ),
- ),
- # 更新点赞量
- 'addUp' => array
- (
- 'type' => 'update',
- 'where' => array
- (
- 'id' => 'yes',
- ),
- 'set' => array
- (
- 'num_up' => array('1', '+='),
- ),
- ),
- 'findPrev' => array
- (
- # 匹配的正则或函数 选填项
- 'where' => array
- (
- 'cate_id' => 'yes',
- 'id' => array('yes', '<'),
- 'status' => 1,
- 'state' => 1,
- ),
- 'type' => 'one',
- 'order' => array('reorder' => 'desc','pdate' => 'desc'),
- 'col' => $col,
- ),
- 'findNext' => array
- (
- # 匹配的正则或函数 选填项
- 'where' => array
- (
- 'cate_id' => 'yes',
- 'id' => array('yes', '>'),
- 'status' => 1,
- 'state' => 1,
- ),
- 'order' => array('reorder' => 'asc','pdate' => 'asc'),
- 'type' => 'one',
- 'col' => $col,
- ),
- ),
- );
|