19 declare(strict_types=1);
23 readonly
class ServerTable implements \ILIAS\UI\Component\Table\DataRetrieval
33 private array $servers,
41 private string $parent_cmd,
42 private bool $has_write_access
44 $form_action = $this->df->uri(
46 $this->
ctrl->getLinkTarget($this->parent_gui, $this->parent_cmd)
53 ] = (new \ILIAS\UI\URLBuilder($form_action))->acquireParameters(
65 $servers = $this->servers;
67 [$order_field, $order_direction] = $order->join([],
static function ($ret, $key, $value) {
68 return [$key, $value];
73 static function (array &
$server):
void {
81 strtolower($order_direction),
82 \in_array($order_field, [
'user',
'active'],
true)
85 if ($order_field ===
'active') {
86 $records = array_reverse($records);
89 $records = \array_slice($records, $range->getStart(), $range->getLength());
96 array $visible_column_ids,
100 ?array $additional_parameters
103 $title = $server[
'name'];
104 if ($this->has_write_access) {
105 $this->
ctrl->setParameter($this->parent_gui,
'ldap_server_id', $server[
'server_id']);
106 $title = $this->ui_renderer->render(
107 $this->ui_factory->link()->standard(
109 $this->
ctrl->getLinkTarget($this->parent_gui,
'editServerSettings')
116 (
string) $server[
'server_id'],
119 'active' => (
bool) $server[
'active'],
120 'user' => $server[
'user']
123 ->withDisabledAction(
125 (
bool) $server[
'active'],
127 ->withDisabledAction(
136 return \count($this->servers);
145 'active' => $this->ui_factory
149 $this->
lng->txt(
'status'),
150 $this->ui_factory->symbol()->icon()->custom(
151 'assets/images/standard/icon_ok.svg',
152 $this->
lng->txt(
'active'),
155 $this->ui_factory->symbol()->icon()->custom(
156 'assets/images/standard/icon_not_ok.svg',
157 $this->
lng->txt(
'inactive'),
161 ->withIsSortable(
true)
162 ->withOrderingLabels(
163 "{$this->lng->txt('status')}, {$this->lng->txt('active')} {$this->lng->txt('order_option_first')}",
164 "{$this->lng->txt('status')}, {$this->lng->txt('inactive')} {$this->lng->txt('order_option_first')}" 166 'title' => $this->ui_factory
169 ->text($this->
lng->txt(
'title'))
170 ->withIsSortable(
true),
171 'user' => $this->ui_factory
174 ->number($this->
lng->txt(
'user'))
175 ->withIsSortable(
true)
184 if (!$this->has_write_access) {
189 'editServerSettings' => $this->ui_factory->table()->action()->single(
190 $this->
lng->txt(
'edit'),
191 $this->url_builder->withParameter($this->action_parameter_token,
'editServerSettings'),
194 'activateServer' => $this->ui_factory->table()->action()->single(
195 $this->
lng->txt(
'activate'),
196 $this->url_builder->withParameter($this->action_parameter_token,
'activateServer'),
199 'deactivateServer' => $this->ui_factory->table()->action()->single(
200 $this->
lng->txt(
'deactivate'),
201 $this->url_builder->withParameter($this->action_parameter_token,
'deactivateServer'),
204 'confirmDeleteServerSettings' => $this->ui_factory->table()->action()->single(
205 $this->
lng->txt(
'delete'),
206 $this->url_builder->withParameter($this->action_parameter_token,
'confirmDeleteServerSettings'),
214 return $this->ui_factory
218 $this->
lng->txt(
'ldap_servers'),
221 ->withId(self::class)
224 ->withRequest($this->http_request);
Interface Observer Contains several chained tasks and infos about them.
ILIAS UI URLBuilderToken $row_id_token
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...
ILIAS UI URLBuilderToken $action_parameter_token
Both the subject and the direction need to be specified when expressing an order. ...
static _getExternalAccountsByAuthMode(string $a_auth_mode, bool $a_read_auth_default=false)
Get list of external account by authentication method Note: If login == ext_account for two user with...
ILIAS UI URLBuilder $url_builder
getRows(\ILIAS\UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, \ILIAS\Data\Range $range, \ILIAS\Data\Order $order, ?array $filter_data, ?array $additional_parameters)
A simple class to express a naive range of whole positive numbers.
getRecords(\ILIAS\Data\Range $range, \ILIAS\Data\Order $order)
__construct(private array $servers, private \ilLDAPSettingsGUI $parent_gui, private \ILIAS\UI\Factory $ui_factory, private \ILIAS\UI\Renderer $ui_renderer, private \ilLanguage $lng, private \ilCtrlInterface $ctrl, private \Psr\Http\Message\ServerRequestInterface $http_request, private \ILIAS\Data\Factory $df, private string $parent_cmd, private bool $has_write_access)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)