39 $this->
lng = $DIC[
'lng'];
43 I\DataRowBuilder $row_builder,
44 array $visible_column_ids,
48 ?array $additional_parameters
51 foreach ($records as $idx => $record) {
52 $row_id = (string) $record[
'id'];
54 yield $row_builder->buildDataRow($row_id, $record);
63 array_walk($records,
function (array &$record):
void {
65 $record[
'type'] = $this->
lng->txt(
"msg_type_" . $record[
'type']);
66 $record[
'event_start'] = $this->
formatDate($record[
'event_start']);
67 $record[
'event_end'] = $this->
formatDate($record[
'event_end']);
68 $record[
'display_start'] = $this->
formatDate($record[
'display_start']);
69 $record[
'display_end'] = $this->
formatDate($record[
'display_end']);
71 $record[
'type_during_event'] = $record[
'permanent'] ?
'' : $this->
lng->txt(
"msg_type_" . $record[
'type_during_event']);
75 [$order_field, $order_direction] = $order->
join([], fn($ret, $key, $value): array => [$key, $value]);
76 usort($records, fn(
$a,
$b):
int =>
$a[$order_field] <=>
$b[$order_field]);
77 if ($order_direction ===
'DESC') {
78 return array_reverse($records);
86 ?array $additional_parameters
98 $has_language_limitation = $record[
'has_language_limitation'];
99 $limited_to_languages = $record[
'limited_to_languages'];
101 $languages_text = $this->
lng->txt(
"all");
102 if ($has_language_limitation) {
104 $languages_text = $this->
lng->txt(
"none");
105 if (!empty($limited_to_languages)) {
106 $this->
lng->loadLanguageModule(
"meta");
109 $languages_text = implode(
112 fn(
string $lng_code):
string => $this->
lng->txt(
"meta_l_" . $lng_code),
113 $limited_to_languages
118 return $languages_text;
join($init, callable $fn)
formatDate(DateTimeImmutable $timestamp)
Both the subject and the direction need to be specified when expressing an order. ...
getLanguagesTextForNotification(array $record)
foreach($mandatory_scripts as $file) $timestamp
static getArray(?string $key=null, string|array|null $values=null)
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRows(I\DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
A simple class to express a naive range of whole positive numbers.