ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjWikiGUI.php
Go to the documentation of this file.
1 <?php
2 
24 
40 {
41  protected \ILIAS\Wiki\InternalDomainService $domain;
42  protected \ILIAS\Wiki\InternalGUIService $gui;
43  protected \ILIAS\Wiki\Content\GUIService $content_gui;
44  protected \ILIAS\Wiki\Navigation\ImportantPageManager $imp_pages;
45  protected \ILIAS\Wiki\Page\PageManager $pm;
47  protected \ILIAS\HTTP\Services $http;
48  protected string $requested_page;
50  protected ilTabsGUI $tabs;
51  protected ilHelpGUI $help;
52  protected ilLogger $log;
54  protected \ILIAS\DI\UIServices $ui;
55  protected bool $req_with_comments = false;
57  protected \ILIAS\Style\Content\GUIService $content_style_gui;
58  protected \ILIAS\Style\Content\Object\ObjectFacade $content_style_domain;
59 
60  public function __construct(
61  $a_data,
62  int $a_id,
63  bool $a_call_by_reference,
64  bool $a_prepare_output = true
65  ) {
66  global $DIC;
67 
68  $gui = $DIC->wiki()->internal()->gui();
69  $domain = $DIC->wiki()->internal()->domain();
70  $this->gui = $gui;
71  $this->domain = $domain;
72 
73  $this->ctrl = $gui->ctrl();
74  $this->lng = $domain->lng();
75  $this->tabs = $gui->tabs();
76  $this->help = $gui->help();
77  $this->locator = $gui->locator();
78  $this->http = $gui->http();
79  $this->ot = $gui->wiki()->translation();
80 
81  $this->type = "wiki";
82 
83  $this->log = ilLoggerFactory::getLogger('wiki');
84 
85  $this->tool_context = $gui->globalScreen()->tool()->context();
86  $this->ui = $gui->ui();
87 
88  $this->edit_request = $gui->request();
89  $this->content_gui = $gui->content();
90 
91  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
92  $this->lng->loadLanguageModule("obj");
93  $this->lng->loadLanguageModule("wiki");
94 
95  $this->requested_page = $this->edit_request->getPage();
96  if ($this->requested_page !== "") {
97  $this->ctrl->setParameter($this, "page", ilWikiUtil::makeUrlTitle($this->requested_page));
98  }
99  $this->ctrl->saveParameterByClass(self::class, "transl");
100  $this->ctrl->saveParameterByClass(self::class, "wpg_id");
101  $this->req_with_comments = $this->edit_request->getWithComments();
102  $cs = $DIC->contentStyle();
103  $this->content_style_gui = $cs->gui();
104  if (is_object($this->object)) {
105  $this->content_style_domain = $cs->domain()->styleForRefId($this->object->getRefId());
106  $this->pm = $this->domain->page()->page($this->object->getRefId());
107  $this->imp_pages = $this->domain->importantPage($this->object->getRefId());
108  }
109  }
110 
111  public function executeCommand(): void
112  {
113  $ilCtrl = $this->ctrl;
114  $tpl = $this->tpl;
115  $ilTabs = $this->tabs;
116  $ilAccess = $this->access;
117 
118  $next_class = $this->ctrl->getNextClass($this);
119  $cmd = $this->ctrl->getCmd();
120 
121  $this->triggerAssignmentTool();
122 
123  $this->prepareOutput();
124 
125  // see ilWikiPageGUI::printViewOrderList()
126  // printView() cannot be in ilWikiPageGUI because of stylesheet confusion
127  if ($cmd === "printView") {
128  $next_class = null;
129  }
130 
131  switch ($next_class) {
132  case "ilinfoscreengui":
133  $this->checkPermission("visible");
134  $this->addHeaderAction();
135  $this->infoScreen(); // forwards command
136  break;
137 
138  case 'ilpermissiongui':
139  $this->addHeaderAction();
140  $ilTabs->activateTab("perm_settings");
141  $perm_gui = new ilPermissionGUI($this);
142  $this->ctrl->forwardCommand($perm_gui);
143  break;
144 
145  case 'ilsettingspermissiongui':
146  $this->checkPermission("write");
147  $this->addHeaderAction();
148  $ilTabs->activateTab("settings");
149  $this->setSettingsSubTabs("permission_settings");
150  $perm_gui = new ilSettingsPermissionGUI($this);
151  $perm_gui->setPermissions(array("edit_wiki_navigation", "add_pages", "delete_wiki_pages", "activate_wiki_protection",
152  "wiki_html_export"));
153  $perm_gui->setRoleRequiredPermissions(array("edit_content"));
154  $perm_gui->setRoleProhibitedPermissions(array("write"));
155  $this->ctrl->forwardCommand($perm_gui);
156  break;
157 
158  case 'ilobjecttranslationgui':
159  $this->checkPermission("read");
160  $this->addHeaderAction();
161  $ilTabs->activateTab("settings");
162  $this->setSettingsSubTabs("obj_multilinguality");
163  $transgui = new ilObjectTranslationGUI($this);
164  $transgui->setTitleDescrOnlyMode(false);
165  $this->ctrl->forwardCommand($transgui);
166  break;
167 
168  case 'ilwikipagegui':
169  $this->checkPermission("read");
170  $requested_page = $this->requested_page;
171  if ($this->edit_request->getWikiPageId() > 0) {
172  $requested_page = $this->pm->getTitle(
173  $this->edit_request->getWikiPageId(),
174  $this->edit_request->getTranslation()
175  );
176  }
177  $wpage_gui = $this->content_gui->getCurrentPageGUI();
178  $wpage_gui->setStyleId($this->content_style_domain->getEffectiveStyleId());
179  $this->setContentStyleSheet();
180  if (!$ilAccess->checkAccess("write", "", $this->object->getRefId()) &&
181  (
182  !$ilAccess->checkAccess("edit_content", "", $this->object->getRefId()) ||
183  $wpage_gui->getPageObject()->getBlocked()
184  )) {
185  $wpage_gui->setEnableEditing(false);
186  }
187 
188  // alter title and description
189  // $tpl->setTitle($wpage_gui->getPageObject()->getTitle());
190  // $tpl->setDescription($this->object->getTitle());
191  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
192  $wpage_gui->activateMetaDataEditor($this->object, "wpg", $wpage_gui->getId());
193  }
194 
195  $ret = $this->ctrl->forwardCommand($wpage_gui);
196  if ($ret != "") {
197  $tpl->setContent($ret);
198  }
199  break;
200 
201  case 'ilobjectcopygui':
202  $cp = new ilObjectCopyGUI($this);
203  $cp->setType('wiki');
204  $this->ctrl->forwardCommand($cp);
205  break;
206 
207  case 'ilpublicuserprofilegui':
208  $profile_gui = new ilPublicUserProfileGUI(
209  $this->edit_request->getUserId()
210  );
211  $ret = $this->ctrl->forwardCommand($profile_gui);
212  $tpl->setContent($ret);
213  break;
214 
215  case "ilobjectcontentstylesettingsgui":
216  $this->checkPermission("write");
217  $this->addHeaderAction();
218  $ilTabs->activateTab("settings");
219  $this->setSettingsSubTabs("style");
220 
221  $settings_gui = $this->content_style_gui
222  ->objectSettingsGUIForRefId(
223  null,
224  $this->object->getRefId()
225  );
226  $this->ctrl->forwardCommand($settings_gui);
227  break;
228 
229  case "ilexportgui":
230  $this->addHeaderAction();
231  $ilTabs->activateTab("export");
232  $exp_gui = new ilExportGUI($this);
233  $this->ctrl->forwardCommand($exp_gui);
234  break;
235 
236  case "ilcommonactiondispatchergui":
238  $this->ctrl->forwardCommand($gui);
239  break;
240 
241  case "ilratinggui":
242  // for rating category editing
243  $this->checkPermission("write");
244  $this->addHeaderAction();
245  $ilTabs->activateTab("settings");
246  $this->setSettingsSubTabs("rating_categories");
247  $gui = new ilRatingGUI();
248  $gui->setObject($this->object->getId(), $this->object->getType());
249  $gui->setExportCallback(array($this, "getSubObjectTitle"), $this->lng->txt("page"));
250  $this->ctrl->forwardCommand($gui);
251  break;
252 
253  case "ilwikistatgui":
254  $this->checkPermission("statistics_read");
255 
256  $this->addHeaderAction();
257  $ilTabs->activateTab("statistics");
258  $gui = new ilWikiStatGUI($this->object->getId());
259  $this->ctrl->forwardCommand($gui);
260  break;
261 
262  case "ilwikipagetemplategui":
263  $this->checkPermission("write");
264  $this->addHeaderAction();
265  $ilTabs->activateTab("settings");
266  $this->setSettingsSubTabs("page_templates");
267  $wptgui = new ilWikiPageTemplateGUI($this);
268  $this->ctrl->forwardCommand($wptgui);
269  break;
270 
271  case 'ilobjectmetadatagui':
272  $this->checkPermission("write");
273  $this->addHeaderAction();
274  $ilTabs->activateTab("advmd");
275  $md_gui = new ilObjectMetaDataGUI($this->object, "wpg");
276  $this->ctrl->forwardCommand($md_gui);
277  break;
278 
279  case 'ilrepositoryobjectsearchgui':
280  $this->addHeaderAction();
281  $this->setSideBlock();
282  $ilTabs->setTabActive("wiki_search_results");
283  $ilCtrl->setReturn($this, 'view');
284  $search_gui = new ilRepositoryObjectSearchGUI(
285  $this->object->getRefId(),
286  $this,
287  'view'
288  );
289  $ilCtrl->forwardCommand($search_gui);
290  break;
291 
292  case 'ilobjnotificationsettingsgui':
293  $this->addHeaderAction();
294  $ilTabs->activateTab("settings");
295  $this->setSettingsSubTabs("notifications");
296  $gui = new ilObjNotificationSettingsGUI($this->object->getRefId());
297  $this->ctrl->forwardCommand($gui);
298  break;
299 
300  case 'illtiproviderobjectsettinggui':
301  $this->addHeaderAction();
302  $ilTabs->activateTab("settings");
303  $this->setSettingsSubTabs("lti_provider");
304  $lti_gui = new ilLTIProviderObjectSettingGUI($this->object->getRefId());
305  $lti_gui->setCustomRolesForSelection($GLOBALS['DIC']->rbac()->review()->getLocalRoles($this->object->getRefId()));
306  $lti_gui->offerLTIRolesForSelection(false);
307  $this->ctrl->forwardCommand($lti_gui);
308  break;
309 
310  case strtolower(SettingsGUI::class):
311  $this->addHeaderAction();
312  $ilTabs->activateTab("settings");
313  $this->setSettingsSubTabs("general_settings");
314  $this->getTabs();
315  $gui = $this->gui->settings()->settingsGUI(
316  $this->object->getId(),
317  $this->object->getRefId()
318  );
319  $this->ctrl->forwardCommand($gui);
320  break;
321 
322  default:
323  $this->addHeaderAction();
324  if (!$cmd) {
325  $cmd = "infoScreen";
326  }
327  $cmd .= "Object";
328  if ($cmd !== "cancelObject") {
329  if ($cmd !== "infoScreenObject") {
330  if (!in_array($cmd, array("createObject", "saveObject", "routeImportCmdObject"))) {
331  $this->checkPermission("read");
332  }
333  } else {
334  $this->checkPermission("visible");
335  }
336  }
337  $this->$cmd();
338  break;
339  }
340  }
341 
342  public function viewObject(): void
343  {
344  $this->checkPermission("read");
345  $this->gotoStartPageObject();
346  }
347 
348  protected function initCreateForm(string $new_type): StandardForm
349  {
350  $f = $this->gui->ui()->factory();
351  $lng = $this->lng;
352  $form = parent::initCreateForm($new_type);
353  $inputs = $form->getInputs();
354  $inputs["start_page"] = $f->input()->field()->text(
355  $lng->txt("wiki_start_page")
356  )->withRequired(true);
357  return $this->ui_factory->input()->container()->form()->standard(
358  $this->ctrl->getFormAction($this, 'save'),
359  $inputs
360  )->withSubmitLabel($this->lng->txt($new_type . '_add'));
361  }
362 
363  protected function afterSave(ilObject $new_object): void
364  {
365  $form = $this
366  ->initCreateForm($this->requested_new_type)
367  ->withRequest($this->request);
368  $data = $form->getData();
369  $new_object->setStartPage($data["start_page"]);
370  $new_object->update();
371 
372  // always send a message
373  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
374  $this->ctrl->setParameterByClass(
375  static::class,
376  "ref_id",
377  $new_object->getRefId()
378  );
379  $this->ctrl->redirectByClass([
380  ilWikiHandlerGUI::class,
381  ilObjWikiGUI::class,
382  SettingsGUI::class
383  ]);
384  }
385 
391  public function infoScreenObject(): void
392  {
393  $this->checkPermission("visible");
394  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
395  }
396 
397  public function infoScreen(): void
398  {
399  $ilAccess = $this->access;
400  $ilUser = $this->user;
401  $ilTabs = $this->tabs;
402  $lng = $this->lng;
403 
404  $ilTabs->activateTab("info_short");
405 
406  if (!$ilAccess->checkAccess("visible", "", $this->object->getRefId())) {
407  throw new ilPermissionException($this->lng->txt("permission_denied"));
408  }
409 
410  $info = new ilInfoScreenGUI($this);
411  $info->enablePrivateNotes();
412  if (trim($this->object->getIntroduction()) !== "") {
413  $info->addSection($lng->txt("wiki_introduction"));
414  $info->addProperty("", nl2br($this->object->getIntroduction()));
415  }
416 
417  // feedback from tutor; mark, status, comment
418  $lpcomment = ilLPMarks::_lookupComment($ilUser->getId(), $this->object->getId());
419  $mark = ilLPMarks::_lookupMark($ilUser->getId(), $this->object->getId());
420  $status = ilWikiContributor::_lookupStatus($this->object->getId(), $ilUser->getId());
421  if ($lpcomment !== "" || $mark !== "" || (int) $status !== ilWikiContributor::STATUS_NOT_GRADED) {
422  $info->addSection($this->lng->txt("wiki_feedback_from_tutor"));
423  if ($lpcomment !== "") {
424  $info->addProperty(
425  $this->lng->txt("wiki_comment"),
426  $lpcomment
427  );
428  }
429  if ($mark !== "") {
430  $info->addProperty(
431  $this->lng->txt("wiki_mark"),
432  $mark
433  );
434  }
435 
436  if ((int) $status === ilWikiContributor::STATUS_PASSED) {
437  $info->addProperty(
438  $this->lng->txt("status"),
439  $this->lng->txt("wiki_passed")
440  );
441  }
442  if ((int) $status === ilWikiContributor::STATUS_FAILED) {
443  $info->addProperty(
444  $this->lng->txt("status"),
445  $this->lng->txt("wiki_failed")
446  );
447  }
448  }
449 
450  if ($ilAccess->checkAccess("read", "", $this->object->getRefId())) {
451  $info->addButton($lng->txt("wiki_start_page"), self::getGotoLink($this->object->getRefId()));
452  }
453 
454  // general information
455  $this->lng->loadLanguageModule("meta");
456  $this->lng->loadLanguageModule("wiki");
457 
458  // forward the command
459  $this->ctrl->forwardCommand($info);
460  }
461 
462  public function gotoStartPageObject(): void
463  {
464  ilUtil::redirect(self::getGotoLink($this->object->getRefId()));
465  }
466 
467  public function addPageTabs(): void
468  {
469  $ilTabs = $this->tabs;
470  $ilCtrl = $this->ctrl;
471 
472  $ilCtrl->setParameter(
473  $this,
474  "wpg_id",
475  ilWikiPage::getPageIdForTitle($this->object->getId(), ilWikiUtil::makeDbTitle($this->requested_page))
476  );
477  $ilCtrl->setParameter($this, "page", ilWikiUtil::makeUrlTitle($this->requested_page));
478  $ilTabs->addTarget(
479  "wiki_what_links_here",
480  $this->ctrl->getLinkTargetByClass(
481  "ilwikipagegui",
482  "whatLinksHere"
483  ),
484  "whatLinksHere"
485  );
486  $ilTabs->addTarget(
487  "wiki_print_view",
488  $this->ctrl->getLinkTargetByClass(
489  "ilwikipagegui",
490  "printViewSelection"
491  ),
492  "printViewSelection"
493  );
494  }
495 
496  public function addPagesSubTabs(): void
497  {
498  $ilTabs = $this->tabs;
499  $ilCtrl = $this->ctrl;
500 
501  $ilTabs->activateTab("wiki_pages");
502 
503  $ilCtrl->setParameter(
504  $this,
505  "wpg_id",
507  $this->object->getId(),
508  ilWikiUtil::makeDbTitle($this->requested_page)
509  )
510  );
511  $ilCtrl->setParameter($this, "page", ilWikiUtil::makeUrlTitle($this->requested_page));
512  $ilTabs->addSubTabTarget(
513  "wiki_all_pages",
514  $this->ctrl->getLinkTarget($this, "allPages"),
515  "allPages"
516  );
517  $ilTabs->addSubTabTarget(
518  "wiki_recent_changes",
519  $this->ctrl->getLinkTarget($this, "recentChanges"),
520  "recentChanges"
521  );
522  $ilTabs->addSubTabTarget(
523  "wiki_new_pages",
524  $this->ctrl->getLinkTarget($this, "newPages"),
525  "newPages"
526  );
527  $ilTabs->addSubTabTarget(
528  "wiki_popular_pages",
529  $this->ctrl->getLinkTarget($this, "popularPages"),
530  "popularPages"
531  );
532  $ilTabs->addSubTabTarget(
533  "wiki_orphaned_pages",
534  $this->ctrl->getLinkTarget($this, "orphanedPages"),
535  "orphanedPages"
536  );
537  }
538 
539  protected function getTabs(): void
540  {
541  $ilCtrl = $this->ctrl;
542  $ilAccess = $this->access;
543  $lng = $this->lng;
544  $ilHelp = $this->help;
545 
546  $ilHelp->setScreenIdComponent("wiki");
547 
548 
549  // wiki tabs
550  if (in_array(strtolower($ilCtrl->getNextClass($this)), [strtolower(SettingsGUI::class)]) ||
551  in_array(
552  strtolower($ilCtrl->getCmdClass()),
553  array("", "ilobjectcontentstylesettingsgui", "ilobjwikigui",
554  "ilinfoscreengui", "ilpermissiongui", "ilexportgui", "ilratingcategorygui", "ilobjnotificationsettingsgui", "iltaxmdgui",
555  "ilwikistatgui", "ilwikipagetemplategui", "iladvancedmdsettingsgui", "ilsettingspermissiongui", 'ilrepositoryobjectsearchgui',
556  'ilobjecttranslationgui')
557  ) || $ilCtrl->getNextClass() === "ilpermissiongui") {
558  if ($this->requested_page !== "") {
559  $page_id = ($this->edit_request->getWikiPageId() > 0)
560  ? $this->edit_request->getWikiPageId()
561  : $this->pm->getPageIdForTitle(
562  $this->requested_page,
563  $this->edit_request->getTranslation()
564  );
565  if (is_null($page_id) && $this->edit_request->getFromPage() !== "") {
566  $page_id = $this->pm->getPageIdForTitle(
567  $this->edit_request->getFromPage(),
568  $this->edit_request->getTranslation()
569  );
570  }
571  if (!is_null($page_id)) {
572  $this->tabs_gui->setBackTarget(
573  $lng->txt("wiki_last_visited_page"),
574  $this->pm->getPermaLink(
575  $page_id,
576  $this->edit_request->getTranslation()
577  )
578  );
579  }
580  }
581 
582  // pages
583  if ($ilAccess->checkAccess('read', "", $this->object->getRefId())) {
584  $this->tabs_gui->addTab(
585  "wiki_pages",
586  $lng->txt("wiki_pages"),
587  $this->ctrl->getLinkTarget($this, "allPages")
588  );
589  }
590 
591  // info screen
592  if ($ilAccess->checkAccess('visible', "", $this->object->getRefId())) {
593  $this->tabs_gui->addTab(
594  "info_short",
595  $lng->txt("info_short"),
596  $this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary")
597  );
598  }
599 
600  // settings
601  if ($ilAccess->checkAccess('write', "", $this->object->getRefId())) {
602  $this->tabs_gui->addTab(
603  "settings",
604  $lng->txt("settings"),
605  $this->ctrl->getLinkTargetByClass(SettingsGUI::class)
606  );
607 
608  // metadata
609  $mdgui = new ilObjectMetaDataGUI($this->object, "wpg");
610  $mdtab = $mdgui->getTab();
611  if ($mdtab) {
612  $this->tabs_gui->addTab(
613  "advmd",
614  $this->lng->txt("meta_data"),
615  $mdtab
616  );
617  }
618  }
619 
620  // contributors
621  if ($ilAccess->checkAccess('write', "", $this->object->getRefId())) {
622  $this->tabs_gui->addTab(
623  "wiki_contributors",
624  $lng->txt("wiki_contributors"),
625  $this->ctrl->getLinkTarget($this, "listContributors")
626  );
627  }
628 
629  // statistics
630  if ($ilAccess->checkAccess('statistics_read', "", $this->object->getRefId())) {
631  $this->tabs_gui->addTab(
632  "statistics",
633  $lng->txt("statistics"),
634  $this->ctrl->getLinkTargetByClass("ilWikiStatGUI", "initial")
635  );
636  }
637 
638  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
639  $this->tabs_gui->addTab(
640  "export",
641  $lng->txt("export"),
642  $this->ctrl->getLinkTargetByClass("ilexportgui", "")
643  );
644  }
645 
646  // edit permissions
647  if ($ilAccess->checkAccess('edit_permission', "", $this->object->getRefId())) {
648  $this->tabs_gui->addTab(
649  "perm_settings",
650  $lng->txt("perm_settings"),
651  $this->ctrl->getLinkTargetByClass("ilpermissiongui", "perm")
652  );
653  }
654  }
655  }
656 
657  public function setSettingsSubTabs(string $a_active): void
658  {
659  $ilTabs = $this->tabs;
660  $ilCtrl = $this->ctrl;
661  $lng = $this->lng;
662  $ilAccess = $this->access;
663  if (in_array(
664  $a_active,
665  array("general_settings", "style", "imp_pages", "rating_categories", "obj_multilinguality",
666  "page_templates", "advmd", "permission_settings", "notifications", "lti_provider")
667  )) {
668  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
669  // general properties
670  $ilTabs->addSubTab(
671  "general_settings",
672  $lng->txt("wiki_general_settings"),
673  $ilCtrl->getLinkTarget($this, 'editSettings')
674  );
675 
676  // permission settings
677  $ilTabs->addSubTab(
678  "permission_settings",
679  $lng->txt("obj_permission_settings"),
680  $this->ctrl->getLinkTargetByClass("ilsettingspermissiongui", "")
681  );
682 
683  // style properties
684  $ilTabs->addSubTab(
685  "style",
686  $lng->txt("wiki_style"),
687  $ilCtrl->getLinkTargetByClass("ilObjectContentStyleSettingsGUI", "")
688  );
689  }
690 
691  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
692  // important pages
693  $ilTabs->addSubTab(
694  "imp_pages",
695  $lng->txt("wiki_navigation"),
696  $ilCtrl->getLinkTarget($this, 'editImportantPages')
697  );
698  }
699 
700  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
701  // page templates
702  $ilTabs->addSubTab(
703  "page_templates",
704  $lng->txt("wiki_page_templates"),
705  $ilCtrl->getLinkTargetByClass("ilwikipagetemplategui", "")
706  );
707 
708  // rating categories
709  if ($this->object->getRating() && $this->object->getRatingCategories()) {
710  $lng->loadLanguageModule("rating");
711  $ilTabs->addSubTab(
712  "rating_categories",
713  $lng->txt("rating_categories"),
714  $ilCtrl->getLinkTargetByClass(array('ilratinggui', 'ilratingcategorygui'), '')
715  );
716  }
717 
718  $ilTabs->addSubTab(
719  'notifications',
720  $lng->txt("notifications"),
721  $ilCtrl->getLinkTargetByClass("ilobjnotificationsettingsgui", '')
722  );
723 
724  $ilTabs->addSubTab(
725  'obj_multilinguality',
726  $lng->txt("obj_multilinguality"),
727  $this->ctrl->getLinkTargetByClass("ilobjecttranslationgui", "")
728  );
729  }
730 
731  // LTI Provider
732  $lti_settings = new ilLTIProviderObjectSettingGUI($this->object->getRefId());
733  if ($lti_settings->hasSettingsAccess()) {
734  $ilTabs->addSubTabTarget(
735  'lti_provider',
736  $this->ctrl->getLinkTargetByClass(ilLTIProviderObjectSettingGUI::class)
737  );
738  }
739 
740  $ilTabs->activateSubTab($a_active);
741  }
742  }
743 
744  public function editSettingsObject(): void
745  {
746  $this->ctrl->redirectByClass(SettingsGUI::class);
747  }
748 
749  public function listContributorsObject(): void
750  {
751  $tpl = $this->tpl;
752  $ilTabs = $this->tabs;
753 
754  $this->checkPermission("write");
755  $ilTabs->activateTab("wiki_contributors");
756 
757  $table_gui = new ilWikiContributorsTableGUI(
758  $this,
759  "listContributors",
760  $this->object->getId()
761  );
762 
763  $tpl->setContent($table_gui->getHTML());
764 
765  $this->setSideBlock();
766  }
767 
768  public function saveGradingObject(): void
769  {
770  $ilCtrl = $this->ctrl;
771  $lng = $this->lng;
772 
773  $this->checkPermission("write");
774 
775  $users = $this->edit_request->getUserIds();
776  $marks = $this->edit_request->getMarks();
777  $comments = $this->edit_request->getComments();
778  $status = $this->edit_request->getStatus();
779 
780  $saved = false;
781  foreach ($users as $user_id) {
782  if ($user_id != "") {
783  $marks_obj = new ilLPMarks($this->object->getId(), $user_id);
784  $new_mark = ilUtil::stripSlashes($marks[$user_id]);
785  $new_comment = ilUtil::stripSlashes($comments[$user_id] ?? "");
786  $new_status = ilUtil::stripSlashes($status[$user_id]);
787 
788  if ($marks_obj->getMark() !== $new_mark ||
789  $marks_obj->getComment() !== $new_comment ||
790  (int) ilWikiContributor::_lookupStatus($this->object->getId(), $user_id) !== (int) $new_status) {
791  ilWikiContributor::_writeStatus($this->object->getId(), $user_id, $new_status);
792  $marks_obj->setMark($new_mark);
793  $marks_obj->setComment($new_comment);
794  $marks_obj->update();
795  $saved = true;
796  }
797  }
798  }
799  if ($saved) {
800  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
801  }
802 
803  $ilCtrl->redirect($this, "listContributors");
804  }
805 
806  // add wiki to locator
807  protected function addLocatorItems(): void
808  {
809  $ilLocator = $this->locator;
810 
811  if (is_object($this->object)) {
812  $ilLocator->addItem(
813  $this->object->getTitle(),
814  self::getGotoLink($this->object->getRefId()),
815  "",
816  $this->requested_ref_id
817  );
818  }
819  }
820 
821  public static function _goto(string $a_target): void
822  {
823  global $DIC;
824  $main_tpl = $DIC->ui()->mainTemplate();
825 
826  $wpg_id = 0;
827  $lang = "";
828  $ilAccess = $DIC->access();
829  $lng = $DIC->language();
830  $ctrl = $DIC->ctrl();
831  $transl = $DIC->wiki()->internal()->gui()->request()->getTranslation();
832  $DIC->ctrl()->setParameterByClass(self::class, "transl", $transl);
833 
834 
835  $i = strpos($a_target, "_");
836  $a_page = "";
837  if ($i > 0) {
838  $a_page = substr($a_target, $i + 1);
839  $a_target = substr($a_target, 0, $i);
840  }
841 
842  if ($a_target === "wpage") {
843  $a_page_arr = explode("_", $a_page);
844  $wpg_id = (int) $a_page_arr[0];
845  $ref_id = (int) ($a_page_arr[1] ?? 0);
846  $lang = ($a_page_arr[2] ?? "");
847  $w_id = ilWikiPage::lookupWikiId($wpg_id);
848  if ($ref_id > 0) {
849  $refs = array($ref_id);
850  } else {
851  $refs = ilObject::_getAllReferences($w_id);
852  }
853  foreach ($refs as $r) {
854  if ($ilAccess->checkAccess("read", "", $r)) {
855  $a_target = $r;
856  $a_page = ilWikiPage::lookupTitle($wpg_id);
857  }
858  }
859  }
860 
861  if ($ilAccess->checkAccess("read", "", $a_target)) {
862  if ($wpg_id > 0) {
864  "ilobjwikigui",
865  "wpg_id",
866  $wpg_id
867  );
868  } else {
870  "ilobjwikigui",
871  "page",
872  ilWikiUtil::makeUrlTitle($a_page)
873  );
874  }
875  if ($lang != "") {
877  "ilobjwikigui",
878  "transl",
879  $lang
880  );
881  }
883  "ilwikihandlergui",
884  "ref_id",
885  $a_target
886  );
887  if ($a_page != "") {
889  ["ilwikihandlergui", "ilobjwikigui"],
890  "viewPage"
891  );
892  } else {
894  ["ilwikihandlergui"],
895  "view"
896  );
897  }
898  } elseif ($ilAccess->checkAccess("visible", "", $a_target)) {
899  ilObjectGUI::_gotoRepositoryNode($a_target, "infoScreen");
900  } elseif ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
901  $main_tpl->setOnScreenMessage('failure', sprintf(
902  $lng->txt("msg_no_perm_read_item"),
904  ), true);
906  }
907 
908  throw new ilPermissionException($lng->txt("permission_denied"));
909  }
910 
911  public static function getGotoLink(
912  int $a_ref_id,
913  string $a_page = "",
914  string $lang = "-"
915  ): string {
916  if ($a_page === "") {
918  }
919 
920  $append = (!in_array($lang, ["", "-"]))
921  ? "&transl=" . $lang
922  : "";
923  $goto = "goto.php?target=wiki_" . $a_ref_id . "_" .
924  ilWikiUtil::makeUrlTitle($a_page) . $append;
925  return $goto;
926  }
927 
928  public function viewPageObject(): void
929  {
930  $lng = $this->lng;
931  $ilCtrl = $this->ctrl;
932  $tpl = $this->tpl;
933  $ilTabs = $this->tabs;
934  $ilAccess = $this->access;
935 
936  $this->checkPermission("read");
937 
938  $ilTabs->clearTargets();
940 
941  $wpage_gui = $this->gui->content()->getCurrentPageGUI();
942 
943  // page exists, show it !
944  $ilCtrl->setParameter(
945  $this,
946  "page",
947  ilWikiUtil::makeUrlTitle($wpage_gui->getPageObject()->getTitle())
948  );
949 
950  $wpage_gui->setStyleId($this->content_style_domain->getEffectiveStyleId());
951 
952  $this->setContentStyleSheet();
953 
954  //$wpage_gui->setSideBlock();
955  $ilCtrl->redirectByClass(ilWikiPageGUI::class, "preview");
956  }
957 
958  public function allPagesObject(): void
959  {
960  $tpl = $this->tpl;
961 
962  $this->checkPermission("read");
963 
964  $this->addPagesSubTabs();
965 
966  $table_gui = new ilWikiPagesTableGUI(
967  $this,
968  "allPages",
969  $this->object->getId(),
971  );
972 
973  //$this->setSideBlock();
974  $tpl->setContent($table_gui->getHTML());
975  }
976 
980  public function popularPagesObject(): void
981  {
982  $tpl = $this->tpl;
983 
984  $this->checkPermission("read");
985 
986  $this->addPagesSubTabs();
987 
988  $table_gui = new ilWikiPagesTableGUI(
989  $this,
990  "popularPages",
991  $this->object->getId(),
993  );
994 
995  //$this->setSideBlock();
996  $tpl->setContent($table_gui->getHTML());
997  }
998 
1002  public function orphanedPagesObject(): void
1003  {
1004  $tpl = $this->tpl;
1005 
1006  $this->checkPermission("read");
1007 
1008  $this->addPagesSubTabs();
1009 
1010  $table_gui = new ilWikiPagesTableGUI(
1011  $this,
1012  "orphanedPages",
1013  $this->object->getId(),
1015  );
1016 
1017  //$this->setSideBlock();
1018  $tpl->setContent($table_gui->getHTML());
1019  }
1020 
1024  public function gotoPageObject(
1025  string $a_page = ""
1026  ): void {
1027  $ilCtrl = $this->ctrl;
1028 
1029  if ($a_page === "") {
1030  $a_page = $this->requested_page;
1031  }
1032 
1033  if ($this->pm->existsByTitle(
1034  ilWikiUtil::makeDbTitle($a_page),
1035  $this->edit_request->getTranslation()
1036  )) {
1037  // to do: get rid of this redirect
1038  ilUtil::redirect(self::getGotoLink($this->object->getRefId(), $a_page, $this->edit_request->getTranslation()));
1039  } else {
1040  if (!$this->access->checkAccess("add_pages", "", $this->object->getRefId())) {
1041  $this->tpl->setOnScreenMessage("failure", $this->lng->txt("no_permission"), true);
1042  $from_page_id = $this->pm->getPageIdForTitle($this->edit_request->getFromPage(), $this->edit_request->getTranslation());
1043  ilUtil::redirect($this->pm->getPermaLink($from_page_id, $this->edit_request->getTranslation()));
1044  }
1045  if ($this->isNewTranslatedPage()) {
1046  return;
1047  }
1048  if (!$this->object->getTemplateSelectionOnCreation()) {
1049  // check length
1050  if (ilStr::strLen(ilWikiUtil::makeDbTitle($a_page)) > 200) {
1051  $this->tpl->setOnScreenMessage(
1052  'failure',
1053  $this->lng->txt("wiki_page_title_too_long") . " (" . $a_page . ")",
1054  true
1055  );
1056  $ilCtrl->setParameterByClass(
1057  "ilwikipagegui",
1058  "page",
1059  ilWikiUtil::makeUrlTitle($this->edit_request->getFromPage())
1060  );
1061  $ilCtrl->redirectByClass("ilwikipagegui", "preview");
1062  }
1063 
1064  $this->pm->createWikiPage(
1065  $a_page,
1066  0,
1067  $this->edit_request->getTranslation()
1068  );
1069 
1070  // redirect to newly created page
1071  $ilCtrl->setParameterByClass("ilwikipagegui", "page", ilWikiUtil::makeUrlTitle(($a_page)));
1072  $ilCtrl->redirectByClass("ilwikipagegui", "edit");
1073  } else {
1074  $ilCtrl->setParameter($this, "page", ilWikiUtil::makeUrlTitle($this->requested_page));
1075  $ilCtrl->setParameter(
1076  $this,
1077  "from_page",
1078  ilWikiUtil::makeUrlTitle($this->edit_request->getFromPage())
1079  );
1080  $ilCtrl->redirect($this, "showTemplateSelection");
1081  }
1082  }
1083  }
1084 
1085  protected function isNewTranslatedPage(): bool
1086  {
1087  if (in_array($this->edit_request->getTranslation(), ["-", ""])) {
1088  return false;
1089  }
1090  $page = $this->requested_page;
1092  $this->object->getId(),
1093  ilWikiUtil::makeDbTitle($page),
1094  $this->edit_request->getTranslation()
1095  )) {
1096  $this->tabs_gui->clearTargets();
1097  $this->tabs_gui->setBackTarget(
1098  $this->lng->txt("back"),
1099  $this->pm->getPermaLink(
1100  $this->pm->getPageIdForTitle(
1101  $this->edit_request->getFromPage(),
1102  $this->edit_request->getTranslation()
1103  ),
1104  $this->edit_request->getTranslation()
1105  )
1106  );
1107  $form = $this->getNewTranslatedPageForm();
1108  $this->tpl->setContent($this->getRenderedTranslationInfo() . $form->render());
1109  return true;
1110  }
1111  return false;
1112  }
1113 
1114  protected function getRenderedTranslationInfo()
1115  {
1116  $mess = $this->gui->ui()->factory()->messageBox()->info(
1117  $this->lng->txt("wiki_translate_page_master_info")
1118  );
1119  return $this->gui->ui()->renderer()->render($mess);
1120  }
1121 
1122  protected function getNewTranslatedPageForm(): \ILIAS\Repository\Form\FormAdapterGUI
1123  {
1124  $pm = $this->domain->page()->page($this->object->getRefId());
1125  $options = [];
1126  foreach ($pm->getMasterPagesWithoutTranslation($this->edit_request->getTranslation()) as $page) {
1127  $options[$page->getId()] = $page->getTitle();
1128  }
1129  $append = " '" . $this->edit_request->getPage() . "'";
1130  $append .= " (" . $this->lng->txt("meta_l_" . $this->edit_request->getTranslation()) . ")";
1131  $append2 = " (" . $this->lng->txt("meta_l_" . $this->ot->getMasterLanguage()) . ")";
1132  $form = $this->gui->form([self::class], "createNewTranslatedPage")
1133  ->section("sec", $this->lng->txt("wiki_translation_page") . $append)
1134  ->switch("type", $this->lng->txt("wiki_page_in_master_language") . $append2, "", "existing")
1135  ->group("existing", $this->lng->txt("wiki_master_existing"))
1136  ->select("master_id", $this->lng->txt("wiki_master_title"), $options)
1137  ->required()
1138  ->group("new", $this->lng->txt("wiki_no_master"))
1139  ->text("master_title", $this->lng->txt("wiki_master_title"))
1140  ->end();
1141 
1142  if ($this->object->getTemplateSelectionOnCreation($this->edit_request->getTranslation())) {
1143  $form = $form->radio("page_templ", $this->lng->txt("wiki_page_template"), "", "0")->required();
1144  if ($this->object->getEmptyPageTemplate()) {
1145  $form = $form->radioOption("0", $this->lng->txt("wiki_empty_page"));
1146  }
1147  $wt = new ilWikiPageTemplate($this->object->getId());
1148  $ts = $wt->getAllInfo(ilWikiPageTemplate::TYPE_NEW_PAGES, $this->edit_request->getTranslation());
1149  foreach ($ts as $t) {
1150  $form = $form->radioOption($t["wpage_id"], $t["title"]);
1151  }
1152  }
1153 
1154  return $form;
1155  }
1156 
1157  protected function createNewTranslatedPageObject(): void
1158  {
1159  $form = $this->getNewTranslatedPageForm();
1160  if ($form->isValid()) {
1161  $page_template_id = 0;
1162  if ($this->object->getTemplateSelectionOnCreation($this->edit_request->getTranslation())) {
1163  $page_template_id = (int) $form->getData("page_templ");
1164  }
1165  if ($form->getData("type") === "new") {
1166  $wpg_id = $this->pm->createWikiPage(
1167  $form->getData("master_title")
1168  );
1169  } else {
1170  $wpg_id = $form->getData("master_id");
1171  }
1172  $wpg_id = $this->pm->createWikiPage(
1173  $this->edit_request->getPage(),
1174  $wpg_id,
1175  $this->edit_request->getTranslation(),
1176  $page_template_id
1177  );
1178  }
1179  $this->ctrl->setParameterByClass(ilWikiPageGUI::class, "wpg_id", $wpg_id);
1180  $this->ctrl->redirectByClass(ilWikiPageGUI::class, "preview");
1181  }
1182 
1183  public function randomPageObject(): void
1184  {
1185  $this->checkPermission("read");
1186 
1187  $page = ilWikiPage::getRandomPage($this->object->getId());
1188  $this->gotoPageObject($page);
1189  }
1190 
1191  public function recentChangesObject(): void
1192  {
1193  $tpl = $this->tpl;
1194 
1195  $this->checkPermission("read");
1196 
1197  $this->addPagesSubTabs();
1198 
1199  $table_gui = new ilWikiRecentChangesTableGUI(
1200  $this,
1201  "recentChanges",
1202  $this->object->getId()
1203  );
1204 
1205  //$this->setSideBlock();
1206  $tpl->setContent($table_gui->getHTML());
1207  }
1208 
1209  public function setSideBlock(int $a_wpg_id = 0): void
1210  {
1211  self::renderSideBlock($a_wpg_id, $this->object->getRefId());
1212  }
1213 
1214  public static function renderSideBlock(
1215  int $a_wpg_id,
1216  int $a_wiki_ref_id,
1217  ?ilWikiPage $a_wp = null
1218  ): void {
1219  global $DIC;
1220 
1221  $tpl = $DIC["tpl"];
1222  $lng = $DIC->language();
1223  $ilAccess = $DIC->access();
1224  $ilCtrl = $DIC->ctrl();
1225 
1226  $tpl->addJavaScript("assets/js/WikiPres.js");
1227 
1228  // setting asynch to false fixes #0019457, since otherwise ilBlockGUI would act on asynch and output html when side blocks
1229  // being processed during the export. This is a flaw in ilCtrl and/or ilBlockGUI.
1230  $tpl->addOnLoadCode("il.Wiki.Pres.init('" . $ilCtrl->getLinkTargetByClass("ilobjwikigui", "", "", false, false) . "');");
1231 
1232  if ($a_wpg_id > 0 && !$a_wp) {
1233  $a_wp = new ilWikiPage($a_wpg_id);
1234  }
1235 
1236  // search block
1237  $rcontent = ilRepositoryObjectSearchGUI::getSearchBlockHTML($lng->txt('wiki_search'));
1238 
1239 
1240  // quick navigation
1241  if ($a_wpg_id > 0) {
1242  // rating
1243  $wiki_id = ilObject::_lookupObjId($a_wiki_ref_id);
1244  if (ilObjWiki::_lookupRating($wiki_id) &&
1245  // ilObjWiki::_lookupRatingAsBlock($wiki_id) &&
1246  $a_wp->getRating()) {
1247  $rgui = new ilRatingGUI();
1248  $rgui->setObject($wiki_id, "wiki", $a_wpg_id, "wpg");
1249  $rgui->enableCategories(ilObjWiki::_lookupRatingCategories($wiki_id));
1250  $rgui->setYourRatingText("#");
1251  $rcontent .= $rgui->getBlockHTML($lng->txt("wiki_rate_page"));
1252  }
1253 
1254  // advanced metadata
1255  if (!ilWikiPage::lookupAdvancedMetadataHidden($a_wpg_id)) {
1256  $cmd = null;
1257  if ($ilAccess->checkAccess("write", "", $a_wiki_ref_id) ||
1258  $ilAccess->checkAccess("edit_page_meta", "", $a_wiki_ref_id)) {
1259  $cmd = array(
1260  "edit" => $ilCtrl->getLinkTargetByClass("ilwikipagegui", "editAdvancedMetaData"),
1261  "hide" => $ilCtrl->getLinkTargetByClass("ilwikipagegui", "hideAdvancedMetaData")
1262  );
1263  }
1264  $wiki = new ilObjWiki($a_wiki_ref_id);
1265  $callback = $wiki->getLinkMetadataValues()
1266  ? array($wiki, "decorateAdvMDValue")
1267  : null;
1268  $mdgui = new ilObjectMetaDataGUI($wiki, "wpg", $a_wpg_id);
1269  $rcontent .= $mdgui->getBlockHTML($cmd, $callback); // #17291
1270  }
1271  }
1272 
1273  // important pages
1274  $imp_pages_block = new ilWikiImportantPagesBlockGUI();
1275  $rcontent .= $imp_pages_block->getHTML();
1276 
1277  // wiki functions block
1278  if ($a_wpg_id > 0) {
1279  $wiki_functions_block = new ilWikiFunctionsBlockGUI();
1280  $wiki_functions_block->setPageObject($a_wp);
1281  $rcontent .= $wiki_functions_block->getHTML();
1282  }
1283 
1284  $tpl->setRightContent($rcontent);
1285  }
1286 
1287  public function newPagesObject(): void
1288  {
1289  $tpl = $this->tpl;
1290 
1291  $this->checkPermission("read");
1292 
1293  $this->addPagesSubTabs();
1294 
1295  $table_gui = new ilWikiPagesTableGUI(
1296  $this,
1297  "newPages",
1298  $this->object->getId(),
1300  );
1301 
1302  //$this->setSideBlock();
1303  $tpl->setContent($table_gui->getHTML());
1304  }
1305 
1306  protected function getPrintPageIds(): array
1307  {
1308  $page_ids = [];
1309  $ordering = $this->edit_request->getPrintOrdering();
1310 
1311  // multiple ordered page ids
1312  if (count($ordering) > 0) {
1313  asort($ordering);
1314  $page_ids = array_keys($ordering);
1315  }
1316  // single page
1317  elseif ($this->edit_request->getWikiPageId()) {
1318  $page_ids = array($this->edit_request->getWikiPageId());
1319  }
1320  return $page_ids;
1321  }
1322 
1323  public function getPrintView(bool $export = false): \ILIAS\Export\PrintProcessGUI
1324  {
1325  $page_ids = $export
1326  ? null
1327  : $this->getPrintPageIds();
1328  $provider = new \ILIAS\Wiki\WikiPrintViewProviderGUI(
1329  $this->lng,
1330  $this->ctrl,
1331  $this->object->getRefId(),
1332  $page_ids
1333  );
1334 
1335  return new \ILIAS\Export\PrintProcessGUI(
1336  $provider,
1337  $this->http,
1338  $this->ui,
1339  $this->lng
1340  );
1341  }
1342 
1343  public function printViewObject(): void
1344  {
1345  $print_view = $this->getPrintView();
1346  $print_view->sendPrintView();
1347  }
1348 
1349  public function performSearchObject(): void
1350  {
1351  $tpl = $this->tpl;
1352  $ilTabs = $this->tabs;
1353  $ilCtrl = $this->ctrl;
1354  $lng = $this->lng;
1355 
1356  $this->checkPermission("read");
1357 
1358  $ilTabs->setTabActive("wiki_search_results");
1359 
1360  if ($this->edit_request->getSearchTerm() === "") {
1361  $this->tpl->setOnScreenMessage('failure', $lng->txt("wiki_please_enter_search_term"), true);
1362  $ilCtrl->redirectByClass("ilwikipagegui", "preview");
1363  }
1364 
1365  $search_results = ilObjWiki::_performSearch(
1366  $this->object->getId(),
1367  $this->edit_request->getSearchTerm()
1368  );
1369  $table_gui = new ilWikiSearchResultsTableGUI(
1370  $this,
1371  "performSearch",
1372  $this->object->getId(),
1373  $search_results,
1374  $this->edit_request->getSearchTerm()
1375  );
1376 
1377  $this->setSideBlock();
1378  $tpl->setContent($table_gui->getHTML());
1379  }
1380 
1381  public function setContentStyleSheet(): void
1382  {
1383  $tpl = $this->tpl;
1384 
1385  if ($tpl == null) {
1386  $tpl = $this->tpl;
1387  }
1388 
1389  $this->content_style_gui->addCss($tpl, $this->object->getRefId());
1391  }
1392 
1393 
1394  //
1395  // Important pages
1396  //
1397 
1398  public function editImportantPagesObject(): void
1399  {
1400  $tpl = $this->tpl;
1401  $ilToolbar = $this->toolbar;
1402  $ilTabs = $this->tabs;
1403  $lng = $this->lng;
1404  $ilCtrl = $this->ctrl;
1405 
1406  $this->checkPermission("edit_wiki_navigation");
1407 
1408  $this->tpl->setOnScreenMessage('info', $lng->txt("wiki_navigation_info"));
1409 
1410  $ipages_ids = $this->imp_pages->getImportantPageIds();
1411 
1412  // list pages
1413  $pages = $this->pm->getAllPagesInfo();
1414  $options = array("" => $lng->txt("please_select"));
1415  foreach ($pages as $p) {
1416  if (!in_array($p->getId(), $ipages_ids)) {
1417  $options[$p->getId()] = ilStr::shortenTextExtended($p->getTitle(), 60, true);
1418  }
1419  }
1420  if (count($options) > 0) {
1421  $si = new ilSelectInputGUI($lng->txt("wiki_pages"), "imp_page_id");
1422  $si->setOptions($options);
1423  $si->setInfo($lng->txt(""));
1424  $ilToolbar->addInputItem($si);
1425  $ilToolbar->setFormAction($ilCtrl->getFormAction($this));
1426  $ilToolbar->addFormButton($lng->txt("add"), "addImportantPage");
1427  }
1428 
1429 
1430  $ilTabs->activateTab("settings");
1431  $this->setSettingsSubTabs("imp_pages");
1432 
1433  $imp_table = new ilImportantPagesTableGUI($this, "editImportantPages");
1434 
1435  $tpl->setContent($imp_table->getHTML());
1436  }
1437 
1438  public function addImportantPageObject(): void
1439  {
1440  $ilCtrl = $this->ctrl;
1441  $lng = $this->lng;
1442 
1443  $this->checkPermission("edit_wiki_navigation");
1444 
1445  $imp_page_id = $this->edit_request->getImportantPageId();
1446  if ($imp_page_id > 0) {
1447  $this->imp_pages->add($imp_page_id);
1448  $this->tpl->setOnScreenMessage('success', $lng->txt("wiki_imp_page_added"), true);
1449  }
1450  $ilCtrl->redirect($this, "editImportantPages");
1451  }
1452 
1453  public function confirmRemoveImportantPagesObject(): void
1454  {
1455  $ilCtrl = $this->ctrl;
1456  $tpl = $this->tpl;
1457  $lng = $this->lng;
1458 
1459  $imp_page_ids = $this->edit_request->getImportantPageIds();
1460  if (count($imp_page_ids) === 0) {
1461  $this->tpl->setOnScreenMessage('info', $lng->txt("no_checkbox"), true);
1462  $ilCtrl->redirect($this, "editImportantPages");
1463  } else {
1464  $cgui = new ilConfirmationGUI();
1465  $cgui->setFormAction($ilCtrl->getFormAction($this));
1466  $cgui->setHeaderText($lng->txt("wiki_sure_remove_imp_pages"));
1467  $cgui->setCancel($lng->txt("cancel"), "editImportantPages");
1468  $cgui->setConfirm($lng->txt("remove"), "removeImportantPages");
1469 
1470  foreach ($imp_page_ids as $i) {
1471  $cgui->addItem("imp_page_id[]", $i, ilWikiPage::lookupTitle((int) $i));
1472  }
1473 
1474  $tpl->setContent($cgui->getHTML());
1475  }
1476  }
1477 
1478  public function removeImportantPagesObject(): void
1479  {
1480  $ilCtrl = $this->ctrl;
1481  $lng = $this->lng;
1482 
1483  $this->checkPermission("edit_wiki_navigation");
1484 
1485  $imp_page_ids = $this->edit_request->getImportantPageIds();
1486  foreach ($imp_page_ids as $i) {
1487  $this->imp_pages->removeImportantPage($i);
1488  }
1489  $this->tpl->setOnScreenMessage('success', $lng->txt("wiki_removed_imp_pages"), true);
1490  $ilCtrl->redirect($this, "editImportantPages");
1491  }
1492 
1493  public function saveOrderingAndIndentObject(): void
1494  {
1495  $ilCtrl = $this->ctrl;
1496  $lng = $this->lng;
1497 
1498  $this->checkPermission("edit_wiki_navigation");
1499 
1500  $ordering = $this->edit_request->getImportantPageOrdering();
1501  $indentation = $this->edit_request->getImportantPageIndentation();
1502  $this->imp_pages->saveOrderingAndIndentation($ordering, $indentation);
1503  $this->tpl->setOnScreenMessage('success', $lng->txt("wiki_ordering_and_indent_saved"), true);
1504  $ilCtrl->redirect($this, "editImportantPages");
1505  }
1506 
1507  public function setAsStartPageObject(): void
1508  {
1509  $ilCtrl = $this->ctrl;
1510  $lng = $this->lng;
1511 
1512  $this->checkPermission("edit_wiki_navigation");
1513 
1514  $imp_page_ids = $this->edit_request->getImportantPageIds();
1515  if (count($imp_page_ids) !== 1) {
1516  $this->tpl->setOnScreenMessage('info', $lng->txt("wiki_select_one_item"), true);
1517  } else {
1518  $this->imp_pages->removeImportantPage($imp_page_ids[0]);
1519  $this->object->setStartPage(ilWikiPage::lookupTitle($imp_page_ids[0]));
1520  $this->object->update();
1521  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
1522  }
1523  $ilCtrl->redirect($this, "editImportantPages");
1524  }
1525 
1526 
1532  public function exportHTML(): void
1533  {
1535  $wiki = $this->object;
1536  $cont_exp = new Export\WikiHtmlExport($wiki);
1537 
1538  $format = explode("_", $this->edit_request->getFormat());
1539  if (($format[1] ?? "") === "comments") {
1540  $cont_exp->setMode(Export\WikiHtmlExport::MODE_COMMENTS);
1541  }
1542 
1543  $cont_exp->buildExportFile();
1544  }
1545 
1549  public static function lookupSubObjectTitle(
1550  int $a_wiki_id,
1551  string $a_page_id
1552  ): string {
1553  $page = new ilWikiPage($a_page_id);
1554  if ($page->getWikiId() === $a_wiki_id) {
1555  return $page->getTitle();
1556  }
1557  return "";
1558  }
1559 
1563  public function getSubObjectTitle(
1564  int $a_id,
1565  string $a_type
1566  ): string {
1567  return ilWikiPage::lookupTitle($a_id);
1568  }
1569 
1570  public function showTemplateSelectionObject(): void
1571  {
1572  $lng = $this->lng;
1573  $tpl = $this->tpl;
1574  $ilTabs = $this->tabs;
1575  $ilCtrl = $this->ctrl;
1576 
1577  $ilCtrl->setParameterByClass(
1578  "ilobjwikigui",
1579  "from_page",
1580  ilWikiUtil::makeUrlTitle($this->edit_request->getFromPage())
1581  );
1582  $ilTabs->clearTargets();
1583  $this->tpl->setOnScreenMessage('info', $lng->txt("wiki_page_not_exist_select_templ"));
1584 
1585  $form = $this->initTemplateSelectionForm();
1586  $tpl->setContent($form->getHTML());
1587  }
1588 
1590  {
1591  $lng = $this->lng;
1592  $ilCtrl = $this->ctrl;
1593 
1594  $form = new ilPropertyFormGUI();
1595 
1596  // page name
1597  $hi = new ilHiddenInputGUI("page");
1598  $hi->setValue($this->requested_page);
1599  $form->addItem($hi);
1600 
1601  // page template
1602  $radg = new ilRadioGroupInputGUI($lng->txt("wiki_page_template"), "page_templ");
1603  $radg->setRequired(true);
1604 
1605  if ($this->object->getEmptyPageTemplate()) {
1606  $op1 = new ilRadioOption($lng->txt("wiki_empty_page"), 0);
1607  $radg->addOption($op1);
1608  }
1609 
1610  $wt = new ilWikiPageTemplate($this->object->getId());
1611  $ts = $wt->getAllInfo(ilWikiPageTemplate::TYPE_NEW_PAGES, $this->edit_request->getTranslation());
1612  foreach ($ts as $t) {
1613  $op = new ilRadioOption($t["title"], $t["wpage_id"]);
1614  $radg->addOption($op);
1615  }
1616 
1617  $form->addItem($radg);
1618 
1619  // save and cancel commands
1620  $form->addCommandButton("createPageUsingTemplate", $lng->txt("wiki_create_page"));
1621  $form->addCommandButton("cancelCreationPageUsingTemplate", $lng->txt("cancel"));
1622 
1623  $form->setTitle($lng->txt("wiki_new_page") . ": " . $this->requested_page);
1624  $form->setFormAction($ilCtrl->getFormAction($this));
1625 
1626  return $form;
1627  }
1628 
1629  public function createPageUsingTemplateObject(): void
1630  {
1631  $tpl = $this->tpl;
1632  $lng = $this->lng;
1633  $ilCtrl = $this->ctrl;
1634 
1635  $form = $this->initTemplateSelectionForm();
1636  if ($form->checkInput()) {
1637  $a_page = $this->edit_request->getPage();
1638  $this->pm->createWikiPage(
1639  $a_page,
1640  0,
1641  $this->edit_request->getTranslation(),
1642  $this->edit_request->getPageTemplateId()
1643  );
1644 
1645  // redirect to newly created page
1646  $ilCtrl->setParameterByClass("ilwikipagegui", "page", ilWikiUtil::makeUrlTitle(($a_page)));
1647  $ilCtrl->redirectByClass("ilwikipagegui", "edit");
1648 
1649  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
1650  $ilCtrl->redirect($this, "");
1651  } else {
1652  $form->setValuesByPost();
1653  $tpl->setContent($form->getHTML());
1654  }
1655  }
1656 
1658  {
1659  $ilCtrl = $this->ctrl;
1660 
1661  // redirect to newly created page
1662  $ilCtrl->setParameterByClass(
1663  "ilwikipagegui",
1664  "page",
1665  ilWikiUtil::makeUrlTitle($this->edit_request->getFromPage())
1666  );
1667  $ilCtrl->redirectByClass("ilwikipagegui", "preview");
1668  }
1669 
1670  protected function checkPermissionBool(string $perm, string $cmd = "", string $type = "", ?int $ref_id = null): bool
1671  {
1672  if ($perm === "create") {
1673  return parent::checkPermissionBool($perm, $cmd, $type, $ref_id);
1674  } else {
1675  if (!$ref_id) {
1676  $ref_id = $this->object->getRefId();
1677  }
1678  return ilWikiPerm::check($perm, $ref_id, $cmd);
1679  }
1680  }
1681 
1682 
1683  //
1684  // User HTML Export
1685  //
1702  public function initUserHTMLExportObject(): void
1703  {
1704  $this->log->debug("init: " . $this->req_with_comments);
1705  $this->checkPermission("wiki_html_export");
1706  $this->object->initUserHTMLExport($this->req_with_comments);
1707  }
1708 
1712  public function startUserHTMLExportObject(): void
1713  {
1714  $this->log->debug("start: " . $this->req_with_comments);
1715  $this->checkPermission("wiki_html_export");
1716  $this->object->startUserHTMLExport($this->req_with_comments);
1717  }
1718 
1722  public function getUserHTMLExportProgressObject(): void
1723  {
1724  $this->log->debug("get progress: " . $this->req_with_comments);
1725  $this->checkPermission("wiki_html_export");
1726  $p = $this->object->getUserHTMLExportProgress($this->req_with_comments);
1727 
1729  $pb->setCurrent($p["progress"]);
1730 
1731  $r = new stdClass();
1732  $r->progressBar = $pb->render();
1733  $r->status = $p["status"];
1734  $this->log->debug("status: " . $r->status);
1735  echo(json_encode($r, JSON_THROW_ON_ERROR));
1736  exit;
1737  }
1738 
1739  public function downloadUserHTMLExportObject(): void
1740  {
1741  $this->log->debug("download");
1742  $this->checkPermission("wiki_html_export");
1743  $this->object->deliverUserHTMLExport();
1744  }
1745 
1747  {
1748  $this->log->debug("download");
1749  $this->checkPermission("wiki_html_export");
1750  $this->object->deliverUserHTMLExport(true);
1751  }
1752 
1753  protected function triggerAssignmentTool(): void
1754  {
1755  if (!is_object($this->object)) {
1756  return;
1757  }
1758  $ass_info = ilExcRepoObjAssignment::getInstance()->getAssignmentInfoOfObj(
1759  $this->object->getRefId(),
1760  $this->user->getId()
1761  );
1762  if (count($ass_info) > 0) {
1763  $ass_ids = array_map(static function ($i): int {
1764  return $i->getId();
1765  }, $ass_info);
1766  $this->tool_context->current()->addAdditionalData(ilExerciseGSToolProvider::SHOW_EXC_ASSIGNMENT_INFO, true);
1767  $this->tool_context->current()->addAdditionalData(ilExerciseGSToolProvider::EXC_ASS_IDS, $ass_ids);
1768  $this->tool_context->current()->addAdditionalData(
1770  $this->getAssignmentButtons()
1771  );
1772  }
1773  }
1774 
1778  protected function getAssignmentButtons(): array
1779  {
1780  $ilCtrl = $this->ctrl;
1781  $ui = $this->ui;
1782  $lng = $this->lng;
1783 
1784  $ass_info = ilExcRepoObjAssignment::getInstance()->getAssignmentInfoOfObj(
1785  $this->object->getRefId(),
1786  $this->user->getId()
1787  );
1788  $buttons = [];
1789  foreach ($ass_info as $i) { // should be only one
1790  $ass = new ilExAssignment($i->getId());
1791  $times_up = $ass->afterDeadlineStrict();
1792 
1793  // submit button
1794  if (!$times_up) {
1795  $ilCtrl->setParameterByClass("ilwikipagegui", "ass", $ass->getId());
1796  $submit_link = $ilCtrl->getLinkTargetByClass("ilwikipagegui", "finalizeAssignment");
1797  $ilCtrl->setParameterByClass("ilwikipagegui", "ass", "");
1798 
1799  $buttons[$i->getId()][] = $ui->factory()->button()->primary($lng->txt("wiki_finalize_wiki"), $submit_link);
1800  }
1801 
1802  // submitted files
1803  $submission = new ilExSubmission($ass, $this->user->getId());
1804  if ($submission->hasSubmitted()) {
1805  $submitted = $submission->getSelectedObject();
1806  if ($submitted?->getTimestamp() != "") {
1807  $ilCtrl->setParameterByClass("ilwikipagegui", "ass", $ass->getId());
1808  }
1809  $dl_link = $ilCtrl->getLinkTargetByClass("ilwikipagegui", "downloadExcSubFile");
1810  $ilCtrl->setParameterByClass("ilwikipagegui", "ass", "");
1811  $buttons[$i->getId()][] = $ui->factory()->button()->standard($lng->txt("wiki_download_submission"), $dl_link);
1812  }
1813  }
1814  return $buttons;
1815  }
1816 }
UI class for handling permissions that can be configured having the write permission for an object...
setRightContent(string $a_html)
Sets content of right column.
This class represents an option in a radio group.
WikiGUIRequest $edit_request
Class ilObjectMetaDataGUI.
ILIAS Style Content Object ObjectFacade $content_style_domain
ILIAS Wiki Page PageManager $pm
ILIAS HTTP Services $http
static _lookupComment(int $a_usr_id, int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getUserHTMLExportProgressObject()
Get user html export progress.
Exercise assignment.
const IL_WIKI_POPULAR_PAGES
static getLogger(string $a_component_id)
Get component logger.
This class represents a selection list property in a property form.
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...
Wiki page template gui class.
GUI class for the workflow of copying objects.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ROOT_FOLDER_ID
Definition: constants.php:32
prepareOutput(bool $show_sub_objects=true)
static _writeStatus(int $a_obj_id, int $a_user_id, int $a_status)
ILIAS DI UIServices $ui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface Observer Contains several chained tasks and infos about them.
Wiki statistics GUI class.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
addOnLoadCode(string $a_code, int $a_batch=2)
Add on load code.
static _getAllReferences(int $id)
get all reference ids for object ID
Help GUI class.
static renderSideBlock(int $a_wpg_id, int $a_wiki_ref_id, ?ilWikiPage $a_wp=null)
static lookupTitle(int $a_page_id, string $lang="-")
afterDeadlineStrict(bool $a_include_personal=true)
ILIAS Style Content GUIService $content_style_gui
infoScreenObject()
this one is called from the info button in the repository
initCreateForm(string $new_type)
static _gotoRepositoryNode(int $ref_id, string $cmd="")
TableGUI class for wiki pages table.
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
static _performSearch(int $a_wiki_id, string $a_searchterm)
Search in Wiki.
getSubObjectTitle(int $a_id, string $a_type)
Used for rating export.
loadLanguageModule(string $a_module)
Load language module.
setOptions(array $a_options)
static _lookupRatingCategories(int $a_wiki_id)
Lookup whether rating categories are activated.
static lookupWikiId(int $a_page_id)
downloadUserHTMLExportWithCommentsObject()
static lookupSubObjectTitle(int $a_wiki_id, string $a_page_id)
Get title for wiki page (used in ilNotesGUI)
getAllInfo(int $a_type=self::TYPE_ALL, string $lang="-")
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Wiki Content GUIService $content_gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
startUserHTMLExportObject()
Export html (as user)
static _lookupRating(int $a_wiki_id)
Lookup whether rating is activated.
static _lookupStatus(int $a_obj_id, int $a_user_id)
Lookup current success status (STATUS_NOT_GRADED|STATUS_PASSED|STATUS_FAILED)
static strLen(string $a_string)
Definition: class.ilStr.php:63
$provider
Definition: ltitoken.php:80
ilLanguage $lng
ContextServices $tool_context
This class represents a hidden form property in a property form.
ilObjectTranslation $ot
GUI class for public user profile presentation.
static http()
Fetches the global http state from ILIAS.
This class represents a property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
$GLOBALS["DIC"]
Definition: wac.php:53
getPrintView(bool $export=false)
GUI class for LTI provider object settings.
__construct( $a_data, int $a_id, bool $a_call_by_reference, bool $a_prepare_output=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setScreenIdComponent(string $a_comp)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectGUI Basic methods of all Output classes.
static lookupAdvancedMetadataHidden(int $a_page_id)
global $DIC
Definition: shib_login.php:22
initUserHTMLExportObject()
Current process:
getAssignmentButtons()
Get assignment buttons.
ilToolbarGUI $toolbar
$comments
ILIAS Wiki Navigation ImportantPageManager $imp_pages
static getRandomPage(int $a_wiki_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupStartPage(int $a_wiki_id)
static getGotoLink(int $a_ref_id, string $a_page="", string $lang="-")
ILIAS Wiki InternalGUIService $gui
setRequired(bool $a_required)
ilPropertyFormGUI $form_gui
setCustomRolesForSelection(array $a_roles)
Set custom roles for mapping to LTI roles.
setSettingsSubTabs(string $a_active)
static redirect(string $a_script)
$lang
Definition: xapiexit.php:25
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static _lookupMark(int $a_usr_id, int $a_obj_id)
const IL_WIKI_ALL_PAGES
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeUrlTitle(string $a_par)
static makeDbTitle(string $a_par)
static getPageIdForTitle(int $a_wiki_id, string $a_title, string $lang="-")
Get wiki page object for id and title.
addCss(string $a_css_file, string $media="screen")
Add a css file that should be included in the header.
static _wikiPageExists(int $a_wiki_id, string $a_title, string $lang="-")
setHeaderActionMenu(string $a_header)
Set header action menu.
__construct(Container $dic, ilPlugin $plugin)
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const IL_WIKI_ORPHANED_PAGES
ilAccessHandler $access
ILIAS Wiki InternalDomainService $domain
afterSave(ilObject $new_object)
static check(string $a_perm, int $a_ref_id, string $a_cmd="")
Exercise submission //TODO: This class has many static methods related to delivered "files"...
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setSideBlock(int $a_wpg_id=0)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addHeaderAction()
Add header action menu.
ilLocatorGUI $locator
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
GUI class for object translation handling.
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
gotoPageObject(string $a_page="")
static _goto(string $a_target)
$r
const IL_WIKI_NEW_PAGES