39 bool $a_call_by_reference =
true,
40 bool $a_prepare_output =
true 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();
56 $this->
ctrl = $ilCtrl;
57 $this->
ctrl->saveParameter($this, array(
"ref_id"));
59 $this->lm_request = $DIC->htmlLearningModule()
69 $this->output_prepared = $a_prepare_output;
77 $next_class = $this->
ctrl->getNextClass($this);
78 $cmd = $this->
ctrl->getCmd();
82 strtolower($this->lm_request->getBaseClass()) ===
"iladministrationgui" 85 } elseif (!in_array($cmd, array(
"",
"framset")) || $next_class !=
"") {
91 switch ($next_class) {
92 case 'ilobjectmetadatagui':
94 $ilTabs->activateTab(
'id_meta_data');
96 $this->
ctrl->forwardCommand($md_gui);
99 case "ilfilesystemgui":
101 $ilTabs->activateTab(
'id_list_files');
104 $fs_gui->setUseUploadDirectory(
true);
105 $fs_gui->setTableId(
"htlmfs" . $this->
object->getId());
106 if ($this->
object->getStartFile() !==
"") {
108 (
string) $this->
object->getStartFile(),
109 $this->
lng->txt(
"cont_startfile")
112 $fs_gui->addCommand($this,
"setStartFile", $this->
lng->txt(
"cont_set_start_file"));
114 $this->
ctrl->forwardCommand($fs_gui);
163 case "ilinfoscreengui":
167 case "illearningprogressgui":
168 $ilTabs->activateTab(
'id_learning_progress');
169 $user_id = ($this->lm_request->getUserId() > 0)
170 ? $this->lm_request->getUserId()
174 $this->
object->getRefId(),
177 $this->
ctrl->forwardCommand($new_gui);
180 case 'ilpermissiongui':
181 $ilTabs->activateTab(
'id_permissions');
183 $ret = $this->
ctrl->forwardCommand($perm_gui);
187 $ilTabs->activateTab(
"export");
189 $exp_gui->addFormat(
"xml");
190 $exp_gui->addFormat(
"html",
"", $this,
"exportHTML");
191 $ret = $this->
ctrl->forwardCommand($exp_gui);
194 case "ilcommonactiondispatchergui":
196 $this->
ctrl->forwardCommand($gui);
200 $cmd = $this->
ctrl->getCmd(
"listFiles");
203 strtolower($this->lm_request->getBaseClass()) ===
"iladministrationgui" 207 $ret = $this->$cmd();
253 $ti->setRequired(
true);
254 $this->
form->addItem($ti);
260 $this->
form->addItem($ta);
266 $this->
form->addItem($cb);
272 if ($startfile !==
"") {
273 $ne->
setValue(basename($startfile));
275 $ne->setValue(basename($this->
lng->txt(
"no_start_file")));
277 $this->
form->addItem($ne);
280 $pres->setTitle($this->
lng->txt(
'obj_presentation'));
281 $this->
form->addItem($pres);
284 $obj_service->commonSettings()->legacyForm($this->
form, $this->
object)->addTileImage();
286 $this->
form->addCommandButton(
"saveProperties",
$lng->
txt(
"save"));
287 $this->
form->addCommandButton(
"toFilesystem",
$lng->
txt(
"cont_set_start_file"));
289 $this->
form->setTitle(
$lng->
txt(
"cont_lm_properties"));
290 $this->
form->setFormAction($ilCtrl->getFormAction($this,
"saveProperties"));
294 $section->setTitle($this->
lng->txt(
'obj_features'));
295 $this->
form->addItem($section);
311 $values[
'cobj_online'] = !$this->
object->getOfflineStatus();
312 if ($startfile !==
"") {
313 $startfile = basename($startfile);
315 $startfile = $this->
lng->txt(
"no_start_file");
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();
323 $this->
form->setValuesByArray($values);
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"));
344 $this->
object->update();
347 $obj_service->commonSettings()->legacyForm($this->
form, $this->
object)->saveTileImage();
358 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
359 $this->
ctrl->redirect($this,
"properties");
362 $ilTabs->activateTab(
"id_settings");
363 $this->
form->setValuesByPost();
369 if (!$this->rbac_system->checkAccess(
"visible,write", $this->object->getRefId())) {
387 if (!$new_object->getStartFile()) {
391 if (isset($files[
"file"])) {
393 if (stripos($new_object->
getTitle(),
".zip") !==
false) {
394 $zip_file = strtolower($new_object->
getTitle());
395 $suffix = strrpos($zip_file,
".");
397 $zip_file = substr($zip_file, 0, $suffix);
400 $valid = array(
"index.htm",
"index.html",
"start.htm",
"start.html");
401 foreach ($files[
"file"] as $idx => $file) {
403 if (stripos($file,
".htm") !==
false) {
404 $chk_file = strtolower($file);
405 $suffix = strrpos($chk_file,
".");
407 $chk_file = substr($chk_file, 0, $suffix);
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);
421 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"object_added"),
true);
422 $this->
object = $new_object;
433 $this->
object->setStartFile($a_file);
434 $this->
object->update();
435 $this->
ctrl->redirectByClass(
"ilfilesystemgui",
"listFiles");
440 $this->tpl->loadStandardTemplate();
451 $this->
object->getId(),
452 $this->
object->getRefId(),
461 if ($startfile !==
"") {
471 $this->
ctrl->setCmd(
"showSummary");
472 $this->
ctrl->setCmdClass(
"ilinfoscreengui");
484 $this->
lng->loadLanguageModule(
"meta");
487 $info->enablePrivateNotes();
488 $info->enableLearningProgress();
491 if ($ilAccess->checkAccess(
"write",
"", $this->requested_ref_id)) {
492 $info->enableNewsEditing();
495 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
496 if ($enable_internal_rss) {
497 $info->setBlockProperty(
"news",
"settings",
true);
502 if ($ilAccess->checkAccess(
"read",
"", $this->requested_ref_id)) {
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);
513 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
516 $this->
ctrl->forwardCommand($info);
534 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
538 $this->
ctrl->getLinkTargetByClass(
"ilfilesystemgui",
"listFiles")
542 if ($ilAccess->checkAccess(
'visible',
'', $this->ref_id) && $this->
object->isInfoEnabled()) {
546 $this->
ctrl->getLinkTargetByClass(array(
"ilobjfilebasedlmgui",
"ilinfoscreengui"),
"showSummary")
550 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
554 $this->
ctrl->getLinkTarget($this,
"properties")
560 "id_learning_progress",
561 $lng->
txt(
"learning_progress"),
562 $this->
ctrl->getLinkTargetByClass(array(
'ilobjfilebasedlmgui',
'illearningprogressgui'),
'')
566 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
568 $mdtab = $mdgui->getTab();
580 if ($ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
584 $this->
ctrl->getLinkTargetByClass(
"ilexportgui",
"")
588 if ($ilAccess->checkAccess(
'edit_permission',
'', $this->object->getRefId())) {
592 $this->
ctrl->getLinkTargetByClass(array(get_class($this),
'ilpermissiongui'),
"perm")
597 if ($startfile !==
"" && $ilAccess->checkAccess(
'read',
'', $this->ref_id)) {
598 $ilTabs->addNonTabbedLink(
600 $this->
lng->txt(
"glo_presentation_view"),
601 "ilias.php?baseClass=ilHTLMPresentationGUI&ref_id=" . $this->
object->getRefId(),
607 public static function _goto(
string $a_target): void
610 $main_tpl = $DIC->ui()->mainTemplate();
612 $lng = $DIC->language();
613 $ilAccess = $DIC->access();
615 if ($ilAccess->checkAccess(
"read",
"", $a_target) ||
616 $ilAccess->checkAccess(
"visible",
"", $a_target)) {
619 $main_tpl->setOnScreenMessage(
'failure', sprintf(
620 $lng->
txt(
"msg_no_perm_read_item"),
633 if (is_object($this->
object)) {
635 $this->
object->getTitle(),
636 $this->
ctrl->getLinkTargetByClass(
"ilinfoscreengui",
"showSummary"),
646 parent::importFileObject();
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");
670 $newObj->setDescription(
"");
672 $newObj->populateByDirectoy($a_dir,
$filename);
688 $this->
object->getType()
693 $this->
object->getType()
696 $subdir = $this->
object->getType() .
"_" . $this->
object->getId();
698 $target_dir = $export_dir .
"/" . $subdir;
703 $source_dir = $this->
object->getDataDirectory();
709 $zip_file = $export_dir .
"/" . $date .
"__" .
IL_INST_ID .
"__" .
710 $this->
object->getType() .
"_" . $this->
object->getId() .
".zip";
726 $this->
ctrl->redirectByClass(
"illearningprogressgui",
"");
redrawHeaderActionObject()
Ajax call: redraw action header only.
activateLabels(bool $a_act, string $a_label_header)
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)
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
static _goto(string $a_target)
prepareOutput(bool $show_sub_objects=true)
createFromDirectory(string $a_dir)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
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="")
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='')
StandardGUIRequest $lm_request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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
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)
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)
const LP_CONTEXT_REPOSITORY
This class represents a text area property in a property form.
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
addItem(string $a_title, string $a_link, string $a_frame="", int $a_ref_id=0, ?string $type=null)
const INFO_TAB_VISIBILITY
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)
static _determineStartUrl(int $a_id)
addHeaderAction()
Add header action menu.
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)
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)
setStartFile(string $a_file)
initCreationForms(string $new_type)