19 declare(strict_types=1);
42 private readonly
ilCtrl $ctrl,
47 $this->request = $http->request();
48 $this->data_factory =
new Data\Factory();
56 return $this->ui_factory
60 $this->
lng->txt(
'members'),
63 ->withId(self::class .
'_' . $this->ref_id)
65 ->withActions($actions)
66 ->withRequest($this->request);
75 'login' => $this->ui_factory
78 ->text($this->
lng->txt(
'login'))
79 ->withIsSortable(
true),
80 'name' => $this->ui_factory
83 ->text($this->
lng->txt(
'name'))
84 ->withIsSortable(
true),
85 'role' => $this->ui_factory
88 ->text($this->
lng->txt(
'role'))
89 ->withIsSortable(
true),
98 $query_params_namespace = [
'contact',
'search',
'members'];
100 $uri = $this->data_factory->uri(
101 ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTargetByClass(
102 \ilMailMemberSearchGUI::class,
103 'handleSearchMembersActions' 107 $url_builder =
new UI\URLBuilder($uri);
110 $action_parameter_token_copy,
112 ] = $url_builder->acquireParameters(
113 $query_params_namespace,
119 'sendMailToSelectedUsers' => $this->ui_factory->table()->action()->multi(
120 $this->
lng->txt(
'mail_members'),
121 $url_builder->withParameter($action_parameter_token_copy,
'sendMailToSelectedUsers'),
129 if ($this->records ===
null) {
132 $entries = $this->provider->getData();
133 if ($entries !== []) {
134 foreach ($entries as $entry) {
135 $this->records[$i][
'user_id'] = (
int) $entry[
'user_id'];
136 $this->records[$i][
'login'] = $entry[
'login'];
137 $this->records[$i][
'name'] = $entry[
'name'];
138 $this->records[$i][
'role'] = $entry[
'role'];
147 array $visible_column_ids,
151 ?array $additional_parameters
155 foreach ($records as $record) {
156 $row_id = (string) $record[
'user_id'];
157 yield $row_builder->buildDataRow($row_id, $record);
163 ?array $additional_parameters
167 return \count($this->records);
176 [$order_field, $order_direction] = $order->join([], fn($ret, $key, $value) => [$key, $value]);
199 return \array_slice($records, $range->getStart(), $range->getLength());
Interface Observer Contains several chained tasks and infos about them.
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 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...
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.