|
@@ -0,0 +1,443 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+$audit = Dever::config('base')->audit;
|
|
|
+
|
|
|
+$status = Dever::config('base')->status;
|
|
|
+
|
|
|
+
|
|
|
+$page = 10;
|
|
|
+
|
|
|
+$cate = function()
|
|
|
+{
|
|
|
+ $array = array();
|
|
|
+ $info = Dever::db('article/cate')->state();
|
|
|
+ if($info)
|
|
|
+ {
|
|
|
+ $array += $info;
|
|
|
+ }
|
|
|
+ return $array;
|
|
|
+};
|
|
|
+
|
|
|
+$author = function()
|
|
|
+{
|
|
|
+ $array = array();
|
|
|
+ $info = Dever::db('article/author')->state();
|
|
|
+ if($info)
|
|
|
+ {
|
|
|
+ $array += $info;
|
|
|
+ }
|
|
|
+ return $array;
|
|
|
+};
|
|
|
+
|
|
|
+$share = array
|
|
|
+(
|
|
|
+ 1 => '显示',
|
|
|
+ 2 => '不显示',
|
|
|
+);
|
|
|
+
|
|
|
+$template = array
|
|
|
+(
|
|
|
+ 1 => '图文',
|
|
|
+ 2 => '视频',
|
|
|
+);
|
|
|
+
|
|
|
+
|
|
|
+$col = 'id,cate_id,name,pic_cover,num_add_view+num_view as num_view,content,author_id,template,`desc`,video,cdate';
|
|
|
+
|
|
|
+return array
|
|
|
+(
|
|
|
+
|
|
|
+ 'name' => 'info',
|
|
|
+
|
|
|
+ 'lang' => '文章管理',
|
|
|
+ 'order' => 100,
|
|
|
+ 'end' => array
|
|
|
+ (
|
|
|
+ 'insert' => 'article/lib/author.data?source_table=article/info',
|
|
|
+ 'update' => 'article/lib/author.data?source_table=article/info',
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ '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("article/cate-one#name", {cate_id})',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'author_id' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '编辑',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '编辑',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'update' => 'select',
|
|
|
+
|
|
|
+ 'search' => 'select',
|
|
|
+ 'update_search' => 'article/lib/author.search',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'pic_cover' => array
|
|
|
+ (
|
|
|
+ 'type' => 'text-255',
|
|
|
+ 'name' => '封面图-可以上传多张,也可以不传,不传则自动从内容中获取',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '封面图',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'images',
|
|
|
+ 'key' => '1',
|
|
|
+ 'place' => '345*200',
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'template' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '文章模板',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '文章模板',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'update' => 'radio',
|
|
|
+ 'option' => $template,
|
|
|
+ 'search' => 'select',
|
|
|
+ 'control' => 'template',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'video' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-800',
|
|
|
+
|
|
|
+ 'name' => '上传视频-上传视频格式mp4,mov,上传大小不能超过4G,也可以直接填入mp4地址',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '上传视频',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'upload',
|
|
|
+ 'key' => '5',
|
|
|
+ 'place' => '150',
|
|
|
+ 'upload' => 'yun',
|
|
|
+ 'large' => true,
|
|
|
+
|
|
|
+ 'cover' => 2,
|
|
|
+ 'show' => 'template=2',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'video_info' => array
|
|
|
+ (
|
|
|
+ 'type' => 'text-255',
|
|
|
+ 'name' => '视频信息',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '视频信息',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'show' => 'template=2',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'num_add_view' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '浏览量基数',
|
|
|
+ 'default' => '0',
|
|
|
+ 'desc' => '浏览量基数',
|
|
|
+ 'match' => 'option',
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'num_view' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '浏览量',
|
|
|
+ 'default' => '0',
|
|
|
+ 'desc' => '请填写浏览量',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'search' => 'order',
|
|
|
+ 'list' => '{num_view}+{num_add_view}',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'pdate' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '发布时间',
|
|
|
+ 'match' => array('is_numeric', time()),
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '',
|
|
|
+ 'update' => 'date',
|
|
|
+ 'callback' => 'maketime',
|
|
|
+ 'insert' => true,
|
|
|
+
|
|
|
+ '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' => '',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'content' => array
|
|
|
+ (
|
|
|
+ 'type' => 'text-255',
|
|
|
+ 'name' => '内容',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '请输入内容',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'editor',
|
|
|
+ 'key' => '1',
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ 'editors' => array
|
|
|
+ (
|
|
|
+ 'name' => '选择插入模块',
|
|
|
+ 'button' => array
|
|
|
+ (
|
|
|
+ array
|
|
|
+ (
|
|
|
+ 'name' => '视频',
|
|
|
+ 'key' => 'article/lib/article.vod',
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'status' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '发布状态',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '发布状态',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+
|
|
|
+ 'option' => $status,
|
|
|
+ 'search' => 'select',
|
|
|
+ 'list' => true,
|
|
|
+ 'edit' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'source_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' => true,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ 'index' => array
|
|
|
+ (
|
|
|
+ 'version' => 1,
|
|
|
+
|
|
|
+ 1 => array
|
|
|
+ (
|
|
|
+ 'i1' => 'cate_id,reorder',
|
|
|
+ )
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ 'manage' => array
|
|
|
+ (
|
|
|
+
|
|
|
+
|
|
|
+ 'list_button' => array
|
|
|
+ (
|
|
|
+
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ '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,
|
|
|
+ ),
|
|
|
+
|
|
|
+ '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', '+='),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+);
|