ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFileBasedLMGUI.php
Go to the documentation of this file.
1 <?php
2 
24 
34 {
35  private const PARAM_PATH = "path";
36  public const CMD_LIST_FILES = "listFiles";
37  private \ILIAS\ResourceStorage\Services $irss;
38  private \ILIAS\HTTP\Services $http;
39  protected \ILIAS\HTMLLearningModule\InternalGUIService $gui;
42  protected ilTabsGUI $tabs;
43  protected ilHelpGUI $help;
44  public bool $output_prepared;
45 
46  public function __construct(
47  $a_data,
48  int $a_id = 0,
49  bool $a_call_by_reference = true,
50  bool $a_prepare_output = true
51  ) {
52  global $DIC;
53 
54  $this->irss = $DIC->resourceStorage();
55  $this->lng = $DIC->language();
56  $this->user = $DIC->user();
57  $this->locator = $DIC["ilLocator"];
58  $this->tabs = $DIC->tabs();
59  $this->tree = $DIC->repositoryTree();
60  $this->tpl = $DIC["tpl"];
61  $this->access = $DIC->access();
62  $this->toolbar = $DIC->toolbar();
63  $this->help = $DIC["ilHelp"];
64  $this->http = $DIC->http();
65  $lng = $DIC->language();
66  $ilCtrl = $DIC->ctrl();
67 
68  $this->ctrl = $ilCtrl;
69  $this->ctrl->saveParameter($this, array("ref_id"));
70 
71  $this->lm_request = $DIC->htmlLearningModule()
72  ->internal()
73  ->gui()
74  ->standardRequest();
75 
76  $this->type = "htlm";
77  $lng->loadLanguageModule("content");
78  $lng->loadLanguageModule("obj");
79 
80  parent::__construct($a_data, $a_id, $a_call_by_reference, false);
81  $this->output_prepared = $a_prepare_output;
82  $this->gui = $DIC->htmlLearningModule()->internal()->gui();
83  }
84 
85  public function executeCommand(): void
86  {
87  $next_class = $this->ctrl->getNextClass($this);
88  $cmd = $this->ctrl->getCmd();
89 
90  if (
91  $this->getCreationMode() === true ||
92  strtolower($this->lm_request->getBaseClass()) === "iladministrationgui"
93  ) {
94  $this->prepareOutput();
95  } elseif (!in_array($cmd, array("", "framset")) || $next_class != "") {
96  $this->tpl->loadStandardTemplate();
97  $this->setLocator();
98  $this->setTabs();
99  }
100 
101  switch ($next_class) {
102  case strtolower(ilContainerResourceGUI::class):
103  $this->tabs->activateTab('id_list_files');
104  // Check wite access to determine upload and manage capabilities
105  $check_access = $this->access->checkAccess('write', '', $this->object->getRefId());
106 
107  // Build the view configuration
108  $view_configuration = new Configuration(
109  $this->object->getResource(),
110  new ilHTLMStakeholder(),
111  $this->lng->txt('files'),
113  250,
114  $check_access,
115  $check_access
116  );
117 
118  // Add a single action for text-files to set as startfile
119  $view_configuration = $view_configuration->withExternalAction(
120  $this->lng->txt('cont_set_start_file'),
121  self::class,
122  'setStartFile',
123  'lm',
124  self::PARAM_PATH,
125  false,
126  ['text/*']
127  );
128 
129  // build the collection GUI
130  $container_gui = new ilContainerResourceGUI(
131  $view_configuration
132  );
133 
134  // forward the command
135  $this->ctrl->forwardCommand($container_gui);
136  break;
137  case 'ilobjectmetadatagui':
138  $this->checkPermission("write");
139  $this->tabs->activateTab('id_meta_data');
140  $md_gui = new ilObjectMetaDataGUI($this->object);
141  $this->ctrl->forwardCommand($md_gui);
142  break;
143 
144  case "ilinfoscreengui":
145  $this->showInfoScreen();
146  break;
147 
148  case "illearningprogressgui":
149  $this->tabs->activateTab('id_learning_progress');
150  $user_id = ($this->lm_request->getUserId() > 0)
151  ? $this->lm_request->getUserId()
152  : $this->user->getId();
153  $new_gui = new ilLearningProgressGUI(
155  $this->object->getRefId(),
156  $user_id
157  );
158  $this->ctrl->forwardCommand($new_gui);
159  break;
160 
161  case 'ilpermissiongui':
162  $this->tabs->activateTab('id_permissions');
163  $perm_gui = new ilPermissionGUI($this);
164  $ret = $this->ctrl->forwardCommand($perm_gui);
165  break;
166 
167  case "ilexportgui":
168  $this->tabs->activateTab("export");
169  $exp_gui = new ilExportGUI($this);
170  $ret = $this->ctrl->forwardCommand($exp_gui);
171  break;
172 
173  case "ilcommonactiondispatchergui":
175  $this->ctrl->forwardCommand($gui);
176  break;
177 
178  default:
179  $cmd = $this->ctrl->getCmd(self::CMD_LIST_FILES);
180  if (
181  $this->getCreationMode() === true ||
182  strtolower($this->lm_request->getBaseClass()) === "iladministrationgui"
183  ) {
184  $cmd .= "Object";
185  }
186  $ret = $this->$cmd();
187  break;
188  }
189 
190  $this->addHeaderAction();
191  }
192 
193  final public function cancelCreationObject(): void
194  {
195  $this->ctrl->redirectByClass("ilrepositorygui", "frameset");
196  }
197 
198  public function properties(): void
199  {
200  $this->tabs->activateTab("id_settings");
201 
202  $this->initSettingsForm();
203  $this->getSettingsFormValues();
204  $this->tpl->setContent($this->form->getHTML());
205  }
206 
207  public function initSettingsForm(): void
208  {
209  $obj_service = $this->getObjectService();
210 
211  $this->form = new ilPropertyFormGUI();
212 
213  // title
214  $ti = new ilTextInputGUI($this->lng->txt("title"), "title");
215  $ti->setSize(min(40, ilObject::TITLE_LENGTH));
216  $ti->setMaxLength(ilObject::TITLE_LENGTH);
217  $ti->setRequired(true);
218  $this->form->addItem($ti);
219 
220  // description
221  $ta = new ilTextAreaInputGUI($this->lng->txt("description"), "desc");
222  $ta->setCols(40);
223  $ta->setRows(2);
224  $this->form->addItem($ta);
225 
226  // online
227  $cb = new ilCheckboxInputGUI($this->lng->txt("cont_online"), "cobj_online");
228  $cb->setOptionTitle($this->lng->txt(""));
229  $cb->setValue("y");
230  $this->form->addItem($cb);
231 
232  // startfile
233  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
234 
235  $ne = new ilNonEditableValueGUI($this->lng->txt("cont_startfile"), "");
236  if ($startfile !== "") {
237  $ne->setValue(basename($startfile));
238  } else {
239  $ne->setValue(basename($this->lng->txt("no_start_file")));
240  }
241  $this->form->addItem($ne);
242 
243  $pres = new ilFormSectionHeaderGUI();
244  $pres->setTitle($this->lng->txt('obj_presentation'));
245  $this->form->addItem($pres);
246 
247  // tile image
248  $obj_service->commonSettings()->legacyForm($this->form, $this->object)->addTileImage();
249 
250  $this->form->addCommandButton("saveProperties", $this->lng->txt("save"));
251  $this->form->addCommandButton("toFilesystem", $this->lng->txt("cont_set_start_file"));
252 
253  $this->form->setTitle($this->lng->txt("cont_lm_properties"));
254  $this->form->setFormAction($this->ctrl->getFormAction($this, "saveProperties"));
255 
256  // additional features
257  $section = new ilFormSectionHeaderGUI();
258  $section->setTitle($this->lng->txt('obj_features'));
259  $this->form->addItem($section);
260 
262  $this->object->getId(),
263  $this->form,
264  [
266  ]
267  );
268  }
269 
270  public function getSettingsFormValues(): void
271  {
272  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
273 
274  $values = array();
275  $values['cobj_online'] = !$this->object->getOfflineStatus();
276  if ($startfile !== "") {
277  $startfile = basename($startfile);
278  } else {
279  $startfile = $this->lng->txt("no_start_file");
280  }
281 
282  $values["startfile"] = $startfile;
283  $values["title"] = $this->object->getTitle();
284  $values["desc"] = $this->object->getLongDescription();
285  $values["cont_show_info_tab"] = $this->object->isInfoEnabled();
286 
287  $this->form->setValuesByArray($values);
288  }
289 
290  public function toFilesystem(): void
291  {
292  // If we already have a RID, we can redirect to Container GUI
293  // otherwise we display an message which informs the user that the resource is not yet available
294  if ($this->object->getRID() != "") {
295  $this->ctrl->redirectByClass(ilContainerResourceGUI::class);
296  } else {
297  $this->ctrl->redirectByClass(static::class, "properties");
298  }
299  }
300 
301  public function saveProperties(): void
302  {
303  $obj_service = $this->getObjectService();
304 
305  $this->initSettingsForm();
306  if ($this->form->checkInput()) {
307  $this->object->setTitle($this->form->getInput("title"));
308  $this->object->setDescription($this->form->getInput("desc"));
309  $this->object->setOfflineStatus(!(bool) $this->form->getInput("cobj_online"));
310 
311  $this->object->update();
312 
313  // tile image
314  $obj_service->commonSettings()->legacyForm($this->form, $this->object)->saveTileImage();
315 
316  // services
318  $this->object->getId(),
319  $this->form,
320  array(
322  )
323  );
324 
325  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
326  $this->ctrl->redirect($this, "properties");
327  }
328 
329  $this->tabs->activateTab("id_settings");
330  $this->form->setValuesByPost();
331  $this->tpl->setContent($this->form->getHTML());
332  }
333 
334  public function editObject(): void
335  {
336  if (!$this->rbac_system->checkAccess("visible,write", $this->object->getRefId())) {
337  throw new ilPermissionException($this->lng->txt("permission_denied"));
338  }
339  }
340 
341  public function edit(): void
342  {
343  $this->prepareOutput();
344  $this->editObject();
345  }
346 
347  public function cancel(): void
348  {
349  $this->cancelObject();
350  }
351 
352  protected function afterSave(ilObject $new_object): void
353  {
354  if (!$new_object->getStartFile()) {
355  $new_object->maybeDetermineStartFile();
356  }
357 
358  // always send a message
359  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
360  $this->object = $new_object;
361  $this->redirectAfterCreation();
362  }
363 
364  public function update(): void
365  {
366  $this->updateObject();
367  }
368 
369  public function setStartFile(): void
370  {
371  // try to determine start file from request
372  $start_file = $this->http->wrapper()->query()->has('lm_path')
373  ? $start_file = $this->http->wrapper()->query()->retrieve(
374  'lm_path',
375  $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->string())
376  )[0] ?? ''
377  : '';
378  // the ContainerResourceGUI uses e bin2hex/hex2bin serialization of pathes. Due to the internals of
379  // UI\Table\Data it's not possible to have a different handling for the parameter in case of external actions...
380  try {
381  $start_file = hex2bin($start_file);
382  } catch (Throwable $e) {
383  $start_file = '';
384  }
385 
386  if ($start_file === '') {
387  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('cont_no_start_file'), true);
388  } else {
389  $this->object->setStartFile($start_file);
390  $this->object->update();
391  $this->tpl->setOnScreenMessage('success', $this->lng->txt('cont_start_file_set'), true);
392  }
393 
394  $this->ctrl->redirectByClass(ilContainerResourceGUI::class);
395  }
396 
397  public function showLearningModule(): void
398  {
399  // #9483
400  if ($this->user->getId() !== ANONYMOUS_USER_ID) {
402  $this->user->getId(),
403  $this->object->getId(),
404  $this->object->getRefId(),
405  "htlm"
406  );
407 
408  ilLPStatusWrapper::_updateStatus($this->object->getId(), $this->user->getId());
409  }
410 
412  $resource = $this->object->getResource();
413 
414  if ($resource !== null) {
415  $startfile = $this->object->getStartFile() ?? 'index.html';
416  $uri = $this->irss->consume()->containerURI(
417  $resource->getIdentification(),
418  $startfile,
419  8 * 60
420  )->getURI();
421 
422  ilUtil::redirect((string) $uri);
423  } else {
424  // This is a legacy learning module which has not yet been migrated to the new resource storage
425  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
426 
428  if ($startfile !== "") {
429  ilUtil::redirect($startfile);
430  }
431  }
432  }
433 
437  public function infoScreen(): void
438  {
439  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
440  }
441 
442  public function showInfoScreen(): void
443  {
444  $this->tabs->activateTab('id_info');
445 
446  $this->lng->loadLanguageModule("meta");
447 
448  $info = new ilInfoScreenGUI($this);
449  $info->enablePrivateNotes();
450  $info->enableLearningProgress();
451 
452  $info->enableNews();
453  if ($this->access->checkAccess("write", "", $this->requested_ref_id)) {
454  $info->enableNewsEditing();
455 
456  $news_set = new ilSetting("news");
457  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
458  if ($enable_internal_rss) {
459  $info->setBlockProperty("news", "settings", true);
460  }
461  }
462 
463  // add read / back button
464  if ($this->access->checkAccess("read", "", $this->requested_ref_id)) {
465  // #15127
466  $this->gui->link(
467  $this->lng->txt("view"),
468  "ilias.php?baseClass=ilHTLMPresentationGUI&ref_id=" . $this->object->getRefId(),
469  true
470  )->primary()->toToolbar();
471  }
472 
473  // show standard meta data section
474  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
475 
476  // forward the command
477  $this->ctrl->forwardCommand($info);
478  }
479 
480  protected function setTabs(): void
481  {
482  $this->getTabs();
483  $this->setTitleAndDescription();
484  }
485 
486  protected function getTabs(): void
487  {
488  $this->access = $this->access;
489  $this->tabs = $this->tabs;
490  $lng = $this->lng;
491  $ilHelp = $this->help;
492 
493  $ilHelp->setScreenIdComponent("htlm");
494 
495  if ($this->access->checkAccess('write', '', $this->ref_id)) {
496  // Depending on whether the module has already been migrated to the IRSS, we add a tab to
497  // ilContainerResourceGUI or internally. internally, it is only indicated that the files cannot be edited.
498  $this->tabs->addTab(
499  "id_list_files",
500  $lng->txt("cont_list_files"),
501  $this->ctrl->getLinkTarget($this, self::CMD_LIST_FILES)
502  );
503  }
504 
505  if ($this->access->checkAccess('visible', '', $this->ref_id) && $this->object->isInfoEnabled()) {
506  $this->tabs->addTab(
507  "id_info",
508  $lng->txt("info_short"),
509  $this->ctrl->getLinkTargetByClass([self::class, ilInfoScreenGUI::class], "showSummary")
510  );
511  }
512 
513  if ($this->access->checkAccess('write', '', $this->ref_id)) {
514  $this->tabs->addTab(
515  "id_settings",
516  $lng->txt("settings"),
517  $this->ctrl->getLinkTarget($this, "properties")
518  );
519  }
520 
521  if (ilLearningProgressAccess::checkAccess($this->object->getRefId())) {
522  $this->tabs->addTab(
523  "id_learning_progress",
524  $lng->txt("learning_progress"),
525  $this->ctrl->getLinkTargetByClass([self::class, ilLearningProgressGUI::class], '')
526  );
527  }
528 
529  if ($this->access->checkAccess('write', '', $this->ref_id)) {
530  $mdgui = new ilObjectMetaDataGUI($this->object);
531  $mdtab = $mdgui->getTab();
532  if ($mdtab) {
533  $this->tabs->addTab(
534  "id_meta_data",
535  $lng->txt("meta_data"),
536  $mdtab
537  );
538  }
539  }
540 
541  // export
542  if ($this->access->checkAccess("write", "", $this->object->getRefId())) {
543  $this->tabs->addTab(
544  "export",
545  $lng->txt("export"),
546  $this->ctrl->getLinkTargetByClass(ilExportGUI::class, "")
547  );
548  }
549 
550  if ($this->access->checkAccess('edit_permission', '', $this->object->getRefId())) {
551  $this->tabs->addTab(
552  "id_permissions",
553  $lng->txt("perm_settings"),
554  $this->ctrl->getLinkTargetByClass([self::class, ilPermissionGUI::class], "perm")
555  );
556  }
557 
558  $startfile = ilObjFileBasedLMAccess::_determineStartUrl($this->object->getId());
559  if ($startfile !== "" && $this->access->checkAccess('read', '', $this->ref_id)) {
560  $this->tabs->addNonTabbedLink(
561  "presentation_view",
562  $this->lng->txt("glo_presentation_view"),
563  "ilias.php?baseClass=ilHTLMPresentationGUI&ref_id=" . $this->object->getRefId(),
564  "_blank"
565  );
566  }
567  }
568 
569  public static function _goto(string $a_target): void
570  {
571  global $DIC;
572  $main_tpl = $DIC->ui()->mainTemplate();
573 
574  $lng = $DIC->language();
575  $access = $DIC->access();
576 
577  if ($access->checkAccess("read", "", $a_target) ||
578  $access->checkAccess("visible", "", $a_target)) {
579  ilObjectGUI::_gotoRepositoryNode($a_target, "infoScreen");
580  } elseif ($access->checkAccess("read", "", ROOT_FOLDER_ID)) {
581  $main_tpl->setOnScreenMessage(
582  'failure',
583  sprintf(
584  $lng->txt("msg_no_perm_read_item"),
586  ),
587  true
588  );
590  }
591 
592  throw new ilPermissionException($lng->txt("msg_no_perm_read_lm"));
593  }
594 
595  protected function addLocatorItems(): void
596  {
597  $ilLocator = $this->locator;
598 
599  if (is_object($this->object)) {
600  $ilLocator->addItem(
601  $this->object->getTitle(),
602  $this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary"),
603  "",
605  );
606  }
607  }
608 
609  private function listFiles(): void
610  {
611  if ($this->object->getResource() !== null) {
612  $this->ctrl->redirectByClass(ilContainerResourceGUI::class);
613  return;
614  }
615  $this->tabs->activateTab("id_list_files");
616 
617  $message_box = $this->gui->ui()->factory()->messageBox()->info(
618  $this->lng->txt("infobox_files_not_migrated")
619  );
620 
621  $this->tpl->setContent(
622  $this->gui->ui()->renderer()->render([$message_box])
623  );
624  }
625 
626  protected function importFileObject(?int $parent_id = null): void
627  {
628  try {
629  parent::importFileObject();
631  // since there is no manifest xml we assume that this is an HTML export file
632  $this->createFromDirectory($e->getTmpDir());
633  }
634  }
635 
636  protected function afterImport(ilObject $new_object): void
637  {
638  $this->ctrl->setParameter($this, "ref_id", $new_object->getRefId());
639  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
640  $this->ctrl->redirect($this, "properties");
641  }
642 
643  public function createFromDirectory(string $a_dir): void
644  {
645  if ($a_dir === "" || !$this->checkPermissionBool("create", "", "htlm")) {
646  throw new ilPermissionException($this->lng->txt("no_create_permission"));
647  }
648 
649  // create instance
650  $newObj = new ilObjFileBasedLM();
651  $filename = ilUtil::stripSlashes($_FILES["importfile"]["name"]);
652  $newObj->setTitle($filename);
653  $newObj->setDescription("");
654  $newObj->create();
655  $newObj->populateByDirectoy($a_dir, $filename);
656  $this->putObjectInTree($newObj);
657 
658  $this->afterSave($newObj);
659  }
660 
661 
665 
666  public function exportHTML(): void
667  {
669  $this->object->getId(),
670  "html",
671  $this->object->getType()
672  );
673  $export_dir = ilExport::_getExportDirectory(
674  $this->object->getId(),
675  "html",
676  $this->object->getType()
677  );
678 
679  $subdir = $this->object->getType() . "_" . $this->object->getId();
680 
681  $target_dir = $export_dir . "/" . $subdir;
682 
683  ilFileUtils::delDir($target_dir);
684  ilFileUtils::makeDir($target_dir);
685 
686  $source_dir = $this->object->getDataDirectory();
687 
688  ilFileUtils::rCopy($source_dir, $target_dir);
689 
690  // zip it all
691  $date = time();
692  $zip_file = $export_dir . "/" . $date . "__" . IL_INST_ID . "__" .
693  $this->object->getType() . "_" . $this->object->getId() . ".zip";
694  ilFileUtils::zip($target_dir, $zip_file);
695 
696  ilFileUtils::delDir($target_dir);
697  }
698 
699  public function redirectAfterCreation(): void
700  {
701  $ctrl = $this->ctrl;
702  $ctrl->setParameterByClass("ilObjFileBasedLMGUI", "ref_id", $this->object->getRefId());
703  $ctrl->redirectByClass(["ilrepositorygui", "ilObjFileBasedLMGUI"], "properties");
704  }
705 
706  public function learningProgress(): void
707  {
708  $this->ctrl->redirectByClass("illearningprogressgui", "");
709  }
710 
711  public function redrawHeaderAction(): void
712  {
713  $this->redrawHeaderActionObject();
714  }
715 }
redrawHeaderActionObject()
Ajax call: redraw action header only.
Class ilObjectMetaDataGUI.
__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)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
Help GUI class.
File Based Learning Module (HTML) object.
static _gotoRepositoryNode(int $ref_id, string $cmd="")
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
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
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='')
withExternalAction(string $label, string $target_gui, string $target_cmd, string $parameter_namespace, string $path_parameter='path', bool $supports_directories=false, array $supported_mime_types=[' *'])
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
StandardGUIRequest $lm_request
ilLanguage $lng
ILIAS HTMLLearningModule InternalGUIService $gui
if($request_wrapper->has('ui_mainbar')) getURI()
Definition: ui_mainbar.php:301
afterImport(ilObject $new_object)
importFileObject(?int $parent_id=null)
static http()
Fetches the global http state from ILIAS.
static _lookupTitle(int $obj_id)
static signFolderOfStartFile(string $start_file_path)
ILIAS ResourceStorage Services $irss
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
global $DIC
Definition: shib_login.php:22
manifest.xml file not found-exception for import
putObjectInTree(ilObject $obj, ?int $parent_node_id=null)
Add object to tree at given position.
static initServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
$filename
Definition: buildRTE.php:78
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static redirect(string $a_script)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
form( $class_path, string $cmd, string $submit_caption="")
__construct(Container $dic, ilPlugin $plugin)
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)
User Interface class for file based learning modules (HTML)
updateObject()
updates object entry in object_data
addHeaderAction()
Add header action menu.
ilLocatorGUI $locator
Class ilObjUserTrackingGUI.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
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)