123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- // +—————————————————————————————————————————————————————————————————————
- // | Created by Yunbao
- // +—————————————————————————————————————————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +—————————————————————————————————————————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +—————————————————————————————————————————————————————————————————————
- // | Date: 2022-04-30
- // +—————————————————————————————————————————————————————————————————————
- 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()
- {
- $post = $this->request->post();
- $storage = cmf_get_option('storage');
- $storage['type'] = $post['type'];
- cmf_set_option('storage', $storage);
- $this->success("设置成功!", '');
- }
- }
|