mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Models\Category as CategoryModel;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
|
|
class CategoryList extends Cache
|
|
{
|
|
|
|
protected $lifetime = 365 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "category_list:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
/**
|
|
* @var Resultset $categories
|
|
*/
|
|
$categories = CategoryModel::query()
|
|
->columns(['id', 'parent_id', 'name', 'priority', 'level', 'path'])
|
|
->where('type = :type:', ['type' => $id])
|
|
->andWhere('published = 1')
|
|
->andWhere('deleted = 0')
|
|
->orderBy('level ASC, priority ASC')
|
|
->execute();
|
|
|
|
if ($categories->count() == 0) {
|
|
return [];
|
|
}
|
|
|
|
return $categories->toArray();
|
|
}
|
|
|
|
}
|