123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- $ios_pay = array
- (
- 1 => '关闭小程序支付',
- 2 => '开启公众号支付',
- 3 => '开启小程序支付',
- );
- $video = array
- (
- 1 => '显示',
- 2 => '不显示',
- );
- return array
- (
- # 表名
- 'name' => 'config',
- # 显示给用户看的名称
- 'lang' => '基本配置',
- 'order' => 1,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => '系统ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- ),
-
- 'hr1' => array
- (
- 'name' => '通用设置',
- 'class' => '',//本项必须填写
- 'attr' => '',
- ),
-
-
- 'name' => array
- (
- 'type' => 'varchar-32',
- 'name' => '站点名称',
- 'default' => '',
- 'desc' => '请输入站点名称',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
-
- 'info' => array
- (
- 'type' => 'text-255',
- 'name' => '站点名称',
- 'default' => '',
- 'desc' => '请输入站点名称',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'logo' => array
- (
- 'type' => 'varchar-150',
- 'name' => 'logo图片',
- 'default' => '',
- 'desc' => 'logo图片',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '150',
- ),
- 'email_link' => array
- (
- 'type' => 'varchar-300',
- 'name' => '企业邮箱登录地址',
- 'default' => '',
- 'desc' => '企业邮箱登录地址',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'buy_link' => array
- (
- 'type' => 'varchar-300',
- 'name' => '报刊订阅链接',
- 'default' => '',
- 'desc' => '报刊订阅链接',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'foot' => array
- (
- 'type' => 'text-255',
- 'name' => '底部联系信息',
- 'default' => '',
- 'desc' => '底部联系信息',
- 'match' => 'option',
- 'update' => 'editor',
- ),
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '录入时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- ),
- ),
- 'default' => array
- (
- 'col' => 'name,info,cdate',
- 'value' => array
- (
- '"SG精品网","SG精品网",' . time(),
- ),
- ),
- 'manage' => array
- (
- # 后台管理不要列表页
- 'list' => 'update',
- ),
- );
|