123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- $type = array
- (
- 1 => '链接',
- 2 => '推送位',
- 3 => '新闻',
- 4 => '业务',
- 5 => '案例',
- );
- return array
- (
- # 表名
- 'name' => 'menu',
- # 显示给用户看的名称
- 'lang' => '网站菜单管理',
- 'order' => -9,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'list' => true,
- ),
-
- 'name' => array
- (
- 'type' => 'varchar-32',
- 'name' => 'Menu Name',
- 'default' => '',
- 'desc' => '请输入菜单名称',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'link' => array
- (
- 'type' => 'varchar-2000',
- 'name' => 'Menu Link',
- 'default' => '',
- 'desc' => '菜单链接',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- 'reorder' => array
- (
- 'type' => 'int-11',
- 'name' => 'Sort-数值越大越靠前,相当于置顶',
- 'default' => '1',
- 'desc' => '请输入排序',
- 'match' => 'option',
- //'update' => 'text',
- 'search' => 'order',
- 'list' => true,
- 'order' => 'desc',
- 'edit' => true,
- ),
-
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => 'Date',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'list' => 'date("Y-m-d H:i", {cdate})',
- ),
- ),
- 'manage' => array
- (
- 'lang' => 'name',
- ),
- 'default' => array
- (
- 'col' => 'name,link,cdate',
- 'value' => array
- (
- '"首页","home",' . time(),
- ),
- ),
- );
|