123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <?php
- $home_top_type = array
- (
- 1 => '显示',
- 2 => '不显示',
- );
- return array
- (
- # 表名
- 'name' => 'config',
- # 显示给用户看的名称
- 'lang' => '网站基础信息',
- 'order' => -10,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => '平台ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- ),
-
- 'name' => array
- (
- 'type' => 'varchar-32',
- 'name' => '网站名称',
- 'default' => '',
- 'desc' => '请输入网站名称',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
- 'desc' => array
- (
- 'type' => 'varchar-2000',
- 'name' => '网站介绍',
- 'default' => '',
- 'desc' => '网站介绍',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- 'logo' => array
- (
- 'type' => 'varchar-150',
- 'name' => '网站LOGO',
- 'default' => '',
- 'desc' => '平台LOGO',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '204*59',
- ),
- 'phone_name' => array
- (
- 'type' => 'varchar-100',
- 'name' => '客服电话名称-如联系我们',
- 'default' => '',
- 'desc' => '客服电话名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'phone' => array
- (
- 'type' => 'varchar-100',
- 'name' => '客服电话',
- 'default' => '',
- 'desc' => '请输入客服电话',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'email_name' => array
- (
- 'type' => 'varchar-100',
- 'name' => '联系邮箱名称-如联系邮箱',
- 'default' => '',
- 'desc' => '联系邮箱名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'email' => array
- (
- 'type' => 'varchar-100',
- 'name' => '联系邮箱',
- 'default' => '',
- 'desc' => '请输入联系邮箱',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'facebook' => array
- (
- 'type' => 'varchar-1000',
- 'name' => 'Facebook链接',
- 'default' => '',
- 'desc' => 'facebook链接',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'twitter' => array
- (
- 'type' => 'varchar-1000',
- 'name' => 'Twitter链接',
- 'default' => '',
- 'desc' => 'Twitter链接',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'linkedin' => array
- (
- 'type' => 'varchar-1000',
- 'name' => 'LinkedIn链接',
- 'default' => '',
- 'desc' => 'LinkedIn链接',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'instagram' => array
- (
- 'type' => 'varchar-1000',
- 'name' => 'Instagram链接',
- 'default' => '',
- 'desc' => 'Instagram链接',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'company_name' => array
- (
- 'type' => 'varchar-100',
- 'name' => '关于我们名称-如关于我们',
- 'default' => '',
- 'desc' => '关于我们名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'service_name' => array
- (
- 'type' => 'varchar-100',
- 'name' => '公司业务名称-如公司业务',
- 'default' => '',
- 'desc' => '公司业务名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'foot' => array
- (
- 'type' => 'text-255',
- 'name' => '底部信息',
- 'default' => '',
- 'desc' => '底部信息',
- 'match' => 'option',
- 'update' => 'editor',
- 'key' => '1',
- ),
-
- '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,
- ),
- ),
- 'default' => array
- (
- 'col' => 'name,cdate',
- 'value' => array
- (
- '"SPAC工厂",' . time(),
- ),
- ),
- 'manage' => array
- (
- 'lang' => 'name,desc,phone_name,email_name,company_name,service_name',
- # 后台管理不要列表页
- 'list' => 'update',
- ),
- );
|