19 declare(strict_types=1);
33 protected \ilLanguage
$lng;
43 $this->
lng = $DIC->language();
44 $this->ui_fac = $DIC->ui()->factory();
45 $this->request = $DIC->http()->request();
55 $table = $this->ui_fac->table()
56 ->data($data_retrieval, $this->
lng->txt(
"glo_term_definition_pairs"), $columns)
59 $this->glossary->getRefId()
61 ->withRequest($this->request);
69 "term" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"cont_term"))
70 ->withIsSortable(
false),
71 "definition" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"cont_definition"))
72 ->withIsSortable(
false)
80 $data_retrieval =
new class (
89 protected string $raw_data,
94 $this->term_manager = $DIC->glossary()->internal()->domain()->term($this->glossary);
97 public function getRows(
99 array $visible_column_ids,
103 ?array $additional_parameters
105 $records = $this->getRecords($range);
106 foreach ($records as $idx => $record) {
107 $row_id = (string) $record[
"id"];
109 yield $row_builder->buildDataRow($row_id, $record);
113 public function getTotalRowCount(
115 ?array $additional_parameters
117 return count($this->getRecords());
120 protected function getRecords(?
Data\
Range $range =
null): array
122 $data = $this->term_manager->getDataArrayFromInputString($this->raw_data);
126 foreach (
$data as $pair) {
127 $records[$i][
"id"] = $i + 1;
128 $records[$i][
"term"] = $pair[
"term"];
129 $records[$i][
"definition"] = $pair[
"definition"];
135 $records = $this->limitRecords($records, $range);
142 return $data_retrieval;
ServerRequestInterface $request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(string $raw_data, \ilObjGlossary $glossary)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A simple class to express a naive range of whole positive numbers.