mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
82 lines
2.0 KiB
PHP
82 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Repos;
|
|
|
|
use App\Models\Nav as NavModel;
|
|
use Phalcon\Mvc\Model;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
use Phalcon\Mvc\Model\ResultsetInterface;
|
|
|
|
class Nav extends Repository
|
|
{
|
|
|
|
/**
|
|
* @param array $where
|
|
* @return ResultsetInterface|Resultset|NavModel[]
|
|
*/
|
|
public function findAll($where = [])
|
|
{
|
|
$query = NavModel::query();
|
|
|
|
$query->where('1 = 1');
|
|
|
|
if (isset($where['parent_id'])) {
|
|
$query->andWhere('parent_id = :parent_id:', ['parent_id' => $where['parent_id']]);
|
|
}
|
|
|
|
if (isset($where['position'])) {
|
|
$query->andWhere('position = :position:', ['position' => $where['position']]);
|
|
}
|
|
|
|
if (isset($where['level'])) {
|
|
$query->andWhere('level = :level:', ['level' => $where['level']]);
|
|
}
|
|
|
|
if (isset($where['published'])) {
|
|
$query->andWhere('published = :published:', ['published' => $where['published']]);
|
|
}
|
|
|
|
if (isset($where['deleted'])) {
|
|
$query->andWhere('deleted = :deleted:', ['deleted' => $where['deleted']]);
|
|
}
|
|
|
|
$query->orderBy('position DESC,priority ASC');
|
|
|
|
return $query->execute();
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return NavModel|Model|bool
|
|
*/
|
|
public function findById($id)
|
|
{
|
|
return NavModel::findFirst([
|
|
'conditions' => 'id = :id:',
|
|
'bind' => ['id' => $id],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param array $ids
|
|
* @param array|string $columns
|
|
* @return ResultsetInterface|Resultset|NavModel[]
|
|
*/
|
|
public function findByIds($ids, $columns = '*')
|
|
{
|
|
return NavModel::query()
|
|
->columns($columns)
|
|
->inWhere('id', $ids)
|
|
->execute();
|
|
}
|
|
|
|
public function countChildNavs($navId)
|
|
{
|
|
return (int)NavModel::count([
|
|
'conditions' => 'parent_id = :parent_id: AND published = 1',
|
|
'bind' => ['parent_id' => $navId],
|
|
]);
|
|
}
|
|
|
|
}
|