19 declare(strict_types=1);
34 protected \ilLanguage
$lng;
38 protected Data\Factory
$df;
52 $this->
ctrl = $DIC->ctrl();
53 $this->
lng = $DIC->language();
54 $this->ui_fac = $DIC->ui()->factory();
55 $this->ui_ren = $DIC->ui()->renderer();
56 $this->request = $DIC->http()->request();
57 $this->df =
new Data\Factory();
59 $this->edit_gui_request = $DIC->glossary()->internal()->gui()->editing()->request();
60 $this->requested_table_glossary_auto_link_action = $this->edit_gui_request->getTableGlossaryAutoLinkAction();
61 $this->requested_table_glossary_auto_link_ids = $this->edit_gui_request->getTableGlossaryAutoLinkIds();
70 if ($this->requested_table_glossary_auto_link_action ===
"removeGlossary") {
72 foreach ($this->requested_table_glossary_auto_link_ids as
$id) {
73 $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
78 echo($this->ui_ren->renderAsync([
79 $this->ui_fac->modal()->interruptive(
81 $this->
lng->txt(
"glo_remove_glossary"),
82 $this->
ctrl->getFormActionByClass(
"ilobjglossarygui",
"removeGlossary")
84 ->withAffectedItems($items)
85 ->withActionButtonLabel($this->
lng->txt(
"remove"))
90 $table = $this->ui_fac->table()
91 ->data($data_retrieval, $this->
lng->txt(
"cont_auto_glossaries"), $columns)
94 $this->glossary->getRefId()
96 ->withActions($actions)
97 ->withRequest($this->request);
105 "title" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"title"))
113 $query_params_namespace = [
"glo_auto_link_table"];
115 $url_builder_remove =
new UI\URLBuilder($this->df->uri($this->request->getUri()->__toString()));
116 list($url_builder_remove, $action_parameter_token_remove, $row_id_token_remove) =
117 $url_builder_remove->acquireParameters(
118 $query_params_namespace,
123 $actions[
"remove"] = $this->ui_fac->table()->action()->single(
124 $this->
lng->txt(
"remove"),
125 $url_builder_remove->withParameter($action_parameter_token_remove,
"removeGlossary"),
135 $data_retrieval =
new class (
145 public function getRows(
147 array $visible_column_ids,
151 ?array $additional_parameters
153 $records = $this->getRecords($range, $order);
154 foreach ($records as $idx => $record) {
155 $row_id = (string) $record[
"glo_id"];
157 yield $row_builder->buildDataRow($row_id, $record);
161 public function getTotalRowCount(
163 ?array $additional_parameters
165 return count($this->getRecords());
172 foreach ($this->glossary->getAutoGlossaries() as $glo_id) {
173 $records[$i][
"glo_id"] = $glo_id;
179 $records = $this->orderRecords($records, $order);
183 $records = $this->limitRecords($records, $range);
190 return $data_retrieval;
EditingGUIRequest $edit_gui_request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
array $requested_table_glossary_auto_link_ids
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupTitle(int $obj_id)
ServerRequestInterface $request
string $requested_table_glossary_auto_link_action
__construct(\ilObjGlossary $glossary)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
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.
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...