This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/api/model/Setting.php

38 lines
748 B
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\api\model;
use app\common\model\Setting as SettingModel;
/**
* 系统设置模型
* Class Setting
* @package app\api\model
*/
class Setting extends SettingModel
{
/**
* 获取积分名称
* @return string
*/
public static function getPointsName()
{
return static::getItem('points')['points_name'];
}
2020-04-25 22:53:20 +08:00
/**
* 获取微信订阅消息设置
*/
public static function getSubmsg()
{
$data = [];
foreach (static::getItem('submsg') as $groupName => $group) {
foreach ($group as $itemName => $item) {
$data[$groupName][$itemName]['template_id'] = $item['template_id'];
}
}
return $data;
}
2020-04-25 22:20:29 +08:00
}