19 declare(strict_types=1);
35 public const EDIT =
'edit';
52 $this->request = $http->request();
53 $this->data_factory =
new Data\Factory();
61 return $this->ui_factory
63 ->data($this, $this->
lng->txt($this->context->pageLanguageIdentifier(
true)), $columns)
64 ->withId(self::class .
'_' . $this->context->value)
66 ->withActions($actions)
67 ->withRequest($this->request);
76 'language' => $this->ui_factory
79 ->text($this->
lng->txt($this->context->pageLanguageIdentifier()))
80 ->withIsSortable(
true),
81 'status_icon' => $this->ui_factory
84 ->statusIcon($this->
lng->txt(
'active'))
85 ->withIsSortable(
true)
94 $query_params_namespace = [
'authpage',
'languages'];
96 $overview_uri = $this->data_factory->uri(
97 ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTargetByClass(
98 \ilAuthPageEditorGUI::class,
103 $overview_url_builder =
new UI\URLBuilder($overview_uri);
105 $overview_url_builder,
106 $overview_action_parameter,
108 ] = $overview_url_builder->acquireParameters(
109 $query_params_namespace,
115 self::EDIT => $this->ui_factory->table()->action()->single(
116 $this->
lng->txt(
'edit'),
117 $overview_url_builder->withParameter($overview_action_parameter, self::EDIT),
120 self::ACTIVATE => $this->ui_factory->table()->action()->standard(
121 $this->
lng->txt(
'page_design_activate'),
122 $overview_url_builder->withParameter($overview_action_parameter, self::ACTIVATE),
125 self::DEACTIVATE => $this->ui_factory->table()->action()->standard(
126 $this->
lng->txt(
'page_design_deactivate'),
127 $overview_url_builder->withParameter($overview_action_parameter, self::DEACTIVATE),
135 if ($this->records ===
null) {
138 $entries = $this->
lng->getInstalledLanguages();
139 foreach ($entries as $langkey) {
140 $this->records[$i][
'key'] = $langkey;
146 $this->records[$i][
'status'] = $status;
147 $this->records[$i][
'status_icon'] = $this->
getStatusIcon($status);
148 $this->records[$i][
'language'] = $this->
lng->txt(
'meta_l_' . $langkey);
158 return $this->ui_factory->symbol()->icon()->custom(
160 $this->
lng->txt(
'active')
164 return $this->ui_factory->symbol()->icon()->custom(
166 $this->
lng->txt(
'inactive')
172 array $visible_column_ids,
176 ?array $additional_parameters
180 foreach ($records as $record) {
181 $row_id = (string) $record[
'key'];
182 $deactivate_action = (bool) $record[
'status'] ===
true ? self::ACTIVATE : self::DEACTIVATE;
183 yield $row_builder->buildDataRow($row_id, $record)->withDisabledAction($deactivate_action);
189 ?array $additional_parameters
193 return \count($this->records);
202 [$order_field, $order_direction] = $order->join([], fn($ret, $key, $value) => [$key, $value]);
204 if ($order_field ===
'status_icon') {
205 $order_field =
'status';
229 return \array_slice($records, $range->getStart(), $range->getLength());
Data Factory $data_factory
limitRecords(array $records, Data\Range $range)
__construct(private readonly ilCtrlInterface $ctrl, private readonly ilLanguage $lng, \ILIAS\HTTP\Services $http, private readonly \ILIAS\UI\Factory $ui_factory, private readonly \ILIAS\UI\Renderer $ui_renderer, private readonly AuthPageEditorContext $context)
Interface Observer Contains several chained tasks and infos about them.
ServerRequestInterface $request
final const LANGUAGE_TABLE_ACTIONS_COMMAND
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getStatusIcon(bool $status)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static lookupId(string $a_lang_key)
Lookup obj_id of language.
sortedRecords(Data\Order $order)
static stableSortArray(array $array, string $a_array_sortby, string $a_array_sortorder="asc", bool $a_numeric=false)
Sort an aray using a stable sort algorithm, which preveserves the sequence of array elements which ha...
getRecords(Data\Range $range, Data\Order $order)
getRows(UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, Data\Range $range, Data\Order $order, ?array $filter_data, ?array $additional_parameters)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstance(AuthPageEditorContext $context)
A simple class to express a naive range of whole positive numbers.
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...