| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-present http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 老猫 <zxxjjforever@163.com>
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use cmf\controller\AdminBaseController;
- class StorageController extends AdminBaseController
- {
- /**
- * 文件存储
- * @adminMenu(
- * 'name' => '文件存储',
- * 'parent' => 'admin/Setting/default',
- * 'display'=> true,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '文件存储',
- * 'param' => ''
- * )
- */
- public function index()
- {
- $storage = cmf_get_option('storage');
- if (empty($storage)) {
- $storage['type'] = 'Local';
- $storage['storages'] = ['Local' => ['name' => '本地']];
- } else {
- if (empty($storage['type'])) {
- $storage['type'] = 'Local';
- }
- if (empty($storage['storages']['Local'])) {
- $storage['storages']['Local'] = ['name' => '本地'];
- }
- }
- $this->assign($storage);
- return $this->fetch();
- }
- /**
- * 文件存储
- * @adminMenu(
- * 'name' => '文件存储设置提交',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '文件存储设置提交',
- * 'param' => ''
- * )
- */
- public function settingPost()
- {
- if ($this->request->isPost()) {
- $post = $this->request->post();
- $storage = cmf_get_option('storage');
- $storage['type'] = $post['type'];
- cmf_set_option('storage', $storage);
- $this->success("设置成功!", '');
- }
- }
- }
|