51 protected bool $raw =
false;
58 $this->
class = $activeRecord::class;
59 $this->
setAR($activeRecord);
70 $arSelect->setFieldName(
'*');
96 public function where($where, $operator =
null): self
98 $this->loaded =
false;
99 if (is_string($where)) {
102 $arWhere->setStatement($where);
108 if (is_array($where)) {
109 foreach ($where as $field_name => $value) {
111 $arWhere->setFieldname($field_name);
112 $arWhere->setValue($value);
114 if (is_array($operator)) {
115 $arWhere->setOperator($operator[$field_name]);
117 $arWhere->setOperator($operator);
126 throw new Exception(
'Wrong where Statement, use strings or arrays');
133 public function orderBy(
string $order_by,
string $order_direction =
'ASC'): self
136 $arOrder->setFieldname($order_by);
137 $arOrder->setDirection($order_direction);
148 public function limit(
int $start,
int $end): self
151 $arLimit->setStart($start);
152 $arLimit->setEnd($end);
167 array $fields = [
'*'],
168 string $operator =
'=',
169 bool $both_external =
false 192 array $fields = [
'*'],
193 string $operator =
'=',
194 bool $both_external =
false 196 if (!$both_external && !$this->
getAR()->getArFieldList()->isField($on_this)) {
200 foreach ($fields as $field_name) {
201 if ($this->
getAR()->getArFieldList()->isField($field_name)) {
208 $arJoin->setType($type);
209 $arJoin->setFullNames($full_names);
210 $arJoin->setTableName($tablename);
211 $arJoin->setOnFirstField($on_this);
212 $arJoin->setOnSecondField($on_external);
213 $arJoin->setOperator($operator);
214 $arJoin->setFields($fields);
215 $arJoin->setBothExternal($both_external);
218 foreach ($fields as $field) {
220 $arSelect->setTableName($arJoin->getTableNameAs());
221 $arSelect->setFieldName($field);
222 $arSelect->setAs($arJoin->getTableNameAs() .
'_' . $field);
238 array $fields = [
'*'],
239 string $operator =
'=',
240 bool $both_external =
false 242 return $this->
join(
arJoin::TYPE_LEFT, $tablename, $on_this, $on_external, $fields, $operator, $both_external);
254 array $fields = [
'*'],
255 string $operator =
'=',
256 bool $both_external =
false 258 return $this->
join(
arJoin::TYPE_INNER, $tablename, $on_this, $on_external, $fields, $operator, $both_external);
264 public function concat(array $fields,
string $as): self
267 $arConcat->setAs($as);
268 $arConcat->setFields($fields);
314 public function dateFormat(
string $date_format =
'd.m.Y - H:i:s'): self
316 $this->loaded =
false;
324 $this->loaded =
false;
337 public function raw(
bool $set_raw =
true): self
366 $this->
class = $class;
377 public function get(): array
391 $result = array_values($this->result);
393 return array_shift($result);
400 $result = array_values($this->result);
402 return array_shift($result);
409 $result = array_values($this->result);
411 return array_pop($result);
433 if ($key ===
null && $values ===
null) {
437 foreach ($this->result_array as $row) {
439 if (!array_key_exists($key, $row)) {
440 throw new Exception(
"The attribute $key does not exist on this model.");
442 $array[$row[$key]] = $this->
buildRow($row, $values);
444 $array[] = $this->
buildRow($row, $values);
457 if ($values ===
null) {
461 if (!is_array($values)) {
462 return $row[$values];
466 foreach ($row as $key => $value) {
467 if (in_array($key, $values)) {
468 $array[$key] = $value;
475 protected function load():
void 485 $primaryFieldName = $this->
getAR()->getArFieldList()->getPrimaryFieldName();
487 $class_name = $this->
getAR()::
class;
488 foreach ($records as $record) {
489 $primary_field_value = $record[$primaryFieldName];
492 $this->result[$primary_field_value] = $obj->buildFromArray($record);
496 foreach ($record as $key => $value) {
497 $arField = $obj->getArFieldList()->getFieldByName($key);
499 $res_awake[$key .
'_unformatted'] = $value;
500 $res_awake[$key .
'_unix'] = strtotime((
string) $value);
501 $value = date($this->
getDateFormat(), strtotime((
string) $value));
503 $waked = $this->
getAR()->wakeUp($key, $value);
504 $res_awake[$key] = $waked ?? $value;
506 $this->result_array[$res_awake[$primaryFieldName]] = $res_awake;
508 $this->result_array[$primary_field_value] = $record;
511 $this->loaded =
true;
524 $this->ar = $activeRecord;
544 return $this->date_format ??
'';
554 return self::$last_query;
arSelectCollection $arSelectCollection
array $addidtional_parameters
where($where, $operator=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static string $last_query
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
join(string $type, string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ActiveRecord $activeRecord)
PhpFieldAssignmentTypeMismatchInspection
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
arJoinCollection $arJoinCollection
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
arConcatCollection $arConcatCollection
static setLastQuery(string $last_query)
orderBy(string $order_by, string $order_direction='ASC')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
arHavingCollection $arHavingCollection
getArray(?string $key=null, string|array|null $values=null)
arWhereCollection $arWhereCollection
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
limit(int $start, int $end)
arOrderCollection $arOrderCollection
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
additionalParams(array $additional_params)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAddidtionalParameters()
buildArray(?string $key, $values)
getConnectorContainerName()
Return the Name of your Connector Table
concat(array $fields, string $as)
connector(arConnector $arConnector)
setDateFormat(string $date_format)
arLimitCollection $arLimitCollection
dateFormat(string $date_format='d.m.Y - H:i:s')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
innerjoinAR(ActiveRecord $activeRecord, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
innerjoin(string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
setAddidtionalParameters(array $addidtional_parameters)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setAR(\ActiveRecord $activeRecord)
buildRow(?array $row, $values)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setArHavingCollection(\arHavingCollection $arHavingCollection)
leftjoin(string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const LIST_JOIN_ON_WRONG_FIELD
static get(ActiveRecord $activeRecord)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...