1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- $config['base'] = array
- (
- 'name' => '虚拟人社区',
- 'version' => '1.0.0 Beta',
-
- 'table' => array
- (
- 1 => '造物主',
- 2 => '虚拟人',
- 3 => '资讯',
- 4 => '专题',
- 5 => '视频',
- 6 => '活动',
- ),
-
- 'table_name' => array
- (
- 1 => array('content/creater', 'creater_id'),
- 2 => array('content/xuniren', 'xuniren_id'),
- 3 => array('content/news', 'news_id'),
- 4 => array('content/news', 'feature_id'),
- 5 => array('content/news', 'vod_id'),
- 6 => array('content/news', 'act_id'),
- ),
- 'audit' => array
- (
- 1 => '已审核',
- 2 => '未审核',
- 3 => '审核未通过',
- ),
-
- 'status' => array
- (
- 1 => '上线发布',
- 2 => '下架',
- ),
-
-
- 'replace' => array('http://8.131.66.239/' =>'http://virtualbeings.cn/'),
- );
- $config['template'] = array
- (
-
-
- 'assets' => 'xuniren',
-
- 'template' => 'xuniren',
-
- 'path' => '',
- 'replace' => array
- (
- 'css' => 'css/',
- 'js' => 'js/',
- 'images' => 'images/',
- 'script' => 'script/',
- 'static' => './static/',
- ),
-
- 'relation' => array
- (
-
- 'home' => 'index',
- ),
-
- );
- return $config;
|