27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | ||
| // +----------------------------------------------------------------------
 | ||
| // | ThinkPHP [ WE CAN DO IT JUST THINK ]
 | ||
| // +----------------------------------------------------------------------
 | ||
| // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
 | ||
| // +----------------------------------------------------------------------
 | ||
| // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
 | ||
| // +----------------------------------------------------------------------
 | ||
| // | Author: liu21st <liu21st@gmail.com>
 | ||
| // +----------------------------------------------------------------------
 | ||
| 
 | ||
| return [
 | ||
|     // 站点名称
 | ||
|     'name' => '云泽科技',
 | ||
|     // 联系电话
 | ||
|     'phone' => '188-1152-3967',
 | ||
|     // 联系邮箱
 | ||
|     'email' => '357099073@qq.com',
 | ||
|     // 微信二维码
 | ||
|     'wechat_qrcode' => '/static/images/wechat_qrcode.jpg',
 | ||
|     // 网站Logo
 | ||
|     'logo' => '/static/images/logo.png',
 | ||
|     // 网站Logo(深色)
 | ||
|     'logo1' => '/static/images/logo1.png',
 | ||
|     // 后台路由前缀
 | ||
|     'admin_route' => '/admin/'
 | ||
| ]; 
 |