mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-17 07:45:29 +08:00
47 lines
846 B
PHP
47 lines
846 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Repos\Setting as SettingRepo;
|
|
|
|
class Setting extends Cache
|
|
{
|
|
|
|
protected $lifetime = 365 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "setting:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$settingRepo = new SettingRepo();
|
|
|
|
$items = $settingRepo->findAll(['section' => $id]);
|
|
|
|
if ($items->count() == 0) {
|
|
return [];
|
|
}
|
|
|
|
$result = [];
|
|
|
|
foreach ($items as $item) {
|
|
$result[$item->item_key] = $item->item_value;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|