| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: WelkinVan <welkinvan@qq.com>
- // +----------------------------------------------------------------------
- return [
- 'logo' => [
- 'title' => '公司LOGO',
- 'type' => 'image',
- 'value' => '',
- 'tip' => '公司LOGO'
- ],
- 'copyright' => [
- 'title' => '版权',
- 'type' => 'text',
- 'value' => '广州火树网络科技有限公司',
- 'tip' => '登录页版权信息'
- ],
- 'links' => [
- 'title' => '版权链接地址',
- 'type' => 'text',
- 'value' => 'http://www.huosdk.com',
- 'tip' => '版权链接地址'
- ],
- 'image1' => [
- 'title' => '后台背景图一',
- 'type' => 'image',
- 'value' => '',
- 'tip' => '后台背景图一'
- ],
- 'image2' => [
- 'title' => '后台背景图二',
- 'type' => 'image',
- 'value' => '',
- 'tip' => '后台背景图二'
- ],
- 'image3' => [
- 'title' => '后台背景图三',
- 'type' => 'image',
- 'value' => '',
- 'tip' => '后台背景图三'
- ],
- ];
-
|