更新目录结构

This commit is contained in:
molong
2022-04-29 20:26:03 +08:00
parent 4ef43e0258
commit ca1fbd6fd1
89 changed files with 529 additions and 381 deletions

View File

@@ -0,0 +1,85 @@
<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace app\model\system;
use think\facade\Cache;
use think\Model;
class Config extends Model {
public function getValuesAttr($value, $data) {
return self::parse($data['type'], $data['value']);
}
public static function getConfigList($request) {
$map[] = ['status', '=', 1];
$data = self::where($map)->field('type,name,value')->select();
$config = array();
if ($data) {
foreach ($data->toArray() as $value) {
$config[$value['name']] = self::parse($value['type'], $value['value']);
}
}
return $config;
}
public function getConfig($request) {
$map[] = ['status', '=', 1];
$data = self::where($map)->select()->append(['values']);
return $data;
}
public function getConfigTree($request) {
$map[] = ['status', '=', 1];
$data = self::where($map)->select();
$group = Cache::get('config')['config_group_list'];
$config = [];
foreach ($data->toArray() as $value) {
if (isset($group[$value['group']])) {
$config[$group[$value['group']]][] = $value;
}
}
return $config;
}
/**
* 根据配置类型解析配置
* @param integer $type 配置类型
* @param string $value 配置值
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
*/
private static function parse($type, $value) {
$data = [];
switch ($type) {
case 'textarea': //解析数组
$array = preg_split('/[,;\r\n]+/', trim($value, ",;\r\n"));
if (strpos($value, ':')) {
foreach ($array as $val) {
$list = explode(':', $val);
if (isset($list[2])) {
$data[] = ['key' => is_numeric($list[0]) ? (int) $list[0] : $list[0], 'value' => $list[1], 'label' => $list[1], 'other' => $list[2]];
} else {
$data[] = ['key' => is_numeric($list[0]) ? (int) $list[0] : $list[0], 'value' => $list[1], 'label' => $list[1]];
}
}
} else {
foreach ($array as $key => $val) {
$data[] = ['key' => $key, 'value' => $val, 'label' => $val];
}
}
break;
default:
return $value;
break;
}
return $data;
}
}