1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 04:01:31 +08:00
2020-04-10 19:27:46 +08:00

42 lines
687 B
PHP

<?php
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;
}
}