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

57 lines
1.3 KiB
PHP

<?php
namespace App\Repos;
use App\Models\Setting as SettingModel;
use Phalcon\Mvc\Model;
use Phalcon\Mvc\Model\Resultset;
use Phalcon\Mvc\Model\ResultsetInterface;
class Setting extends Repository
{
/**
* @param array $where
* @return ResultsetInterface|Resultset|SettingModel[]
*/
public function findAll($where = [])
{
$query = SettingModel::query();
$query->where('1 = 1');
if (!empty($where['section'])) {
$query->andWhere('section = :section:', ['section' => $where['section']]);
}
return $query->execute();
}
/**
* @param string $section
* @param string $itemKey
* @return SettingModel|Model|bool
*/
public function findItem($section, $itemKey)
{
return SettingModel::findFirst([
'conditions' => 'section = :section: AND item_key = :item_key:',
'bind' => ['section' => $section, 'item_key' => $itemKey],
]);
}
/**
* @param string $section
* @return ResultsetInterface|Resultset|SettingModel[]
*/
public function findBySection($section)
{
$query = SettingModel::query();
$query->where('section = :section:', ['section' => $section]);
return $query->execute();
}
}