ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilAppointmentPresentationCourseGUI Class Reference
+ Inheritance diagram for ilAppointmentPresentationCourseGUI:
+ Collaboration diagram for ilAppointmentPresentationCourseGUI:

Public Member Functions

 collectPropertiesAndActions ()
 
- Public Member Functions inherited from ilAppointmentPresentationGUI
 __construct (array $a_appointment, ?ilInfoScreenGUI $a_info_screen, ?ilToolbarGUI $a_toolbar, ?Item $a_list_item)
 
 getObjIdForAppointment ()
 
 getToolbar ()
 
 getListItem ()
 Get list item. More...
 
 getInfoScreen ()
 
 getCatId (int $a_entry_id)
 
 getCatInfo ()
 
 executeCommand ()
 
 getHTML ()
 
 addContainerInfo (int $a_obj_id)
 Add course/group container info. More...
 
 addInfoSection (string $a_txt)
 Add info section. More...
 
 addInfoProperty (string $a_txt, string $a_val)
 Add info property. More...
 
 addListItemProperty (string $a_txt, string $a_val)
 Add list item property. More...
 
 addAction (string $a_txt, string $a_link)
 Add action. More...
 
 collectPropertiesAndActions ()
 Collect properties and actions. More...
 
 collectStandardPropertiesAndActions ()
 Collect standard properties and actions. More...
 
 addObjectLinks (int $obj_id, ?array $a_appointment=null)
 Add object link. More...
 
 getReadableRefIds (int $a_obj_id)
 
 addEventDescription (array $a_app)
 Add event description. More...
 
 addEventLocation (array $a_app)
 Add event location. More...
 
 addLastUpdate (array $a_app)
 Add last update. More...
 
 addCalendarInfo (array $cat_info)
 
 addCommonSection (array $a_app, int $a_obj_id=0, ?array $cat_info=null, bool $a_container_info=false)
 
 addMetaData (string $a_obj_type, int $a_obj_id, ?string $a_sub_obj_type=null, ?int $a_sub_obj_id=null)
 
 getUserName (int $a_user_id, bool $a_force_name=false)
 Get (linked if possible) user name. More...
 
 downloadFiles ()
 Download files from an appointment ( Modals ) More...
 

Additional Inherited Members

- Static Public Member Functions inherited from ilAppointmentPresentationGUI
static getInstance (array $a_appointment, ?ilInfoScreenGUI $a_info_screen, ?ilToolbarGUI $a_toolbar, ?Item $a_list_item)
 
- Protected Member Functions inherited from ilAppointmentPresentationGUI
 readObjIdForAppointment ()
 read obj_id for appointment More...
 
 buildDirectLinkForAppointment (int $a_ref_id, ?array $a_appointment=null)
 Build direct link for appointment. More...
 
- Protected Attributes inherited from ilAppointmentPresentationGUI
array $appointment
 
ilToolbarGUI $toolbar
 
ilInfoScreenGUI $infoscreen
 
ilLanguage $lng
 
ilTree $tree
 
UIServices $ui
 
ilCtrlInterface $ctrl
 
ilAccessHandler $access
 
ilRbacSystem $rbacsystem
 
ilObjUser $user
 
RefineryFactory $refinery
 
HttpServices $http
 
Item $list_item = null
 
array $info_items = []
 
array $list_properties = []
 
array $actions = []
 
array $readable_ref_ids
 
bool $has_files = false
 
int $obj_id = 0
 
- Static Protected Attributes inherited from ilAppointmentPresentationGUI
static self $instance
 

Detailed Description

Member Function Documentation

◆ collectPropertiesAndActions()

ilAppointmentPresentationCourseGUI::collectPropertiesAndActions ( )

Definition at line 28 of file class.ilAppointmentPresentationCourseGUI.php.

References ilAppointmentPresentationGUI\$appointment, $parts, ilAppointmentPresentationGUI\$user, ilObject\_getAllReferences(), ilCalendarSettings\_getInstance(), ilLink\_getStaticLink(), ilCourseFile\_readFilesByCourse(), ilUtil\_sortIds(), ilAppointmentPresentationGUI\addAction(), ilAppointmentPresentationGUI\addCommonSection(), ilAppointmentPresentationGUI\addInfoProperty(), ilAppointmentPresentationGUI\addInfoSection(), ilAppointmentPresentationGUI\addLastUpdate(), ilAppointmentPresentationGUI\addListItemProperty(), ilAppointmentPresentationGUI\addMetaData(), ilMailFormCall\CONTEXT_KEY, ILIAS\Repository\ctrl(), ilAppointmentPresentationGUI\getCatInfo(), ilAppointmentPresentationGUI\getInfoScreen(), ilParticipants\getInstanceByObjId(), ilMailFormCall\getLinkTarget(), ilAppointmentPresentationGUI\getUserName(), ilCourseMailTemplateMemberContext\ID, IL_CAL_UNIX, ILIAS\Repository\lng(), ilUtil\makeClickable(), and ILIAS\Repository\ui().

