| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 | 
							- <?php
 
- # 定义几个常用的选项
 
- $option = array
 
- (
 
- 	1 => '正常',
 
- 	2 => '删除',
 
- );
 
- return array
 
- (
 
- 	# 表名
 
- 	'name' => 'col',
 
- 	# 显示给用户看的名称
 
- 	'lang' => '采集字段管理',
 
- 	'menu' => false,
 
- 	# 后台菜单排序
 
- 	'order' => 6,
 
- 	'desc' => 'dom解析:类似jquery的解析方式,如$("#id")->find("a")->attr("class")',
 
- 	# 数据结构
 
- 	'struct' => array
 
- 	(
 
- 	
 
- 		'id' 		=> array
 
- 		(
 
- 			'type' 		=> 'int-11',
 
- 			'name' 		=> 'ID',
 
- 			'default' 	=> '',
 
- 			'desc' 		=> '',
 
- 			'match' 	=> 'is_numeric',
 
- 			'search'	=> 'order',
 
- 			'list'		=> true,
 
- 			'order'		=> 'desc',
 
- 		),
 
- 		'name'		=> array
 
- 		(
 
- 			'type' 		=> 'varchar-100',
 
- 			'name' 		=> '字段名称',
 
- 			'default' 	=> '',
 
- 			'desc' 		=> '字段名称',
 
- 			'match' 	=> 'is_string',
 
- 			'update'	=> 'text',
 
- 			'search'	=> 'fulltext',
 
- 			'list'		=> true,
 
- 		),
 
- 		'key'		=> array
 
- 		(
 
- 			'type' 		=> 'varchar-100',
 
- 			'name' 		=> '字段唯一标识符',
 
- 			'default' 	=> '',
 
- 			'desc' 		=> '字段唯一标识符',
 
- 			'match' 	=> 'is_string',
 
- 			'update'	=> 'text',
 
- 			'search'	=> 'fulltext',
 
- 			'list'		=> true,
 
- 		),
 
- 		'project_id'		=> array
 
- 		(
 
- 			'type' 		=> 'int-11',
 
- 			'name' 		=> '项目id',
 
- 			'default' 	=> Dever::input('option_project_id', -1),
 
- 			'desc' 		=> '请选择项目id',
 
- 			'match' 	=> 'is_numeric',
 
- 			'search'	=> 'order',
 
- 		),
 
- 		
 
- 		'collect_rule'		=> array
 
- 		(
 
- 			'type' 		=> 'varchar-500',
 
- 			'name' 		=> '采集规则-支持dom解析、正则',
 
- 			'default' 	=> '',
 
- 			'desc' 		=> '采集规则',
 
- 			'match' 	=> 'is_string',
 
- 			'update'	=> 'textarea',
 
- 			'list'		=> true,
 
- 			'edit'		=> 'textarea',
 
- 		),
 
- 		'collect_include'		=> array
 
- 		(
 
- 			'type' 		=> 'varchar-500',
 
- 			'name' 		=> '包含字符-如果填写该项,则进一步过滤,只保留包含有该字符的,支持dom解析、正则',
 
- 			'default' 	=> '',
 
- 			'desc' 		=> '采集规则',
 
- 			'match' 	=> 'option',
 
- 			'update'	=> 'textarea',
 
- 		),
 
- 		'collect_exclude'		=> array
 
- 		(
 
- 			'type' 		=> 'varchar-500',
 
- 			'name' 		=> '不包含字符-如果填写该项,则进一步过滤,只保留不包含有该字符的,支持dom解析、正则',
 
- 			'default' 	=> '',
 
- 			'desc' 		=> '采集规则',
 
- 			'match' 	=> 'option',
 
- 			'update'	=> 'textarea',
 
- 		),
 
- 		'state'		=> array
 
- 		(
 
- 			'type' 		=> 'tinyint-1',
 
- 			'name' 		=> '数据状态',
 
- 			'default' 	=> '1',
 
- 			'desc' 		=> '请选择状态',
 
- 		),
 
- 		
 
- 		'cdate'		=> array
 
- 		(
 
- 			'type' 		=> 'int-11',
 
- 			'name' 		=> '录入时间',
 
- 			'match' 	=> array('is_numeric', time()),
 
- 			'desc' 		=> '',
 
- 			# 只有insert时才生效
 
- 			//'insert'	=> true,
 
- 			'list'		=> 'date("Y-m-d H:i:s", {cdate})',
 
- 		),
 
- 	),
 
- );
 
 
  |