19 declare(strict_types=1);
46 abstract protected function getFromPart(array $params, array $filter): string;
53 abstract protected function getWherePart(array $params, array $filter): string;
60 abstract protected function getGroupByPart(array $params, array $filter): string;
68 abstract protected function getHavingPart(array $params, array $filter): string;
75 abstract protected function getOrderByPart(array $params, array $filter): string;
83 public function getList(array $params, array $filter): array
97 if (isset($params[
'limit'])) {
98 if (!is_numeric($params[
'limit'])) {
102 if (!isset($params[
'offset'])) {
103 $params[
'offset'] = 0;
104 } elseif (!is_numeric($params[
'offset'])) {
108 $this->db->setLimit($params[
'limit'], $params[
'offset']);
111 $where = $where !==
'' ?
'WHERE ' . $where :
'';
112 $query =
"SELECT $select FROM $from $where";
115 $query .=
" GROUP BY $group";
118 if ($having !==
'') {
119 $query .=
" HAVING $having";
123 $query .=
" ORDER BY $order";
127 while ($row = $this->db->fetchAssoc(
$res)) {
128 $data[
'items'][] = $row;
131 if (isset($params[
'limit'])) {
132 $cnt_sql =
"SELECT COUNT(*) cnt FROM ($query) subquery";
133 $row_cnt = $this->db->fetchAssoc($this->db->query($cnt_sql));
134 $data[
'cnt'] = (
int) $row_cnt[
'cnt'];
getSelectPart(array $params, array $filter)
getOrderByPart(array $params, array $filter)
getList(array $params, array $filter)
getGroupByPart(array $params, array $filter)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
__construct(ilDBInterface $db)
getHavingPart(array $params, array $filter)
Interface ilTermsOfServiceTableDataProvider.
getFromPart(array $params, array $filter)
getWherePart(array $params, array $filter)
Class ilTermsOfServiceTableDatabaseDataProvider.