19 declare(strict_types=1);
50 $this->request = $http->request();
51 $this->data_factory =
new Data\Factory();
59 return $this->ui_factory
61 ->data($this, $this->
lng->txt(
'frm_moderators'), $columns)
62 ->withId(self::class .
'_' . $this->forum_moderators->getRefId())
64 ->withActions($actions)
65 ->withRequest($this->request);
74 'login' => $this->ui_factory
77 ->text($this->
lng->txt(
'login'))
78 ->withIsSortable(
true),
79 'firstname' => $this->ui_factory
82 ->text($this->
lng->txt(
'firstname'))
83 ->withIsSortable(
true),
85 'lastname' => $this->ui_factory
88 ->text($this->
lng->txt(
'lastname'))
89 ->withIsSortable(
true),
98 $query_params_namespace = [
'frm',
'moderators',
'table'];
100 $uri_detach = $this->data_factory->uri(
101 ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTargetByClass(
102 ilForumModeratorsGUI::class,
103 'handleModeratorActions' 107 $url_builder_detach =
new UI\URLBuilder($uri_detach);
110 $action_parameter_token_copy,
112 ] = $url_builder_detach->acquireParameters(
113 $query_params_namespace,
119 'detachModeratorRole' => $this->ui_factory->table()->action()->single(
120 $this->
lng->txt(
'remove'),
121 $url_builder_detach->withParameter($action_parameter_token_copy,
'detachModeratorRole'),
127 private function initRecords():
void 129 if ($this->records ===
null) {
132 $entries = $this->forum_moderators->getCurrentModerators();
133 foreach ($entries as $usr_id) {
137 $this->forum_moderators->detachModeratorRole($usr_id);
141 $this->records[$i][
'usr_id'] = $user->getId();
142 $this->records[$i][
'login'] = $user->getLogin();
143 $this->records[$i][
'firstname'] = $user->getFirstname();
144 $this->records[$i][
'lastname'] = $user->getLastname();
152 array $visible_column_ids,
156 ?array $additional_parameters
160 foreach ($records as $record) {
161 $row_id = (string) $record[
'usr_id'];
162 yield $row_builder->buildDataRow($row_id, $record);
168 ?array $additional_parameters
170 $this->initRecords();
172 return count($this->records);
181 [$order_field, $order_direction] = $order->join([], fn($ret, $key, $value) => [$key, $value]);
191 $this->initRecords();
204 return array_slice($records, $range->getStart(), $range->getLength());
ServerRequestInterface $request
Interface Observer Contains several chained tasks and infos about them.
getRecords(Data\Range $range, Data\Order $order)
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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...
getRows(UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, Data\Range $range, Data\Order $order, ?array $filter_data, ?array $additional_parameters)
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...
__construct(private readonly ilForumModerators $forum_moderators, private readonly ilCtrlInterface $ctrl, private readonly ilLanguage $lng, \ILIAS\HTTP\Services $http, private readonly \ILIAS\UI\Factory $ui_factory)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
sortedRecords(Data\Order $order)
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.
limitRecords(array $records, Data\Range $range)
Data Factory $data_factory