ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAppointmentPresentationSessionGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
30  public function collectPropertiesAndActions(): void
31  {
32  $file_infos = new ilObjFileInfoRepository();
33  $f = $this->ui->factory();
34  $r = $this->ui->renderer();
35  $this->lng->loadLanguageModule("sess");
36  $this->lng->loadLanguageModule("crs");
37 
38  $a_app = $this->appointment;
39  $cat_info = $this->getCatInfo();
40  $refs = $this->getReadableRefIds($this->getObjIdForAppointment());
41  $ref_id = current($refs);
42 
43  // event title
44  $this->addInfoSection($a_app["event"]->getTitle());
45 
46  // event description
47  $this->addEventDescription($a_app);
48 
49  //Contained in:
51 
52  //SESSION INFORMATION
53  $this->addInfoSection(
54  $this->lng->txt("cal_sess_info")
55  );
56 
57  $session_obj = new ilObjSession($this->getObjIdForAppointment(), false);
58 
59  //location
60  if ($session_obj->getLocation()) {
61  $this->addInfoProperty(
62  $this->lng->txt("event_location"),
63  ilUtil::makeClickable(nl2br($session_obj->getLocation()))
64  );
65  $this->addListItemProperty(
66  $this->lng->txt("event_location"),
67  ilUtil::makeClickable(nl2br($session_obj->getLocation()))
68  );
69  }
70  //details/workflow
71  if ($session_obj->getDetails()) {
72  $this->addInfoProperty(
73  $this->lng->txt("event_details_workflow"),
74  ilUtil::makeClickable(nl2br($session_obj->getDetails()))
75  );
76  }
77  //lecturer name
78  $str_lecturer = array();
79  if ($session_obj->getName()) {
80  $str_lecturer[] = $session_obj->getName();
81  }
82  //lecturer email
83  if ($session_obj->getEmail()) {
84  $str_lecturer[] = $session_obj->getEmail();
85  }
86  if ($session_obj->getPhone()) {
87  $str_lecturer[] = $this->lng->txt("phone") . ": " . $session_obj->getPhone();
88  }
89  if (count($str_lecturer) > 0) {
90  $this->addInfoProperty($this->lng->txt("event_tutor_data"), implode("<br>", $str_lecturer));
91  $this->addListItemProperty($this->lng->txt("event_tutor_data"), implode(", ", $str_lecturer));
92  }
93 
95  if (count($eventItems)) {
96  $links = [];
97  foreach ($eventItems as $file) {
98  if ($file['type'] === "file") {
99  $file_ref_id = (int) $file['ref_id'];
100  $file_info = $file_infos->getByRefId($file_ref_id);
101  $this->has_files = true;
102  $href = ilLink::_getStaticLink($file_ref_id, "file", true, 'download');
103  $link = $f->link()->standard($file_info->getListTitle(), $href);
104  if ($file_info->shouldDeliverInline()) {
105  $link = $link->withOpenInNewViewport(true);
106  }
107  $links[] = $link;
108  }
109  }
110  if ($this->has_files) {
111  $rendered = $this->sortAndRenderLinks(...$links);
112  $this->addInfoProperty($this->lng->txt("files"), implode("<br>", $rendered));
113  $this->addListItemProperty($this->lng->txt("files"), implode(", ", $rendered));
114  }
115  }
116 
117  $others = $this->getOtherMaterials();
118  if (count($others)) {
120  $ref_id = end($refs);
121  $materials_link = $r->render(
122  $f->link()->standard(
123  $this->lng->txt('cal_app_other_materials_num'),
124  ilLink::_getLink($ref_id)
125  )
126  );
127  $this->addInfoProperty(
128  $this->lng->txt('cal_materials'),
129  $materials_link
130  );
131  }
132  $this->addAction($this->lng->txt("sess_open"), ilLink::_getStaticLink($ref_id));
133 
134  $this->addMetaData('sess', $this->getObjIdForAppointment());
135  }
136 
140  protected function getOtherMaterials(): array
141  {
142  $event_items = new ilEventItems($this->getObjIdForAppointment());
143  $others = [];
144  foreach ($event_items->getItems() as $ref_id) {
145  $type = ilObject::_lookupType($ref_id, true);
146  if ($type == 'file') {
147  continue;
148  }
149  if ($this->access->checkAccess('read', '', $ref_id)) {
150  $others[] = $ref_id;
151  }
152  }
153  return $others;
154  }
155 
159  protected function sortAndRenderLinks(StandardLink ...$links): array
160  {
161  usort($links, function (StandardLink $a, $b) {
162  return $a->getLabel() <=> $b->getLabel();
163  });
164  $rendered = [];
165  foreach ($links as $link) {
166  $rendered[] = $this->ui->renderer()->render($link);
167  }
168  return $rendered;
169  }
170 }
addListItemProperty(string $a_txt, string $a_val)
Add list item property.
static getItemsByEvent(int $event_id)
Get session material / event items.
static _getAllReferences(int $id)
get all reference ids for object ID
addEventDescription(array $a_app)
Add event description.
addInfoSection(string $a_txt)
Add info section.
addInfoProperty(string $a_txt, string $a_val)
Add info property.
$ref_id
Definition: ltiauth.php:65
addAction(string $a_txt, string $a_link)
Add action.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static _lookupType(int $id, bool $reference=false)
addMetaData(string $a_obj_type, int $a_obj_id, ?string $a_sub_obj_type=null, ?int $a_sub_obj_id=null)
static makeClickable(string $a_text, bool $detectGotoLinks=false)
addContainerInfo(int $a_obj_id)
Add course/group container info.
class ilEventItems
$r