28  : void
29  {
31  $this->lng->loadLanguageModule("crs");
32 
33  $app = $this->appointment;
34 
35  $cat_info = $this->getCatInfo();
36 
37  $crs = new ilObjCourse($cat_info['obj_id'], false);
38  $files = ilCourseFile::_readFilesByCourse($cat_info['obj_id']);
39 
40  // get course ref id (this is possible, since courses only have one ref id)
41  $refs = ilObject::_getAllReferences($cat_info['obj_id']);
42  $crs_ref_id = current($refs);
43 
44  // add common section (title, description, object/calendar, location)
45  $this->addCommonSection($app, $cat_info['obj_id']);
46 
47  //count number of files
48  if (count($files)) {
49  $this->has_files = true;
50  }
51  // add specific section only if the event is autogenerated.
52  if ($app['event']->isAutoGenerated()) {
53  $this->addInfoSection($this->lng->txt("cal_crs_info"));
54 
55  if ($crs->getImportantInformation()) {
56  $this->addInfoProperty(
57  $this->lng->txt("crs_important_info"),
58  ilUtil::makeClickable(nl2br($crs->getImportantInformation()))
59  );
60  }
61 
62  if ($crs->getSyllabus()) {
63  $this->addInfoProperty(
64  $this->lng->txt("crs_syllabus"),
65  ilUtil::makeClickable(nl2br($crs->getSyllabus()))
66  );
67  }
68 
69  if ($this->has_files) {
70  $links = array();
71  foreach ($files as $file) {
72  $this->ctrl->setParameter($this, 'file_id', $file->getFileId());
73  $this->ctrl->setParameterByClass('ilobjcoursegui', 'file_id', $file->getFileId());
74  $this->ctrl->setParameterByClass('ilobjcoursegui', 'ref_id', $crs_ref_id);
75 
76  $file_name = $file->getFileName();
77  $links[$file_name] = $this->ui->renderer()->render(($this->ui->factory()->button()->shy(
78  $file_name,
79  $this->ctrl->getLinkTargetByClass(array("ilRepositoryGUI", "ilobjcoursegui"), 'sendfile')
80  )));
81 
82  $this->ctrl->setParameterByClass('ilobjcoursegui', 'ref_id', '');
83  }
84  ksort($links, SORT_NATURAL | SORT_FLAG_CASE);
85 
86  $this->addInfoProperty($this->lng->txt("files"), implode("<br>", $links));
87  $this->addListItemProperty($this->lng->txt("files"), implode(", ", $links));
88  }
89 
90  // tutorial support members
91  $parts = ilParticipants::getInstanceByObjId($cat_info['obj_id']);
92  //contacts is an array of user ids.
93  $contacts = $parts->getContacts();
94  $sorted_ids = ilUtil::_sortIds($contacts, 'usr_data', 'lastname', 'usr_id');
95 
96  $names = [];
97  foreach ($sorted_ids as $usr_id) {
98  $name_presentation = $this->getUserName((int) $usr_id, true);
99  if (strlen($name_presentation)) {
100  $names[] = $name_presentation;
101  }
102  }
103  if (count($names)) {
104  $this->addInfoProperty($this->lng->txt('crs_mem_contacts'), implode('<br/>', $names));
105  $this->addListItemProperty($this->lng->txt('crs_mem_contacts'), implode('<br />', $names));
106  }
107 
108  //course contact
109  $contact_info = [];
110  if ($crs->getContactName()) {
111  $contact_info[] = [
112  'name' => $this->lng->txt('crs_contact_name'),
113  'value' => $crs->getContactName()
114  ];
115  }
116 
117  if ($crs->getContactEmail()) {
118  //TODO: optimize this
119  //$courseGUI = new ilObjCourseGUI("", $crs_ref_id);
120  $emails = explode(",", $crs->getContactEmail());
121  foreach ($emails as $email) {
122  $email = trim($email);
123  $etpl = new ilTemplate("tpl.crs_contact_email.html", true, true, 'components/ILIAS/Course');
124  $etpl->setVariable(
125  "EMAIL_LINK",
127  $this->getInfoScreen(),
128  'showSummary',
129  array(),
130  array(
131  'type' => 'new',
132  'rcp_to' => $email,
133  //'sig' => $courseGUI->createMailSignature()
134  ),
135  array(
137  'ref_id' => $crs->getRefId(),
138  'ts' => time()
139  )
140  )
141  );
142  $etpl->setVariable("CONTACT_EMAIL", $email);
143  $contact_info[] = [
144  'name' => $this->lng->txt('crs_contact_email'),
145  'value' => $etpl->get()
146  ];
147  }
148  }
149 
150  if ($crs->getContactPhone()) {
151  $contact_info[] = [
152  'name' => $this->lng->txt('crs_contact_phone'),
153  'value' => $crs->getContactPhone()
154  ];
155  }
156  if ($crs->getContactResponsibility()) {
157  $contact_info[] = [
158  'name' => $this->lng->txt('crs_contact_responsibility'),
159  'value' => $crs->getContactResponsibility()
160  ];
161  }
162  if ($crs->getContactConsultation()) {
163  $contact_info[] = [
164  'name' => $this->lng->txt('crs_contact_consultation'),
165  'value' => nl2br($crs->getContactConsultation())
166  ];
167  }
168  if ($contact_info !== []) {
169  $this->addInfoSection($this->lng->txt('crs_contact'));
170  foreach ($contact_info as $info) {
171  $this->addInfoProperty(
172  $info['name'],
173  $info['value']
174  );
175  }
176  }
177  $this->addMetaData('crs', $cat_info['obj_id']);
178 
179  // last edited
180  $this->addLastUpdate($app);
181  }
182 
183  $this->addAction($this->lng->txt("crs_open"), ilLink::_getStaticLink($crs_ref_id, "crs"));
184 
185  // register/unregister to appointment
186  if ($settings->isCGRegistrationEnabled()) {
187  if (!$app['event']->isAutoGenerated()) {
188  $reg = new ilCalendarRegistration($app['event']->getEntryId());
189 
190  if ($reg->isRegistered(
191  $this->user->getId(),
192  new ilDateTime($app['dstart'], IL_CAL_UNIX),
193  new ilDateTime($app['dend'], IL_CAL_UNIX)
194  )) {
195  //$this->ctrl->setParameterByClass('ilcalendarappointmentgui','seed',$this->getSeed()->get(IL_CAL_DATE));
196  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'app_id', $app['event']->getEntryId());
197  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'dstart', $app['dstart']);
198  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'dend', $app['dend']);
199 
200  $this->addAction(
201  $this->lng->txt('cal_reg_unregister'),
202  $this->ctrl->getLinkTargetByClass('ilcalendarappointmentgui', 'confirmUnregister')
203  );
204  } else {
205  //$this->ctrl->setParameterByClass('ilcalendarappointmentgui','seed',$this->getSeed()->get(IL_CAL_DATE));
206  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'app_id', $app['event']->getEntryId());
207  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'dstart', $app['dstart']);
208  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'dend', $app['dend']);
209 
210  $this->addAction(
211  $this->lng->txt('cal_reg_register'),
212  $this->ctrl->getLinkTargetByClass('ilcalendarappointmentgui', 'confirmRegister')
213  );
214  }
215 
216  $registered = $reg->getRegisteredUsers(
217  new \ilDateTime($app['dstart'], IL_CAL_UNIX),
218  new \ilDateTime($app['dend'], IL_CAL_UNIX)
219  );
220 
221  $users = "";
222  foreach ($registered as $user) {
223  $users .= $this->getUserName($user) . '<br />';
224  }
225  if ($users != "") {
226  $this->addInfoProperty($this->lng->txt("cal_reg_registered_users"), $users);
227  }
228  }
229  }
230  }
addListItemProperty(string $a_txt, string $a_val)
Add list item property.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:61
static _getAllReferences(int $id)
get all reference ids for object ID
static getInstanceByObjId(int $a_obj_id)
Get instance by obj type.
static getLinkTarget( $gui, string $cmd, array $gui_params=[], array $mail_params=[], array $context_params=[])
static _readFilesByCourse(int $a_course_id)
const IL_CAL_UNIX
addInfoSection(string $a_txt)
Add info section.
addInfoProperty(string $a_txt, string $a_val)
Add info property.
addLastUpdate(array $a_app)
Add last update.
registration for calendar appointments
getUserName(int $a_user_id, bool $a_force_name=false)
Get (linked if possible) user name.
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),&#39;usr_data&#39;,&#39;lastname&#39;,&#39;usr_id&#39;) => sorts by lastname.
addCommonSection(array $a_app, int $a_obj_id=0, ?array $cat_info=null, bool $a_container_info=false)
addAction(string $a_txt, string $a_link)
Add action.
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)
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: