ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DataRetrieval.php
Go to the documentation of this file.
1 <?php
2 
20 
24 use ilDateTime;
28 
32 class DataRetrieval implements I\DataRetrieval
33 {
34  private \ilLanguage $lng;
35 
36  public function __construct()
37  {
38  global $DIC;
39  $this->lng = $DIC['lng'];
40  }
41 
42  public function getRows(
43  I\DataRowBuilder $row_builder,
44  array $visible_column_ids,
45  Range $range,
46  Order $order,
47  ?array $filter_data,
48  ?array $additional_parameters
49  ): \Generator {
50  $records = $this->getRecords($order);
51  foreach ($records as $idx => $record) {
52  $row_id = (string) $record['id'];
53 
54  yield $row_builder->buildDataRow($row_id, $record);
55  }
56  }
57 
58  protected function getRecords(Order $order): array
59  {
60  $records = ilADNNotification::getArray();
61 
62  // populate with additional data
63  array_walk($records, function (array &$record): void {
64  $record['languages'] = $this->getLanguagesTextForNotification($record);
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']);
70 
71  $record['type_during_event'] = $record['permanent'] ? '' : $this->lng->txt("msg_type_" . $record['type_during_event']);
72  });
73 
74  // sort
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);
79  }
80 
81  return $records;
82  }
83 
84  public function getTotalRowCount(
85  ?array $filter_data,
86  ?array $additional_parameters
87  ): ?int {
88  return count(ilADNNotification::getArray());
89  }
90 
91  protected function formatDate(DateTimeImmutable $timestamp): string
92  {
93  return ilDatePresentation::formatDate(new ilDateTime($timestamp->getTimestamp(), IL_CAL_UNIX));
94  }
95 
96  protected function getLanguagesTextForNotification(array $record): string
97  {
98  $has_language_limitation = $record['has_language_limitation'];
99  $limited_to_languages = $record['limited_to_languages'];
100  // text is all by default
101  $languages_text = $this->lng->txt("all");
102  if ($has_language_limitation) {
103  // text is none in case the notification has a language limitation but no languages are specified
104  $languages_text = $this->lng->txt("none");
105  if (!empty($limited_to_languages)) {
106  $this->lng->loadLanguageModule("meta");
107  // text is comma separated list of languages if the notification has a language limitation
108  // and the languages have been specified
109  $languages_text = implode(
110  ', ',
111  array_map(
112  fn(string $lng_code): string => $this->lng->txt("meta_l_" . $lng_code),
113  $limited_to_languages
114  )
115  );
116  }
117  }
118  return $languages_text;
119  }
120 }
join($init, callable $fn)
Definition: Order.php:75
formatDate(DateTimeImmutable $timestamp)
const IL_CAL_UNIX
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
global $DIC
Definition: shib_login.php:22
foreach($mandatory_scripts as $file) $timestamp
Definition: buildRTE.php:70
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.
Definition: Range.php:28