modelsManager->createBuilder(); $builder->from(TopicModel::class); $builder->where('1 = 1'); if (!empty($where['id'])) { $builder->andWhere('id = :id:', ['id' => $where['id']]); } if (!empty($where['title'])) { $builder->andWhere('title LIKE :title:', ['title' => "%{$where['title']}%"]); } if (isset($where['published'])) { $builder->andWhere('published = :published:', ['published' => $where['published']]); } if (isset($where['deleted'])) { $builder->andWhere('deleted = :deleted:', ['deleted' => $where['deleted']]); } switch ($sort) { case 'oldest': $orderBy = 'id ASC'; break; default: $orderBy = 'id DESC'; break; } $builder->orderBy($orderBy); $pager = new PagerQueryBuilder([ 'builder' => $builder, 'page' => $page, 'limit' => $limit, ]); return $pager->paginate(); } /** * @param int $id * @return TopicModel|Model|bool */ public function findById($id) { return TopicModel::findFirst([ 'conditions' => 'id = :id:', 'bind' => ['id' => $id], ]); } /** * @param array $ids * @param array|string $columns * @return ResultsetInterface|Resultset|TopicModel[] */ public function findByIds($ids, $columns = '*') { return TopicModel::query() ->columns($columns) ->inWhere('id', $ids) ->execute(); } /** * @param int $topicId * @return ResultsetInterface|Resultset|CourseModel[] */ public function findCourses($topicId) { return $this->modelsManager->createBuilder() ->columns('c.*') ->addFrom(CourseModel::class, 'c') ->join(CourseTopicModel::class, 'c.id = ct.course_id', 'ct') ->where('ct.topic_id = :topic_id:', ['topic_id' => $topicId]) ->andWhere('c.published = 1') ->andWhere('c.deleted = 0') ->getQuery()->execute(); } public function countTopics() { return (int)TopicModel::count([ 'conditions' => 'published = 1 AND deleted = 0', ]); } public function countCourses($topicId) { return (int)CourseTopicModel::count([ 'conditions' => 'topic_id = :topic_id:', 'bind' => ['topic_id' => $topicId], ]); } }