ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilInfoScreenGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 use ILIAS\Export\ExportHandler\Factory as ExportServices;
25 
34 {
35  protected \ILIAS\Repository\HTML\HTMLUtil $html;
36  protected \ILIAS\DI\UIServices $ui;
37  protected ?\ILIAS\UI\Component\MessageBox\MessageBox $mbox = null;
38  protected ilTabsGUI $tabs_gui;
42  protected ilObjUser $user;
43  protected ilTree $tree;
44  protected ilSetting $settings;
45  protected Metadata $metadata;
47  public ilLanguage $lng;
48  public ilCtrl $ctrl;
49  public ?object $gui_object;
50  public array $top_buttons = array();
51  public array $top_formbuttons = array();
52  public array $hiddenelements = array();
53  public string $table_class = "il_InfoScreen";
54  public bool $open_form_tag = true;
55  public bool $close_form_tag = true;
56  protected ?int $contextRefId = null;
57  protected ?int $contextObjId = null;
58  protected ?string $contentObjType = null;
59  public string $form_action;
60  protected bool $booking_enabled = false;
61  protected bool $availability_enabled = true;
62  protected bool $hidden = false;
63  protected array $section = [];
64  protected array $block_property = [];
65  protected bool $news_editing = false;
66  protected bool $show_hidden_toggle = false;
67  protected int $sec_nr = 0;
68  protected bool $private_notes_enabled = false;
69  protected bool $news_enabled = false;
70  protected bool $feedback_enabled = false;
71  protected bool $learning_progress_enabled = false;
73 
74 
75  public function __construct(?object $a_gui_object = null)
76  {
77  global $DIC;
78 
79  $this->rbacsystem = $DIC->rbac()->system();
80  $this->tpl = $DIC["tpl"];
81  $this->access = $DIC->access();
82  $this->user = $DIC->user();
83  $this->tree = $DIC->repositoryTree();
84  $this->settings = $DIC->settings();
85  $ilCtrl = $DIC->ctrl();
86  $lng = $DIC->language();
87  $ilTabs = $DIC->tabs();
88  $this->metadata = $DIC->learningObjectMetadata();
89 
90  $this->ctrl = $ilCtrl;
91  $this->lng = $lng;
92  $this->tabs_gui = $ilTabs;
93  $this->gui_object = $a_gui_object;
94  $this->form_action = "";
95  $this->top_formbuttons = array();
96  $this->hiddenelements = array();
97  $this->ui = $DIC->ui();
98  $this->request = $DIC->infoScreen()->internal()->gui()->standardRequest();
99  $this->html = $DIC->infoScreen()->internal()->gui()->html();
100  $this->data_factory = new DataFactory();
101  }
102 
109  public function executeCommand(): void
110  {
111  $tpl = $this->tpl;
112 
113  $next_class = $this->ctrl->getNextClass($this);
114 
115  $cmd = $this->ctrl->getCmd("showSummary");
116  $this->ctrl->setReturn($this, "showSummary");
117 
118  $this->setTabs();
119 
120  switch ($next_class) {
121  case strtolower(ilCommentGUI::class):
122  if ($this->ctrl->isAsynch()) {
123  $this->showNotesSection();
124  } else {
125  $this->showSummary(); // forwards command
126  }
127  break;
128 
129  case "ilcolumngui":
130  $this->showSummary();
131  break;
132 
133  case "ilpublicuserprofilegui":
134  $user_profile = new ilPublicUserProfileGUI($this->request->getUserId());
135  $user_profile->setBackUrl($this->ctrl->getLinkTarget($this, "showSummary"));
136  $html = $this->ctrl->forwardCommand($user_profile);
137  $tpl->setContent($html);
138  break;
139 
140  case "ilcommonactiondispatchergui":
142  $this->ctrl->forwardCommand($gui);
143  break;
144 
145  default:
146  $this->$cmd();
147  break;
148  }
149  }
150 
151  public function setMessageBox(ILIAS\UI\Component\MessageBox\MessageBox $a_val): void
152  {
153  $this->mbox = $a_val;
154  }
155 
156  public function getMessageBox(): ILIAS\UI\Component\MessageBox\MessageBox
157  {
158  return $this->mbox;
159  }
160 
161 
162  public function setTableClass(string $a_val): void
163  {
164  $this->table_class = $a_val;
165  }
166 
167  public function getTableClass(): string
168  {
169  return $this->table_class;
170  }
171 
172  public function enablePrivateNotes(bool $a_enable = true): void
173  {
174  $this->private_notes_enabled = $a_enable;
175  }
176 
177  public function enableLearningProgress(bool $a_enable = true): void
178  {
179  $this->learning_progress_enabled = $a_enable;
180  }
181 
182  public function enableAvailability(bool $a_enable = true): void
183  {
184  $this->availability_enabled = $a_enable;
185  }
186 
187  public function enableBookingInfo(bool $a_enable = true): void
188  {
189  $this->booking_enabled = $a_enable;
190  }
191 
192 
193  public function enableFeedback(bool $a_enable = true): void
194  {
195  $this->feedback_enabled = $a_enable;
196  }
197 
198  public function enableNews(bool $a_enable = true): void
199  {
200  $this->news_enabled = $a_enable;
201  }
202 
203  public function enableNewsEditing(bool $a_enable = true): void
204  {
205  $this->news_editing = $a_enable;
206  }
207 
212  public function setBlockProperty(string $a_block_type, string $a_property, string $a_value): void
213  {
214  $this->block_property[$a_block_type][$a_property] = $a_value;
215  }
216 
217  public function getAllBlockProperties(): array
218  {
219  return $this->block_property;
220  }
221 
222  public function addSection(string $a_title): void
223  {
224  $this->sec_nr++;
225  $this->section[$this->sec_nr]["title"] = $a_title;
226  $this->section[$this->sec_nr]["hidden"] = $this->hidden;
227  }
228 
232  public function setFormAction(string $a_form_action): void
233  {
234  $this->form_action = $a_form_action;
235  }
236 
237  public function removeFormAction(): void
238  {
239  $this->form_action = "";
240  }
241 
249  public function addProperty(string $a_name, string $a_value, string $a_link = ""): void
250  {
251  $this->section[$this->sec_nr]["properties"][] =
252  array("name" => $a_name, "value" => $a_value,
253  "link" => $a_link);
254  }
255 
256 
260  public function addPropertyTextinput(
261  string $a_name,
262  string $a_input_name,
263  string $a_input_value = "",
264  string $a_input_size = "",
265  string $direct_button_command = "",
266  string $direct_button_label = "",
267  bool $direct_button_primary = false
268  ): void {
269  $input = "<span class=\"form-inline\"><input class=\"form-control\" type=\"text\" name=\"$a_input_name\" id=\"$a_input_name\"";
270  if (strlen($a_input_value)) {
271  $input .= " value=\"" . ilLegacyFormElementsUtil::prepareFormOutput($a_input_value) . "\"";
272  }
273  if (strlen($a_input_size)) {
274  $input .= " size=\"" . $a_input_size . "\"";
275  }
276  $input .= " />";
277  if (strlen($direct_button_command) && strlen($direct_button_label)) {
278  $css = "";
279  if ($direct_button_primary) {
280  $css = " btn-primary";
281  }
282  $input .= " <input type=\"submit\" class=\"btn btn-default" . $css . "\" name=\"cmd[$direct_button_command]\" value=\"$direct_button_label\" />";
283  }
284  $input .= "</span>";
285  $this->section[$this->sec_nr]["properties"][] =
286  array("name" => "<label for=\"$a_input_name\">$a_name</label>", "value" => $input);
287  }
288 
292  public function addButton(
293  string $a_title,
294  string $a_link,
295  string $a_frame = "",
296  string $a_position = "top",
297  bool $a_primary = false
298  ): void {
299  if ($a_position == "top") {
300  $this->top_buttons[] =
301  array("title" => $a_title,"link" => $a_link,"target" => $a_frame,"primary" => $a_primary);
302  }
303  }
304 
309  public function addFormButton(
310  string $a_command,
311  string $a_title,
312  string $a_position = "top"
313  ): void {
314  if ($a_position == "top") {
315  $this->top_formbuttons[] = array("command" => $a_command, "title" => $a_title);
316  }
317  }
318 
319  public function addHiddenElement(string $a_name, string $a_value): void
320  {
321  $this->hiddenelements[] = array("name" => $a_name, "value" => $a_value);
322  }
323 
324  public function addMetaDataSections(int $a_rep_obj_id, int $a_obj_id, string $a_type): void
325  {
326  $lng = $this->lng;
327 
328  $lng->loadLanguageModule("meta");
329  $lng->loadLanguageModule('export');
330 
331  $md_reader = $this->metadata->read($a_rep_obj_id, $a_obj_id, $a_type);
332  $md_paths = $this->metadata->paths();
333  $md_data_helper = $this->metadata->dataHelper();
334  $md_copyright_helper = $this->metadata->copyrightHelper();
335 
336  // general
337  $lang_data = $md_reader->allData($md_paths->languages());
338  $langs = $md_data_helper->makePresentableAsList(', ', ...$lang_data);
339 
340  $keyword_data = $md_reader->allData($md_paths->keywords());
341  $keywords = $md_data_helper->makePresentableAsList(', ', ...$keyword_data);
342 
343  // authors
344  $author_data = $md_reader->allData($md_paths->authors());
345  $author = $md_data_helper->makePresentableAsList(', ', ...$author_data);
346 
347  // learning time
348  $learning_time_data = $md_reader->firstData($md_paths->firstTypicalLearningTime());
349  $learning_time = $md_data_helper->makePresentable($learning_time_data);
350 
351  // copyright
352  $copyright = '';
353  if ($md_copyright_helper->hasPresetCopyright($md_reader)) {
354  $copyright = $this->ui->renderer()->render(
355  $md_copyright_helper->readPresetCopyright($md_reader)->presentAsUIComponents()
356  );
357  } else {
358  $copyright = $md_copyright_helper->readCustomCopyright($md_reader);
359  }
360 
361  // public access export
362  $public_access_export = $this->buildPublicAccessExportButton($a_rep_obj_id, $a_obj_id);
363 
364  // output
365 
366  // general section
367  $this->addSection($lng->txt("meta_general"));
368  if ($langs != "") { // language
369  $this->addProperty(
370  $lng->txt("language"),
371  $this->html->escape($langs)
372  );
373  }
374  if ($keywords != "") { // keywords
375  $this->addProperty(
376  $lng->txt("keywords"),
377  $this->html->escape($keywords)
378  );
379  }
380  if ($author != "") { // author
381  $this->addProperty(
382  $lng->txt("author"),
383  $this->html->escape($author)
384  );
385  }
386  if ($learning_time != "") { // typical learning time
387  $this->addProperty(
388  $lng->txt("meta_typical_learning_time"),
389  $this->html->escape($learning_time)
390  );
391  }
392 
393  // licence and use section
394  if ($copyright === '' && $public_access_export === '') {
395  return;
396  }
397  $this->addSection($lng->txt('meta_info_licence_section'));
398 
399  if ($public_access_export !== '') { // public access export
400  $this->addProperty(
401  $lng->txt('export_info_public_access'),
402  $public_access_export
403  );
404  }
405 
406  if ($copyright !== '') { // copyright
407  $this->addProperty(
408  $lng->txt("meta_copyright"),
409  $copyright
410  );
411  }
412  }
413 
414  protected function buildPublicAccessExportButton(int $rep_obj_id, int $obj_id): string
415  {
416  /*
417  * This should be replaced by a proper export API
418  * when it is available.
419  */
420  $export_services = new ExportServices();
421  $public_access = $export_services->publicAccess()->handler();
422 
423  /*
424  * Make sure we are not in a subobject, and that we will get
425  * the ref_id via the GUI from the correct object.
426  */
427  if (
428  $rep_obj_id !== $this->gui_object->getObject()->getId() ||
429  ($obj_id !== 0 && $obj_id !== $rep_obj_id)
430  ) {
431  return '';
432  }
433 
434  if (!$public_access->hasPublicAccessFile($this->data_factory->objId($rep_obj_id))) {
435  return '';
436  }
437 
438  $ref_id = $this->gui_object->getObject()->getRefId();
439 
440  return $this->ui->renderer()->render(
441  $this->ui->factory()->button()->standard(
442  $this->lng->txt('export_info_public_access_download'),
443  $public_access->downloadLinkOfPublicAccessFile($this->data_factory->refId($ref_id))
444  )
445  );
446  }
447 
453  public function addObjectSections(): void
454  {
455  $lng = $this->lng;
456  $ilCtrl = $this->ctrl;
457  $ilUser = $this->user;
458  $ilAccess = $this->access;
459  $tree = $this->tree;
460 
461  // resource bookings
462  if ($this->booking_enabled) {
463  $booking_adapter = new ilBookingInfoScreenAdapter($this);
464  $booking_adapter->add();
465  }
466 
467  $this->addSection($lng->txt("additional_info"));
468  $a_obj = $this->gui_object->getObject();
469 
470  // links to the object
471  if (is_object($a_obj)) {
472  // permanent link
473  $type = $a_obj->getType();
474  $ref_id = $a_obj->getRefId();
475 
476  if ($ref_id) {
477  if (ilECSServerSettings::getInstance()->activeServerExists()) {
478  $this->addProperty(
479  $lng->txt("object_id"),
480  (string) $a_obj->getId()
481  );
482  }
483 
484  $this->tpl->setPermanentLink($type, $ref_id);
485 
486  // links to resource
487  if ($ilAccess->checkAccess("write", "", $ref_id) ||
488  $ilAccess->checkAccess("edit_permissions", "", $ref_id)) {
489  $obj_id = $a_obj->getId();
490  $rs = ilObject::_getAllReferences($obj_id);
491  $refs = array();
492  foreach ($rs as $r) {
493  if ($tree->isInTree($r)) {
494  $refs[] = $r;
495  }
496  }
497  if (count($refs) > 1) {
498  $links = $sep = "";
499  foreach ($refs as $r) {
500  $cont_loc = new ilLocatorGUI();
501  $cont_loc->addContextItems($r, true);
502  $links .= $sep . $cont_loc->getHTML();
503  $sep = "<br />";
504  }
505 
506  $this->addProperty(
507  $lng->txt("res_links"),
508  '<div class="small">' . $links . '</div>'
509  );
510  }
511  }
512  }
513  }
514 
515 
516  // creation date
517  if ($ilAccess->checkAccess("write", "", $ref_id) ||
518  $ilAccess->checkAccess("edit_permissions", "", $ref_id)) {
519  $this->addProperty(
520  $lng->txt("create_date"),
521  ilDatePresentation::formatDate(new ilDateTime($a_obj->getCreateDate(), IL_CAL_DATETIME))
522  );
523 
524  // owner
525  if ($ilUser->getId() != ANONYMOUS_USER_ID and $a_obj->getOwner()) {
526  if (ilObjUser::userExists(array($a_obj->getOwner()))) {
528  $ownerObj = ilObjectFactory::getInstanceByObjId($a_obj->getOwner(), false);
529  } else {
530  $ownerObj = ilObjectFactory::getInstanceByObjId(6, false);
531  }
532 
533  if (!is_object($ownerObj) || $ownerObj->getType() != "usr") { // root user deleted
534  $this->addProperty($lng->txt("owner"), $lng->txt("no_owner"));
535  } elseif ($ownerObj->hasPublicProfile()) {
536  $ilCtrl->setParameterByClass("ilpublicuserprofilegui", "user_id", $ownerObj->getId());
537  $this->addProperty(
538  $lng->txt("owner"),
539  $ownerObj->getPublicName(),
540  $ilCtrl->getLinkTargetByClass("ilpublicuserprofilegui", "getHTML")
541  );
542  } else {
543  $this->addProperty($lng->txt("owner"), $ownerObj->getPublicName());
544  }
545  }
546 
547  // change event
548  if (ilChangeEvent::_isActive()) {
549  if ($ilUser->getId() != ANONYMOUS_USER_ID) {
550  $readEvents = ilChangeEvent::_lookupReadEvents($a_obj->getId());
551  $count_users = 0;
552  $count_user_reads = 0;
553  $count_anonymous_reads = 0;
554  foreach ($readEvents as $evt) {
555  if ($evt['usr_id'] == ANONYMOUS_USER_ID) {
556  $count_anonymous_reads += $evt['read_count'];
557  } else {
558  $count_user_reads += $evt['read_count'];
559  $count_users++;
560  /* to do: if ($evt['user_id'] is member of $this->getRefId())
561  {
562  $count_members++;
563  }*/
564  }
565  }
566  if ($count_anonymous_reads > 0) {
567  $this->addProperty(
568  $this->lng->txt("readcount_anonymous_users"),
569  (string) $count_anonymous_reads
570  );
571  }
572  if ($count_user_reads > 0) {
573  $this->addProperty($this->lng->txt("readcount_users"), (string) $count_user_reads);
574  }
575  if ($count_users > 0) {
576  $this->addProperty($this->lng->txt("accesscount_registered_users"), (string) $count_users);
577  }
578  }
579  }
580  }
581 
582  // WebDAV: Display locking information
584  if ($ilUser->getId() != ANONYMOUS_USER_ID) {
585  $webdav_dic = new ilWebDAVDIC();
586  $webdav_dic->initWithoutDIC();
587  $webdav_lock_backend = $webdav_dic->locksbackend();
588  // Show lock info
589  if ($ilUser->getId() != ANONYMOUS_USER_ID) {
590  if ($lock = $webdav_lock_backend->getLocksOnObjectId($this->gui_object->getObject()->getId())) {
592  $lock_user = new ilObjUser($lock->getIliasOwner());
593  $this->addProperty(
594  $this->lng->txt("in_use_by"),
595  $lock_user->getPublicName(),
596  "./ilias.php?user=" . $lock_user->getId() . '&cmd=showUserProfile&cmdClass=ildashboardgui&cmdNode=1&baseClass=ilDashboardGUI'
597  );
598  }
599  }
600  }
601  }
602  }
603  // END ChangeEvent: Display standard object info
604 
611  public function showSummary(): void
612  {
613  $tpl = $this->tpl;
614 
615  $tpl->setContent($this->getCenterColumnHTML());
616  $tpl->setRightContent($this->getRightColumnHTML());
617  }
618 
619 
627  public function getCenterColumnHTML(): string
628  {
629  $ilCtrl = $this->ctrl;
630  $html = "";
631  $column_gui = new ilColumnGUI("info", IL_COL_CENTER);
632  $this->setColumnSettings($column_gui);
633 
634  if (!$ilCtrl->isAsynch()) {
635  if ($column_gui->getScreenMode() != IL_SCREEN_SIDE) {
636  // right column wants center
637  if ($column_gui->getCmdSide() == IL_COL_RIGHT) {
638  $column_gui = new ilColumnGUI("info", IL_COL_RIGHT);
639  $this->setColumnSettings($column_gui);
640  $html = $ilCtrl->forwardCommand($column_gui);
641  }
642  // left column wants center
643  if ($column_gui->getCmdSide() == IL_COL_LEFT) {
644  $column_gui = new ilColumnGUI("info", IL_COL_LEFT);
645  $this->setColumnSettings($column_gui);
646  $html = $ilCtrl->forwardCommand($column_gui);
647  }
648  } else {
649  $html = $this->getHTML();
650  }
651  }
652 
653  return $html;
654  }
655 
660  public function getRightColumnHTML(): string
661  {
662  $ilCtrl = $this->ctrl;
663 
664  $html = "";
665  $column_gui = new ilColumnGUI("info", IL_COL_RIGHT);
666  $this->setColumnSettings($column_gui);
667 
668  if ($ilCtrl->getNextClass() == "ilcolumngui" &&
669  $column_gui->getCmdSide() == IL_COL_RIGHT &&
670  $column_gui->getScreenMode() == IL_SCREEN_SIDE) {
671  $html = $ilCtrl->forwardCommand($column_gui);
672  } elseif (!$ilCtrl->isAsynch() && $this->news_enabled) {
673  $html = $ilCtrl->getHTML($column_gui);
674  }
675 
676  return $html;
677  }
678 
682  public function setColumnSettings(ilColumnGUI $column_gui): void
683  {
684  $column_gui->setEnableEdit($this->news_editing);
685  $column_gui->setRepositoryMode(true);
686  $column_gui->setAllBlockProperties($this->getAllBlockProperties());
687  }
688 
689  public function setOpenFormTag(bool $a_val): void
690  {
691  $this->open_form_tag = $a_val;
692  }
693 
694  public function setCloseFormTag(bool $a_val): void
695  {
696  $this->close_form_tag = $a_val;
697  }
698 
706  public function getHTML(): string
707  {
708  $lng = $this->lng;
710  $ilCtrl = $this->ctrl;
711  $ilUser = $this->user;
712 
713  $tpl = new ilTemplate("tpl.infoscreen.html", true, true, "components/ILIAS/InfoScreen");
714 
715  // other class handles form action (@todo: this is not implemented/tested)
716  if ($this->form_action == "") {
717  $this->setFormAction($ilCtrl->getFormAction($this));
718  }
719 
721 
722  if ($this->hidden) {
723  $tpl->touchBlock("hidden_js");
724  if ($this->show_hidden_toggle) {
725  $this->addButton($lng->txt("show_hidden_sections"), "JavaScript:toggleSections(this, '" . $lng->txt("show_hidden_sections") . "', '" . $lng->txt("hide_visible_sections") . "');");
726  }
727  }
728 
729 
730  // DEPRECATED - use ilToolbarGUI
731 
732  // add top buttons
733  if (count($this->top_buttons) > 0) {
734  $tpl->addBlockFile("TOP_BUTTONS", "top_buttons", "tpl.buttons.html");
735 
736  foreach ($this->top_buttons as $button) {
737  // view button
738  $tpl->setCurrentBlock("btn_cell");
739  $tpl->setVariable("BTN_LINK", $button["link"]);
740  $tpl->setVariable("BTN_TARGET", $button["target"]);
741  $tpl->setVariable("BTN_TXT", $button["title"]);
742  if ($button["primary"]) {
743  $tpl->setVariable("BTN_CLASS", " btn-primary");
744  }
745  $tpl->parseCurrentBlock();
746  }
747  }
748 
749  // add top formbuttons
750  if ((count($this->top_formbuttons) > 0) && ($this->form_action !== '')) {
751  $tpl->addBlockFile("TOP_FORMBUTTONS", "top_submitbuttons", "tpl.submitbuttons.html", "components/ILIAS/InfoScreen");
752 
753  foreach ($this->top_formbuttons as $button) {
754  // view button
755  $tpl->setCurrentBlock("btn_submit_cell");
756  $tpl->setVariable("BTN_COMMAND", $button["command"]);
757  $tpl->setVariable("BTN_NAME", $button["title"]);
758  $tpl->parseCurrentBlock();
759  }
760  }
761 
762  // add form action
763  if ($this->form_action != "") {
764  if ($this->open_form_tag) {
765  $tpl->setCurrentBlock("formtop");
766  $tpl->setVariable("FORMACTION", $this->form_action);
767  $tpl->parseCurrentBlock();
768  }
769 
770  if ($this->close_form_tag) {
771  $tpl->touchBlock("formbottom");
772  }
773  }
774 
775  if (count($this->hiddenelements)) {
776  foreach ($this->hiddenelements as $hidden) {
777  $tpl->setCurrentBlock("hidden_element");
778  $tpl->setVariable("HIDDEN_NAME", $hidden["name"]);
779  $tpl->setVariable("HIDDEN_VALUE", $hidden["value"]);
780  $tpl->parseCurrentBlock();
781  }
782  }
783 
784  if ($this->availability_enabled) {
785  $this->addAvailability();
786  }
787 
788  $this->addPreconditions();
789 
790  // learning progress
791  if ($this->learning_progress_enabled) {
792  $this->showLearningProgress($tpl);
793  }
794 
795  // notes section
796  if ($this->private_notes_enabled && !$ilSetting->get('disable_notes')) {
797  $html = $this->showNotesSection();
798  $tpl->setCurrentBlock("notes");
799  $tpl->setVariable("NOTES", $html);
800  $tpl->parseCurrentBlock();
801  }
802 
803  if (
804  isset($this->gui_object) &&
805  method_exists($this->gui_object, "getObject") &&
806  is_object($this->gui_object->getObject())
807  ) {
808  $this->addObjectSections();
809  }
810 
811  // render all sections
812  for ($i = 1; $i <= $this->sec_nr; $i++) {
813  if (isset($this->section[$i]["properties"])) {
814  // section properties
815  foreach ($this->section[$i]["properties"] as $property) {
816  if ($property["name"] != "") {
817  if (($property["link"] ?? "") == "") {
818  $tpl->setCurrentBlock("pv");
819  $tpl->setVariable("TXT_PROPERTY_VALUE", $property["value"]);
820  } else {
821  $tpl->setCurrentBlock("lpv");
822  $tpl->setVariable("TXT_PROPERTY_LVALUE", $property["value"]);
823  $tpl->setVariable("LINK_PROPERTY_VALUE", $property["link"]);
824  }
825  $tpl->parseCurrentBlock();
826  $tpl->setCurrentBlock("property_row");
827  $tpl->setVariable("TXT_PROPERTY", $property["name"]);
828  } else {
829  $tpl->setCurrentBlock("property_full_row");
830  $tpl->setVariable("TXT_PROPERTY_FULL_VALUE", $property["value"]);
831  }
832  $tpl->parseCurrentBlock();
833  }
834 
835  // section header
836  if ($this->section[$i]["hidden"] ?? false) {
837  $tpl->setVariable("SECTION_HIDDEN", " style=\"display:none;\"");
838  $tpl->setVariable("SECTION_ID", "hidable_" . $i);
839  } else {
840  $tpl->setVariable("SECTION_ID", $i);
841  }
842  $tpl->setVariable("TCLASS", $this->getTableClass());
843  $tpl->setVariable("TXT_SECTION", $this->section[$i]["title"]);
844  $tpl->setCurrentBlock("row");
845  $tpl->parseCurrentBlock();
846  }
847  }
848 
849  if (!is_null($this->mbox)) {
850  $tpl->setVariable("MBOX", $this->ui->renderer()->render([$this->mbox]));
851  }
852 
853  return $tpl->get();
854  }
855 
856  public function getContextRefId(): int
857  {
858  if ($this->contextRefId !== null) {
859  return $this->contextRefId;
860  }
861 
862  return $this->gui_object->getObject()->getRefId();
863  }
864 
865  public function setContextRefId(int $contextRefId): void
866  {
867  $this->contextRefId = $contextRefId;
868  }
869 
870  public function getContextObjId(): int
871  {
872  if ($this->contextObjId !== null) {
873  return $this->contextObjId;
874  }
875 
876  return $this->gui_object->getObject()->getId();
877  }
878 
879  public function setContextObjId(int $contextObjId): void
880  {
881  $this->contextObjId = $contextObjId;
882  }
883 
884  public function getContentObjType(): string
885  {
886  if ($this->contentObjType !== null) {
887  return $this->contentObjType;
888  }
889 
890  return $this->gui_object->getObject()->getType();
891  }
892 
893  public function setContentObjType(string $contentObjType): void
894  {
895  $this->contentObjType = $contentObjType;
896  }
897 
902  public function showLearningProgress(ilTemplate $a_tpl): void
903  {
904  return;
905 
906  $ilUser = $this->user;
907  $rbacsystem = $this->rbacsystem;
908 
909  if (!$rbacsystem->checkAccess('read', $this->getContextRefId())) {
910  return;
911  }
912  if ($ilUser->getId() == ANONYMOUS_USER_ID) {
913  return;
914  }
915 
917  return;
918  }
919 
920  $olp = ilObjectLP::getInstance($this->getContextObjId());
921  if ($olp->getCurrentMode() != ilLPObjSettings::LP_MODE_MANUAL) {
922  return;
923  }
924 
925  $this->lng->loadLanguageModule('trac');
926 
927  // section header
928  // $a_tpl->setCurrentBlock("header_row");
929  $a_tpl->setVariable(
930  "TXT_SECTION",
931  $this->lng->txt('learning_progress')
932  );
933  $a_tpl->parseCurrentBlock();
934  }
935 
936  public function saveProgress(bool $redirect = true): void
937  {
938  $ilUser = $this->user;
939 
940  // ensure a read event
942  $ilUser->getId(),
943  $this->getContextObjId(),
944  $this->getContextRefId(),
946  );
947 
948  $lp_marks = new ilLPMarks($this->getContextObjId(), $ilUser->getId());
949  $lp_marks->setCompleted((bool) $this->request->getLPEdit());
950  $lp_marks->update();
951 
952  ilLPStatusWrapper::_updateStatus($this->getContextObjId(), $ilUser->getId());
953 
954  $this->lng->loadLanguageModule('trac');
955  $this->tpl->setOnScreenMessage('success', $this->lng->txt('trac_updated_status'), true);
956 
957  if ($redirect) {
958  $this->ctrl->redirect($this, ""); // #14993
959  }
960  }
961 
962 
967  public function showNotesSection(): string
968  {
969  global $DIC;
970 
971  $ilAccess = $this->access;
973  $notes_gui = $DIC->notes()->gui();
974  $notes_gui->initJavascript();
975  $comments_gui = $notes_gui->getCommentsGUI(
976  $this->gui_object->getObject()->getId(),
977  0,
978  $this->gui_object->getObject()->getType()
979  );
980 
981  $next_class = $this->ctrl->getNextClass($this);
982  $comments_gui->setUseObjectTitleHeader(false);
983 
984  // global switch
985  if ($ilSetting->get("disable_comments")) {
986  return "";
987  } else {
988  $ref_id = $this->gui_object->getObject()->getRefId();
989  $has_write = $ilAccess->checkAccess("write", "", $ref_id);
990 
991  if ($has_write && $ilSetting->get("comments_del_tutor", "1")) {
992  $comments_gui->enablePublicNotesDeletion();
993  }
994 
995  /* should probably be discussed further
996  for now this will only work properly with comments settings
997  (see ilNoteGUI constructor)
998  */
999  if ($has_write ||
1000  $ilAccess->checkAccess("edit_permissions", "", $ref_id)) {
1001  $comments_gui->enableCommentsSettings();
1002  }
1003  }
1004 
1005  /* moved to action menu
1006  $notes_gui->enablePrivateNotes();
1007  */
1008  if ($next_class === strtolower(ilCommentGUI::class)) {
1009  $html = $this->ctrl->forwardCommand($comments_gui);
1010  } else {
1011  $html = $comments_gui->getListHTML();
1012  }
1013 
1014  return $html;
1015  }
1016 
1020  public function showLDAPRoleGroupMappingInfo(string $a_section = ''): void
1021  {
1022  if (strlen($a_section)) {
1023  $this->addSection($a_section);
1024  }
1025  $ldap_mapping = ilLDAPRoleGroupMapping::_getInstance();
1026  if ($infos = $ldap_mapping->getInfoStrings($this->gui_object->getObject()->getId())) {
1027  $info_combined = '<div style="color:green;">';
1028  $counter = 0;
1029  foreach ($infos as $info_string) {
1030  if ($counter++) {
1031  $info_combined .= '<br />';
1032  }
1033  $info_combined .= $info_string;
1034  }
1035  $info_combined .= '</div>';
1036  $this->addProperty($this->lng->txt('applications'), $info_combined);
1037  }
1038  }
1039 
1040  public function setTabs(): void
1041  {
1042  $this->getTabs($this->tabs_gui);
1043  }
1044 
1045  public function getTabs(ilTabsGUI $tabs_gui): void
1046  {
1047  $next_class = $this->ctrl->getNextClass($this);
1048  $force_active = ($next_class == "ilnotegui");
1049 
1050  $tabs_gui->addSubTabTarget(
1051  'summary',
1052  $this->ctrl->getLinkTarget($this, "showSummary"),
1053  array("showSummary", ""),
1054  get_class($this),
1055  "",
1056  $force_active
1057  );
1058  }
1059 
1060 
1061 
1062  public function hideFurtherSections(bool $a_add_toggle = true): void
1063  {
1064  $this->hidden = true;
1065  $this->show_hidden_toggle = $a_add_toggle;
1066  }
1067 
1068  public function getHiddenToggleButton(): string
1069  {
1070  $lng = $this->lng;
1071 
1072  return "<a onClick=\"toggleSections(this, '" . $lng->txt("show_hidden_sections") . "', '" . $lng->txt("hide_visible_sections") . "'); return false;\" href=\"#\">" . $lng->txt("show_hidden_sections") . "</a>";
1073  }
1074 
1075 
1080  protected function addAvailability(): void
1081  {
1082  if (
1083  !is_object($this->gui_object) ||
1084  !method_exists($this->gui_object, "getObject") ||
1085  !is_object($this->gui_object->getObject())
1086  ) {
1087  return;
1088  }
1089 
1090  $obj = $this->gui_object->getObject();
1091  if ($obj->getRefId() <= 0) {
1092  return;
1093  }
1094 
1095  $act = new ilObjectActivation();
1096  $act->read($obj->getRefId());
1097  if ($act->getTimingType() == ilObjectActivation::TIMINGS_ACTIVATION) {
1098  $this->lng->loadLanguageModule("rep");
1099  $this->addSection($this->lng->txt("rep_activation_availability"));
1100  $this->addAccessPeriodProperty();
1101  }
1102  }
1103 
1107  protected function addPreconditions(): void
1108  {
1109  if (
1110  !is_object($this->gui_object) ||
1111  !method_exists($this->gui_object, "getObject") ||
1112  !is_object($this->gui_object->getObject())
1113  ) {
1114  return;
1115  }
1116 
1117  $obj = $this->gui_object->getObject();
1118  if ($obj->getRefId() <= 0) {
1119  return;
1120  }
1121 
1122  $conditions = ilConditionHandler::_getEffectiveConditionsOfTarget($obj->getRefId(), $obj->getId());
1123 
1124  if (sizeof($conditions)) {
1125  for ($i = 0; $i < count($conditions); $i++) {
1126  $conditions[$i]['title'] = ilObject::_lookupTitle($conditions[$i]['trigger_obj_id']);
1127  }
1128  $conditions = ilArrayUtil::sortArray($conditions, 'title', 'DESC');
1129 
1130  // Show obligatory and optional preconditions seperated
1131  $this->addPreconditionSection($obj, $conditions, true);
1132  $this->addPreconditionSection($obj, $conditions, false);
1133  }
1134  }
1135 
1136  protected function addPreconditionSection(
1137  ilObject $obj,
1138  array $conditions,
1139  bool $obligatory = true
1140  ): void {
1141  $lng = $this->lng;
1142  $tree = $this->tree;
1143 
1144  $num_required = ilConditionHandler::calculateEffectiveRequiredTriggers($obj->getRefId(), $obj->getId());
1145  $num_optional_required =
1146  $num_required - count($conditions) + count(ilConditionHandler::getEffectiveOptionalConditionsOfTarget($obj->getRefId(), $obj->getId()));
1147 
1148  // Check if all conditions are fulfilled
1149  $visible_conditions = array();
1150  $passed_optional = 0;
1151  foreach ($conditions as $condition) {
1152  if ($obligatory and !$condition['obligatory']) {
1153  continue;
1154  }
1155  if (!$obligatory and $condition['obligatory']) {
1156  continue;
1157  }
1158 
1159  if ($tree->isDeleted($condition['trigger_ref_id'])) {
1160  continue;
1161  }
1162 
1163  $ok = ilConditionHandler::_checkCondition($condition) and
1164  !ilMemberViewSettings::getInstance()->isActive();
1165 
1166  if (!$ok) {
1167  $visible_conditions[] = $condition['id'];
1168  }
1169 
1170  if (!$obligatory and $ok) {
1171  ++$passed_optional;
1172  // optional passed
1173  if ($passed_optional >= $num_optional_required) {
1174  return;
1175  }
1176  }
1177  }
1178 
1179  $properties = [];
1180 
1181  foreach ($conditions as $condition) {
1182  if (!isset($condition["id"]) || !in_array($condition['id'], $visible_conditions)) {
1183  continue;
1184  }
1185 
1186  $properties[] = [
1188  $condition['trigger_obj_id'],
1189  $condition['operator']
1190  ) . ' ' . $condition['value'],
1191  "title" => ilObject::_lookupTitle($condition['trigger_obj_id']),
1192  "link" => ilLink::_getLink($condition['trigger_ref_id'])
1193  ];
1194  }
1195 
1196  if (count($properties) > 0) {
1197  if ($obligatory) {
1198  $this->addSection($lng->txt("preconditions_obligatory_hint"));
1199  } else {
1200  $this->addSection(sprintf(
1201  $lng->txt("preconditions_optional_hint"),
1202  $num_optional_required - $passed_optional
1203  ));
1204  }
1205 
1206  foreach ($properties as $p) {
1207  $this->addProperty(
1208  $p["condition"],
1209  "<a href='" . $p["link"] . "'>" . $this->html->strip($p["title"]) . "</a>"
1210  );
1211  }
1212  }
1213  }
1214 
1219  public function addAccessPeriodProperty(): void
1220  {
1221  $a_obj = $this->gui_object->getObject();
1222 
1223  $this->lng->loadLanguageModule("rep");
1224  $this->lng->loadLanguageModule("crs");
1225 
1226  // links to the object
1227  if (is_object($a_obj)) {
1228  $act = new ilObjectActivation();
1229  $act->read($a_obj->getRefId());
1230  if ($act->getTimingType() == ilObjectActivation::TIMINGS_ACTIVATION) {
1231  $this->addProperty(
1232  $this->lng->txt('rep_activation_access'),
1234  new ilDateTime($act->getTimingStart(), IL_CAL_UNIX),
1235  new ilDateTime($act->getTimingEnd(), IL_CAL_UNIX)
1236  )
1237  );
1238  } else {
1239  $this->addProperty(
1240  $this->lng->txt('rep_activation_access'),
1241  $this->lng->txt('crs_visibility_limitless')
1242  );
1243  }
1244  }
1245  }
1246 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
enableLearningProgress(bool $a_enable=true)
ilAccessHandler $access
addPreconditions()
Add preconditions.
addMetaDataSections(int $a_rep_obj_id, int $a_obj_id, string $a_type)
setCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Sets the template to the given block.
addBlockFile(string $var, string $block, string $template_name, ?string $in_module=null)
overwrites ITX::addBlockFile
const IL_CAL_DATETIME
const ANONYMOUS_USER_ID
Definition: constants.php:27
enableFeedback(bool $a_enable=true)
addButton(string $a_title, string $a_link, string $a_frame="", string $a_position="top", bool $a_primary=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
enableNews(bool $a_enable=true)
addPreconditionSection(ilObject $obj, array $conditions, bool $obligatory=true)
setCloseFormTag(bool $a_val)
Interface Observer Contains several chained tasks and infos about them.
static getInstance()
Get singleton instance.
static _getAllReferences(int $id)
get all reference ids for object ID
static translateOperator(int $a_obj_id, string $a_operator, string $value='')
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
isInTree(?int $a_node_id)
get all information of a node.
isDeleted(int $a_node_id)
This is a wrapper for isSaved() with a more useful name.
parseCurrentBlock(string $blockname=self::DEFAULT_BLOCK)
Parses the given block.
const IL_COL_CENTER
setFormAction(string $a_form_action)
setRepositoryMode(bool $a_repositorymode)
const IL_COL_RIGHT
loadLanguageModule(string $a_module)
Load language module.
enableNewsEditing(bool $a_enable=true)
setContentObjType(string $contentObjType)
static prepareFormOutput($a_str, bool $a_strip=false)
const IL_CAL_UNIX
setEnableEdit(bool $a_enableedit)
setContextObjId(int $contextObjId)
enableBookingInfo(bool $a_enable=true)
hideFurtherSections(bool $a_add_toggle=true)
setBackUrl(string $backurl)
Set Back Link URL.
showLDAPRoleGroupMappingInfo(string $a_section='')
setColumnSettings(ilColumnGUI $column_gui)
Set column settings.
addSubTabTarget(string $a_text, string $a_link, $a_cmd="", $a_cmdClass="", string $a_frame="", bool $a_activate=false, bool $a_dir_text=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _tracProgress(int $a_user_id, int $a_obj_id, int $a_ref_id, string $a_obj_type='')
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _getInstance()
Get singleton instance of this class.
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
setTableClass(string $a_val)
addHiddenElement(string $a_name, string $a_value)
GUI class for public user profile presentation.
$ref_id
Definition: ltiauth.php:65
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
setContextRefId(int $contextRefId)
static userExists(array $a_usr_ids=[])
static _checkCondition(array $condition, int $a_usr_id=0)
checks wether a single condition is fulfilled every trigger object type must implement a static metho...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
ILIAS UI Component MessageBox MessageBox $mbox
static _lookupTitle(int $obj_id)
setRightContent(string $a_html)
Sets content of right column.
ILIAS DI UIServices $ui
static calculateEffectiveRequiredTriggers(int $a_target_ref_id, int $a_target_obj_id, string $a_target_obj_type='')
Column user interface class.
buildPublicAccessExportButton(int $rep_obj_id, int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setBlockProperty(string $a_block_type, string $a_property, string $a_value)
This function is supposed to be used for block type specific properties, that should be passed to ilB...
static initjQuery(?ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
global $DIC
Definition: shib_login.php:22
saveProgress(bool $redirect=true)
addSection(string $a_title)
__construct(?object $a_gui_object=null)
addFormButton(string $a_command, string $a_title, string $a_position="top")
add a form button to the info screen the form buttons are only valid if a form action is set ...
static _lookupReadEvents($obj_id, $usr_id=null)
Reads all read events which occured on the object.
showLearningProgress(ilTemplate $a_tpl)
getTabs(ilTabsGUI $tabs_gui)
enableAvailability(bool $a_enable=true)
touchBlock(string $blockname)
overwrites ITX::touchBlock.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
addPropertyTextinput(string $a_name, string $a_input_name, string $a_input_value="", string $a_input_size="", string $direct_button_command="", string $direct_button_label="", bool $direct_button_primary=false)
ILIAS Repository HTML HTMLUtil $html
global $ilSetting
Definition: privfeed.php:31
static _isActive()
Returns true, if change event tracking is active.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
catch(InvalidArgumentException) if(!ilDAVActivationChecker::_isActive()) $webdav_dic
Definition: webdav.php:57
static getEffectiveOptionalConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_obj_type='')
ilGlobalPageTemplate $tpl
static _lookupType(int $id, bool $reference=false)
const IL_SCREEN_SIDE
static getInstance(int $obj_id)
Class ilObjectActivation.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
setContent(string $a_html)
Sets content for standard template.
const IL_COL_LEFT
setAllBlockProperties(array $a_block_properties)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
enablePrivateNotes(bool $a_enable=true)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
$r
StandardGUIRequest $request
setMessageBox(ILIAS\UI\Component\MessageBox\MessageBox $a_val)