mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-29 07:00:19 +00:00
108 lines
2.8 KiB
PHP
108 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2017/11/02
|
|
*/
|
|
|
|
namespace app\admin\model\system;
|
|
|
|
use crmeb\traits\ModelTrait;
|
|
use crmeb\basic\BaseModel;
|
|
|
|
/**
|
|
* 配置分类model
|
|
* Class SystemConfigTab
|
|
* @package app\admin\model\system
|
|
*/
|
|
class SystemConfigTab extends BaseModel
|
|
{
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'system_config_tab';
|
|
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* 获取单选按钮或者多选按钮的显示值
|
|
* @param $menu_name
|
|
* @param $value
|
|
* @return string
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function getRadioOrCheckboxValueInfo($menu_name, $value)
|
|
{
|
|
$parameter = [];
|
|
$option = [];
|
|
$config_one = SystemConfig::getOneConfig('menu_name', $menu_name);
|
|
$parameter = explode("\n", $config_one['parameter']);
|
|
foreach ($parameter as $k => $v) {
|
|
if (isset($v) && strlen($v) > 0) {
|
|
$data = explode('=>', $v);
|
|
$option[$data[0]] = $data[1];
|
|
}
|
|
}
|
|
$str = '';
|
|
if (is_array($value)) {
|
|
foreach ($value as $v) {
|
|
$str .= $option[$v] . ',';
|
|
}
|
|
} else {
|
|
$str .= !empty($value) ? $option[$value] : $option[0];
|
|
}
|
|
return $str;
|
|
}
|
|
|
|
/**
|
|
* 获取全部
|
|
* @param int $type
|
|
* @return \think\Collection
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function getAll($type = 0)
|
|
{
|
|
$model = new self;
|
|
$where['status'] = 1;
|
|
$where['pid'] = 0;
|
|
if ($type > -1) $where['type'] = $type;
|
|
return $model::where($where)->order('sort desc,id asc')->select();
|
|
}
|
|
|
|
/**
|
|
* @param int $type
|
|
* @return \think\Collection
|
|
*/
|
|
public static function getChildrenTab($pid)
|
|
{
|
|
$model = new self;
|
|
$where['status'] = 1;
|
|
$where['pid'] = $pid;
|
|
return $model::where($where)->order('sort desc,id asc')->select();
|
|
}
|
|
|
|
/**
|
|
* 获取配置分类
|
|
* @param array $where
|
|
* @return array
|
|
*/
|
|
public static function getSystemConfigTabPage($where = [])
|
|
{
|
|
$model = new self;
|
|
if ($where['title'] != '') $model = $model->where('title', 'LIKE', "%$where[title]%");
|
|
if ($where['status'] != '') $model = $model->where('status', $where['status']);
|
|
$model = $model->where('pid', $where['pid']);
|
|
return self::page($model, $where);
|
|
|
|
}
|
|
} |