123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- $type = function()
- {
- $array = array
- (
- // -1 => array
- // (
- // 'id' => '-1',
- // 'name' => '无来源',
- // ),
- );
- $data = Dever::load('sms/lib/base')->type();
- if($data)
- {
- $array += $data;
- }
- return $array;
- };
- $name = Dever::input('search_option_name');
- $mobile = Dever::input('search_option_mobile');
- return array
- (
- # 表名
- 'name' => 'template',
- # 显示给用户看的名称
- 'lang' => '短息发送模板',
- 'end' => array
- (
- 'insert' => 'sms/lib/base.templateUpdate',
- 'update' => 'sms/lib/base.templateUpdate',
- ),
- 'menu' => false,
- # 数据结构
- 'struct' => array
- (
-
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- //'list' => true,
- ),
- 'type' => array
- (
- 'type' => 'varchar-2000',
- 'name' => '类型',
- 'default' => '',
- 'desc' => '类型',
- 'match' => 'is_string',
- 'option' => $type,
- 'update' => 'radio',
- 'list' => true,
- ),
- 'name' => array
- (
- 'type' => 'varchar-100',
- 'name' => '名称',
- 'default' => $name,
- 'desc' => '名称',
- 'match' => 'is_string',
- 'update' => 'text',
- 'list' => true,
- ),
-
- 'content' => array
- (
- 'type' => 'varchar-800',
- 'name' => '未审核通过内容',
- 'default' => '',
- 'desc' => '未审核通过内容',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'mobile' => array
- (
- 'type' => 'bigint-11',
- 'name' => '手机号',
- 'default' => $mobile,
- 'desc' => '请输入手机号',
- 'match' => Dever::rule('mobile'),
- 'update' => 'hidden',
- ),
- '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,
- 'search' => 'date',
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- 'manage' => array
- (
- 'insert' => false,
- 'delete' => false,
- 'edit' => false,
- ),
- 'request' => array
- (
-
- )
- );
|