123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- $type = array
- (
- 1 => '链接',
- 2 => '推送位',
- 3 => '新闻',
- 4 => '业务',
- 5 => '案例',
- );
- return array
- (
- # 表名
- 'name' => 'contact',
- # 显示给用户看的名称
- 'lang' => '联系我们',
- 'order' => -8,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'list' => true,
- ),
-
- 'name' => array
- (
- 'type' => 'varchar-120',
- 'name' => '姓名',
- 'default' => '',
- 'desc' => '姓名',
- 'match' => 'is_string',
- 'search' => 'fulltext',
- 'update' => 'text',
- 'list' => true,
- ),
- 'address' => array
- (
- 'type' => 'varchar-500',
- 'name' => '地址',
- 'default' => '',
- 'desc' => '地址',
- 'match' => 'is_string',
- 'update' => 'textare',
- 'list' => true,
- ),
- 'mobile' => array
- (
- 'type' => 'varchar-120',
- 'name' => '电话',
- 'default' => '',
- 'desc' => '电话',
- 'match' => 'is_string',
- 'update' => 'text',
- 'list' => true,
- ),
- 'email' => array
- (
- 'type' => 'varchar-120',
- 'name' => '电子邮箱',
- 'default' => '',
- 'desc' => '电子邮箱',
- 'match' => 'is_string',
- 'update' => 'text',
- 'list' => true,
- ),
-
- '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,
- 'list' => 'date("Y-m-d H:i", {cdate})',
- ),
- ),
- 'manage' => array
- (
- 'lang' => 'name,address',
- ),
- );
|