12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- 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',
- ),
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '录入时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
-
- 'insert' => true,
- ),
- ),
- 'default' => array
- (
- 'col' => 'name,cdate',
- 'value' => array
- (
- '"信息宝",' . time(),
- ),
- ),
-
- 'manage' => array
- (
-
- 'list' => 'update',
- ),
- );
|