ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjFileBasedLMGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
29 {
32  protected ilTabsGUI $tabs;
33  protected ilHelpGUI $help;
34  public bool $output_prepared;
35 
36  public function __construct(
37  $a_data,
38  int $a_id = 0,
39  bool $a_call_by_reference = true,
40  bool $a_prepare_output = true
41  ) {
42  global $DIC;
43 
44  $this->lng = $DIC->language();
45  $this->user = $DIC->user();
46  $this->locator = $DIC["ilLocator"];
47  $this->tabs = $DIC->tabs();
48  $this->tree = $DIC->repositoryTree();
49  $this->tpl = $DIC["tpl"];
50  $this->access = $DIC->access();
51  $this->toolbar = $DIC->toolbar();
52  $this->help = $DIC["ilHelp"];
53  $lng = $DIC->language();
54  $ilCtrl = $DIC->ctrl();
55 
56  $this->ctrl = $ilCtrl;
57  $this->ctrl->saveParameter($this, array("ref_id"));
58 
59  $this->lm_request = $DIC->htmlLearningModule()
60  ->internal()
61  ->gui()
62  ->standardRequest();
63 
64  $this->type = "htlm";
65  $lng->loadLanguageModule("content");
66  $lng->loadLanguageModule("obj");
67 
68  parent::__construct($a_data, $a_id, $a_call_by_reference, false);
69  $this->output_prepared = $a_prepare_output;
70  }
71 
72  public function executeCommand(): void
73  {
75  $ilTabs = $this->tabs;
76 
77  $next_class = $this->ctrl->getNextClass($this);
78  $cmd = $this->ctrl->getCmd();
79 
80  if (
81  $this->getCreationMode() === true ||
82  strtolower($this->lm_request->getBaseClass()) === "iladministrationgui"
83  ) {
84  $this->prepareOutput();
85  } elseif (!in_array($cmd, array("", "framset")) || $next_class != "") {
86  $this->getTemplate();
87  $this->setLocator();
88  $this->setTabs();
89  }
90 
91  switch ($next_class) {
92  case 'ilobjectmetadatagui':
93  $this->checkPermission("write");
94  $ilTabs->activateTab('id_meta_data');
95  $md_gui = new ilObjectMetaDataGUI($this->object);
96  $this->ctrl->forwardCommand($md_gui);
97  break;
98 
99  case "ilfilesystemgui":
100  $this->checkPermission("write");
101  $ilTabs->activateTab('id_list_files');
102  $fs_gui = new ilFileSystemGUI($this->object->getDataDirectory());
103  $fs_gui->activateLabels(true, $this->lng->txt("cont_purpose"));
104  $fs_gui->setUseUploadDirectory(true);
105  $fs_gui->setTableId("htlmfs" . $this->object->getId());
106  if ($this->object->getStartFile() !== "") {
107  $fs_gui->labelFile(
108  (string) $this->object->getStartFile(),
109  $this->lng->txt("cont_startfile")
110  );
111  }
112  $fs_gui->addCommand($this, "setStartFile", $this->lng->txt("cont_set_start_file"));
113 
114  $this->ctrl->forwardCommand($fs_gui);
115 
116  // try to set start file automatically
117  /* this does not work anymore, see #33348
118  if (!ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId())) {
119  $do_update = false;
120 
121  $pcommand = $fs_gui->getLastPerformedCommand();
122  $last_cmd = $pcommand["cmd"] ?? "";
123  $valid = array("index.htm", "index.html", "start.htm", "start.html");
124  if ($last_cmd === "create_file") {
125  $file = strtolower(basename($pcommand["name"]));
126  if (in_array($file, $valid)) {
127  $this->object->setStartFile($pcommand["name"]);
128  $do_update = $pcommand["name"];
129  }
130  } elseif ($last_cmd === "unzip_file") {
131  $zip_file = strtolower(basename($pcommand["name"]));
132  $suffix = strrpos($zip_file, ".");
133  if ($suffix) {
134  $zip_file = substr($zip_file, 0, $suffix);
135  }
136  foreach ($pcommand["added"] as $file) {
137  $chk_file = null;
138  if (stripos($file, ".htm") !== false) {
139  $chk_file = strtolower(basename($file));
140  $suffix = strrpos($chk_file, ".");
141  if ($suffix) {
142  $chk_file = substr($chk_file, 0, $suffix);
143  }
144  }
145  if (in_array(basename($file), $valid) ||
146  ($zip_file && $chk_file && $chk_file == $zip_file)) {
147  $this->object->setStartFile($file);
148  $do_update = $file;
149  break;
150  }
151  }
152  }
153 
154  if ($do_update) {
155  $this->tpl->setOnScreenMessage('info', sprintf($this->lng->txt("cont_start_file_set_to"), $do_update), true);
156 
157  $this->object->update();
158  $this->ctrl->redirectByClass("ilfilesystemgui", "listFiles");
159  }
160  }*/
161  break;
162 
163  case "ilinfoscreengui":
164  $this->showInfoScreen();
165  break;
166 
167  case "illearningprogressgui":
168  $ilTabs->activateTab('id_learning_progress');
169  $user_id = ($this->lm_request->getUserId() > 0)
170  ? $this->lm_request->getUserId()
171  : $ilUser->getId();
172  $new_gui = new ilLearningProgressGUI(
174  $this->object->getRefId(),
175  $user_id
176  );
177  $this->ctrl->forwardCommand($new_gui);
178  break;
179 
180  case 'ilpermissiongui':
181  $ilTabs->activateTab('id_permissions');
182  $perm_gui = new ilPermissionGUI($this);
183  $ret = $this->ctrl->forwardCommand($perm_gui);
184  break;
185 
186  case "ilexportgui":
187  $ilTabs->activateTab("export");
188  $exp_gui = new ilExportGUI($this);
189  $exp_gui->addFormat("xml");
190  $exp_gui->addFormat("html", "", $this, "exportHTML");
191  $ret = $this->ctrl->forwardCommand($exp_gui);
192  break;
193 
194  case "ilcommonactiondispatchergui":
196  $this->ctrl->forwardCommand($gui);
197  break;
198 
199  default:
200  $cmd = $this->ctrl->getCmd("listFiles");
201  if (
202  $this->getCreationMode() === true ||
203  strtolower($this->lm_request->getBaseClass()) === "iladministrationgui"
204  ) {
205  $cmd .= "Object";
206  }
207  $ret = $this->$cmd();
208  break;
209  }
210 
211  $this->addHeaderAction();
212  }
213 
214  protected function initCreationForms(string $new_type): array
215  {
216  return [
217  self::CFORM_NEW => $this->initCreateForm($new_type),
218  self::CFORM_IMPORT => $this->initImportForm($new_type)
219  ];
220  }
221 
222  final public function cancelCreationObject(): void
223  {
224  $ilCtrl = $this->ctrl;
225 
226  $ilCtrl->redirectByClass("ilrepositorygui", "frameset");
227  }
228 
229  public function properties(): void
230  {
231  $tpl = $this->tpl;
232  $ilTabs = $this->tabs;
233 
234  $ilTabs->activateTab("id_settings");
235 
236  $this->initSettingsForm();
237  $this->getSettingsFormValues();
238  $tpl->setContent($this->form->getHTML());
239  }
240 
241  public function initSettingsForm(): void
242  {
243  $obj_service = $this->getObjectService();
244  $lng = $this->lng;
245  $ilCtrl = $this->ctrl;
246 
247  $this->form = new ilPropertyFormGUI();
248 
249  // title
250  $ti = new ilTextInputGUI($this->lng->txt("title"), "title");
251  $ti->setSize(min(40, ilObject::TITLE_LENGTH));
252  $ti->setMaxLength(ilObject::TITLE_LENGTH);
253  $ti->setRequired(true);
254  $this->form->addItem($ti);
255 
256  // description
257  $ta = new ilTextAreaInputGUI($this->lng->txt("description"), "desc");
258  $ta->setCols(40);
259  $ta->setRows(2);
260  $this->form->addItem($ta);
261 
262  // online
263  $cb = new ilCheckboxInputGUI($lng->txt("cont_online"), "cobj_online");
264  $cb->setOptionTitle($lng->txt(""));
265  $cb->setValue("y");
266  $this->form->addItem($cb);
267 
268  // startfile
269  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
270 
271  $ne = new ilNonEditableValueGUI($lng->txt("cont_startfile"), "");
272  if ($startfile !== "") {
273  $ne->setValue(basename($startfile));
274  } else {
275  $ne->setValue(basename($this->lng->txt("no_start_file")));
276  }
277  $this->form->addItem($ne);
278 
279  $pres = new ilFormSectionHeaderGUI();
280  $pres->setTitle($this->lng->txt('obj_presentation'));
281  $this->form->addItem($pres);
282 
283  // tile image
284  $obj_service->commonSettings()->legacyForm($this->form, $this->object)->addTileImage();
285 
286  $this->form->addCommandButton("saveProperties", $lng->txt("save"));
287  $this->form->addCommandButton("toFilesystem", $lng->txt("cont_set_start_file"));
288 
289  $this->form->setTitle($lng->txt("cont_lm_properties"));
290  $this->form->setFormAction($ilCtrl->getFormAction($this, "saveProperties"));
291 
292  // additional features
293  $section = new ilFormSectionHeaderGUI();
294  $section->setTitle($this->lng->txt('obj_features'));
295  $this->form->addItem($section);
296 
298  $this->object->getId(),
299  $this->form,
300  [
302  ]
303  );
304  }
305 
306  public function getSettingsFormValues(): void
307  {
308  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
309 
310  $values = array();
311  $values['cobj_online'] = !$this->object->getOfflineStatus();
312  if ($startfile !== "") {
313  $startfile = basename($startfile);
314  } else {
315  $startfile = $this->lng->txt("no_start_file");
316  }
317 
318  $values["startfile"] = $startfile;
319  $values["title"] = $this->object->getTitle();
320  $values["desc"] = $this->object->getLongDescription();
321  $values["cont_show_info_tab"] = $this->object->isInfoEnabled();
322 
323  $this->form->setValuesByArray($values);
324  }
325 
326  public function toFilesystem(): void
327  {
328  $ilCtrl = $this->ctrl;
329  $ilCtrl->redirectByClass("ilfilesystemgui", "listFiles");
330  }
331 
332  public function saveProperties(): void
333  {
334  $tpl = $this->tpl;
335  $ilTabs = $this->tabs;
336  $obj_service = $this->getObjectService();
337 
338  $this->initSettingsForm();
339  if ($this->form->checkInput()) {
340  $this->object->setTitle($this->form->getInput("title"));
341  $this->object->setDescription($this->form->getInput("desc"));
342  $this->object->setOfflineStatus(!(bool) $this->form->getInput("cobj_online"));
343 
344  $this->object->update();
345 
346  // tile image
347  $obj_service->commonSettings()->legacyForm($this->form, $this->object)->saveTileImage();
348 
349  // services
351  $this->object->getId(),
352  $this->form,
353  array(
355  )
356  );
357 
358  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
359  $this->ctrl->redirect($this, "properties");
360  }
361 
362  $ilTabs->activateTab("id_settings");
363  $this->form->setValuesByPost();
364  $tpl->setContent($this->form->getHTML());
365  }
366 
367  public function editObject(): void
368  {
369  if (!$this->rbac_system->checkAccess("visible,write", $this->object->getRefId())) {
370  throw new ilPermissionException($this->lng->txt("permission_denied"));
371  }
372  }
373 
374  public function edit(): void
375  {
376  $this->prepareOutput();
377  $this->editObject();
378  }
379 
380  public function cancel(): void
381  {
382  $this->cancelObject();
383  }
384 
385  protected function afterSave(ilObject $new_object): void
386  {
387  if (!$new_object->getStartFile()) {
388  // try to set start file automatically
389  $files = array();
390  ilFileUtils::recursive_dirscan($new_object->getDataDirectory(), $files);
391  if (isset($files["file"])) {
392  $zip_file = null;
393  if (stripos($new_object->getTitle(), ".zip") !== false) {
394  $zip_file = strtolower($new_object->getTitle());
395  $suffix = strrpos($zip_file, ".");
396  if ($suffix) {
397  $zip_file = substr($zip_file, 0, $suffix);
398  }
399  }
400  $valid = array("index.htm", "index.html", "start.htm", "start.html");
401  foreach ($files["file"] as $idx => $file) {
402  $chk_file = null;
403  if (stripos($file, ".htm") !== false) {
404  $chk_file = strtolower($file);
405  $suffix = strrpos($chk_file, ".");
406  if ($suffix) {
407  $chk_file = substr($chk_file, 0, $suffix);
408  }
409  }
410  if (in_array($file, $valid) ||
411  ($chk_file && $zip_file && $chk_file == $zip_file)) {
412  $new_object->setStartFile(str_replace($new_object->getDataDirectory() . "/", "", $files["path"][$idx]) . $file);
413  $new_object->update();
414  break;
415  }
416  }
417  }
418  }
419 
420  // always send a message
421  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
422  $this->object = $new_object;
423  $this->redirectAfterCreation();
424  }
425 
426  public function update(): void
427  {
428  $this->updateObject();
429  }
430 
431  public function setStartFile(string $a_file): void
432  {
433  $this->object->setStartFile($a_file);
434  $this->object->update();
435  $this->ctrl->redirectByClass("ilfilesystemgui", "listFiles");
436  }
437 
438  public function getTemplate(): void
439  {
440  $this->tpl->loadStandardTemplate();
441  }
442 
443  public function showLearningModule(): void
444  {
446 
447  // #9483
448  if ($ilUser->getId() !== ANONYMOUS_USER_ID) {
450  $ilUser->getId(),
451  $this->object->getId(),
452  $this->object->getRefId(),
453  "htlm"
454  );
455 
456  ilLPStatusWrapper::_updateStatus($this->object->getId(), $ilUser->getId());
457  }
458 
459  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
461  if ($startfile !== "") {
462  ilUtil::redirect($startfile);
463  }
464  }
465 
469  public function infoScreen(): void
470  {
471  $this->ctrl->setCmd("showSummary");
472  $this->ctrl->setCmdClass("ilinfoscreengui");
473  $this->showInfoScreen();
474  }
475 
476  public function showInfoScreen(): void
477  {
478  $ilToolbar = $this->toolbar;
479  $ilAccess = $this->access;
480  $ilTabs = $this->tabs;
481 
482  $ilTabs->activateTab('id_info');
483 
484  $this->lng->loadLanguageModule("meta");
485 
486  $info = new ilInfoScreenGUI($this);
487  $info->enablePrivateNotes();
488  $info->enableLearningProgress();
489 
490  $info->enableNews();
491  if ($ilAccess->checkAccess("write", "", $this->requested_ref_id)) {
492  $info->enableNewsEditing();
493 
494  $news_set = new ilSetting("news");
495  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
496  if ($enable_internal_rss) {
497  $info->setBlockProperty("news", "settings", true);
498  }
499  }
500 
501  // add read / back button
502  if ($ilAccess->checkAccess("read", "", $this->requested_ref_id)) {
503  // #15127
504  $button = ilLinkButton::getInstance();
505  $button->setCaption("view");
506  $button->setPrimary(true);
507  $button->setUrl("ilias.php?baseClass=ilHTLMPresentationGUI&ref_id=" . $this->object->getRefId());
508  $button->setTarget("ilContObj" . $this->object->getId());
509  $ilToolbar->addButtonInstance($button);
510  }
511 
512  // show standard meta data section
513  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
514 
515  // forward the command
516  $this->ctrl->forwardCommand($info);
517  }
518 
519  protected function setTabs(): void
520  {
521  $this->getTabs();
522  $this->setTitleAndDescription();
523  }
524 
525  protected function getTabs(): void
526  {
527  $ilAccess = $this->access;
528  $ilTabs = $this->tabs;
529  $lng = $this->lng;
530  $ilHelp = $this->help;
531 
532  $ilHelp->setScreenIdComponent("htlm");
533 
534  if ($ilAccess->checkAccess('write', '', $this->ref_id)) {
535  $ilTabs->addTab(
536  "id_list_files",
537  $lng->txt("cont_list_files"),
538  $this->ctrl->getLinkTargetByClass("ilfilesystemgui", "listFiles")
539  );
540  }
541 
542  if ($ilAccess->checkAccess('visible', '', $this->ref_id) && $this->object->isInfoEnabled()) {
543  $ilTabs->addTab(
544  "id_info",
545  $lng->txt("info_short"),
546  $this->ctrl->getLinkTargetByClass(array("ilobjfilebasedlmgui", "ilinfoscreengui"), "showSummary")
547  );
548  }
549 
550  if ($ilAccess->checkAccess('write', '', $this->ref_id)) {
551  $ilTabs->addTab(
552  "id_settings",
553  $lng->txt("settings"),
554  $this->ctrl->getLinkTarget($this, "properties")
555  );
556  }
557 
558  if (ilLearningProgressAccess::checkAccess($this->object->getRefId())) {
559  $ilTabs->addTab(
560  "id_learning_progress",
561  $lng->txt("learning_progress"),
562  $this->ctrl->getLinkTargetByClass(array('ilobjfilebasedlmgui','illearningprogressgui'), '')
563  );
564  }
565 
566  if ($ilAccess->checkAccess('write', '', $this->ref_id)) {
567  $mdgui = new ilObjectMetaDataGUI($this->object);
568  $mdtab = $mdgui->getTab();
569  if ($mdtab) {
570  $ilTabs->addTab(
571  "id_meta_data",
572  $lng->txt("meta_data"),
573  $mdtab
574  );
575  }
576  }
577 
578 
579  // export
580  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
581  $ilTabs->addTab(
582  "export",
583  $lng->txt("export"),
584  $this->ctrl->getLinkTargetByClass("ilexportgui", "")
585  );
586  }
587 
588  if ($ilAccess->checkAccess('edit_permission', '', $this->object->getRefId())) {
589  $ilTabs->addTab(
590  "id_permissions",
591  $lng->txt("perm_settings"),
592  $this->ctrl->getLinkTargetByClass(array(get_class($this),'ilpermissiongui'), "perm")
593  );
594  }
595 
596  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
597  if ($startfile !== "" && $ilAccess->checkAccess('read', '', $this->ref_id)) {
598  $ilTabs->addNonTabbedLink(
599  "presentation_view",
600  $this->lng->txt("glo_presentation_view"),
601  "ilias.php?baseClass=ilHTLMPresentationGUI&ref_id=" . $this->object->getRefId(),
602  "_blank"
603  );
604  }
605  }
606 
607  public static function _goto(string $a_target): void
608  {
609  global $DIC;
610  $main_tpl = $DIC->ui()->mainTemplate();
611 
612  $lng = $DIC->language();
613  $ilAccess = $DIC->access();
614 
615  if ($ilAccess->checkAccess("read", "", $a_target) ||
616  $ilAccess->checkAccess("visible", "", $a_target)) {
617  ilObjectGUI::_gotoRepositoryNode($a_target, "infoScreen");
618  } elseif ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
619  $main_tpl->setOnScreenMessage('failure', sprintf(
620  $lng->txt("msg_no_perm_read_item"),
622  ), true);
624  }
625 
626  throw new ilPermissionException($lng->txt("msg_no_perm_read_lm"));
627  }
628 
629  protected function addLocatorItems(): void
630  {
631  $ilLocator = $this->locator;
632 
633  if (is_object($this->object)) {
634  $ilLocator->addItem(
635  $this->object->getTitle(),
636  $this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary"),
637  "",
639  );
640  }
641  }
642 
643  protected function importFileObject(int $parent_id = null): void
644  {
645  try {
646  parent::importFileObject();
648  // since there is no manifest xml we assume that this is an HTML export file
649  $this->createFromDirectory($e->getTmpDir());
650  }
651  }
652 
653  protected function afterImport(ilObject $new_object): void
654  {
655  $this->ctrl->setParameter($this, "ref_id", $new_object->getRefId());
656  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
657  $this->ctrl->redirect($this, "properties");
658  }
659 
660  public function createFromDirectory(string $a_dir): void
661  {
662  if ($a_dir === "" || !$this->checkPermissionBool("create", "", "htlm")) {
663  throw new ilPermissionException($this->lng->txt("no_create_permission"));
664  }
665 
666  // create instance
667  $newObj = new ilObjFileBasedLM();
668  $filename = ilUtil::stripSlashes($_FILES["importfile"]["name"]);
669  $newObj->setTitle($filename);
670  $newObj->setDescription("");
671  $newObj->create();
672  $newObj->populateByDirectoy($a_dir, $filename);
673  $this->putObjectInTree($newObj);
674 
675  $this->afterSave($newObj);
676  }
677 
678 
682 
683  public function exportHTML(): void
684  {
686  $this->object->getId(),
687  "html",
688  $this->object->getType()
689  );
690  $export_dir = ilExport::_getExportDirectory(
691  $this->object->getId(),
692  "html",
693  $this->object->getType()
694  );
695 
696  $subdir = $this->object->getType() . "_" . $this->object->getId();
697 
698  $target_dir = $export_dir . "/" . $subdir;
699 
700  ilFileUtils::delDir($target_dir);
701  ilFileUtils::makeDir($target_dir);
702 
703  $source_dir = $this->object->getDataDirectory();
704 
705  ilFileUtils::rCopy($source_dir, $target_dir);
706 
707  // zip it all
708  $date = time();
709  $zip_file = $export_dir . "/" . $date . "__" . IL_INST_ID . "__" .
710  $this->object->getType() . "_" . $this->object->getId() . ".zip";
711  ilFileUtils::zip($target_dir, $zip_file);
712 
713  ilFileUtils::delDir($target_dir);
714  }
715 
716  public function redirectAfterCreation(): void
717  {
718  $ctrl = $this->ctrl;
719  $ctrl->setParameterByClass("ilObjFileBasedLMGUI", "ref_id", $this->object->getRefId());
720  $ctrl->redirectByClass(["ilrepositorygui", "ilObjFileBasedLMGUI"], "properties");
721  }
722 
723 
724  public function learningProgress(): void
725  {
726  $this->ctrl->redirectByClass("illearningprogressgui", "");
727  }
728 
729  public function redrawHeaderAction(): void
730  {
731  $this->redrawHeaderActionObject();
732  }
733 }
redrawHeaderActionObject()
Ajax call: redraw action header only.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
activateLabels(bool $a_act, string $a_label_header)
Class ilInfoScreenGUI.
redirectByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
initImportForm(string $new_type)
__construct( $a_data, int $a_id=0, bool $a_call_by_reference=true, bool $a_prepare_output=true)
const IL_INST_ID
Definition: constants.php:40
const ANONYMOUS_USER_ID
Definition: constants.php:27
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...
cancelObject()
cancel action and go back to previous page
const ROOT_FOLDER_ID
Definition: constants.php:32
static _goto(string $a_target)
const TITLE_LENGTH
prepareOutput(bool $show_sub_objects=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
Help GUI class.
$valid
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _gotoRepositoryNode(int $ref_id, string $cmd="")
This class represents a checkbox property in a property form.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
loadLanguageModule(string $a_module)
Load language module.
static updateServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object.
infoScreen()
this one is called from the info button in the repository
static _lookupObjId(int $ref_id)
afterSave(ilObject $new_object)
static _tracProgress(int $a_user_id, int $a_obj_id, int $a_ref_id, string $a_obj_type='')
global $DIC
Definition: feed.php:28
StandardGUIRequest $lm_request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLanguage $lng
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
afterImport(ilObject $new_object)
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
setContent(string $a_html)
Sets content for standard template.
static signFolderOfStartFile(string $start_file_path)
static recursive_dirscan(string $dir, array &$arr)
Recursively scans a given directory and writes path and filename into referenced array.
setScreenIdComponent(string $a_comp)
static _createExportDirectory(int $a_obj_id, string $a_export_type="xml", string $a_obj_type="")
Class ilObjectGUI Basic methods of all Output classes.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
ilToolbarGUI $toolbar
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static initServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
form( $class_path, string $cmd)
$filename
Definition: buildRTE.php:78
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static redirect(string $a_script)
putObjectInTree(ilObject $obj, int $parent_node_id=null)
Add object to tree at given position.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
activateTab(string $a_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
initCreateForm(string $new_type)
This class represents a text area property in a property form.
ilAccessHandler $access
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
$ilUser
Definition: imgupload.php:34
addItem(string $a_title, string $a_link, string $a_frame="", int $a_ref_id=0, ?string $type=null)
User Interface class for file based learning modules (HTML)
updateObject()
updates object entry in object_data
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
File System Explorer GUI class.
importFileObject(int $parent_id=null)
addHeaderAction()
Add header action menu.
ilLocatorGUI $locator
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
setOptionTitle(string $a_optiontitle)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
initCreationForms(string $new_type)