19 declare(strict_types=1);
42 $lng = $DIC->language();
43 $rbacsystem = $DIC->access();
57 $ilAccess = $DIC->access();
58 $ilTabs = $DIC->tabs();
60 $navigationHistory = $DIC[
'ilNavigationHistory'];
62 $baseClass =
$refId = $DIC->http()->wrapper()->query()->retrieve(
'baseClass', $DIC->refinery()->kindlyTo()->string());
64 $ilLog->debug(
"bc:" . $baseClass .
"; nc:" . $this->
ctrl->getNextClass($this) .
"; cmd:" . $this->
ctrl->getCmd());
65 if (strtolower($baseClass) ===
"iladministrationgui" ||
66 strtolower($baseClass) ===
"ilsahspresentationgui" ||
74 $this->tpl->setTitle($this->
object->getTitle());
75 $navigationHistory->addItem(
82 $next_class = $this->
ctrl->getNextClass($this);
83 $cmd = $this->
ctrl->getCmd();
85 switch ($next_class) {
86 case 'illtiproviderobjectsettinggui':
88 $ilTabs->setSubTabActive(
'lti_provider');
91 $lti_gui->offerLTIRolesForSelection(
false);
92 $this->
ctrl->forwardCommand($lti_gui);
96 case 'ilobjectmetadatagui':
97 if (!$ilAccess->checkAccess(
'write',
'', $this->object->getRefId())) {
98 $ilErr->raiseError($this->
lng->txt(
'permission_denied'),
$ilErr->WARNING);
101 $this->
ctrl->forwardCommand($md_gui);
110 case 'ilpermissiongui':
112 $this->
ctrl->forwardCommand($perm_gui);
115 case "ilfilesystemgui":
118 $fs_gui->setTableId(
"sahsfs" . $this->
object->getId());
119 $this->
ctrl->forwardCommand($fs_gui);
122 case "ilcertificategui":
124 $ilTabs->setSubTabActive(
'certificate');
127 $output_gui = $guiFactory->create($this->
object);
129 $this->
ctrl->forwardCommand($output_gui);
132 case "illearningprogressgui":
134 $this->
ctrl->forwardCommand($new_gui);
138 case "ilinfoscreengui":
139 $ilTabs->setTabActive(
'info_short');
143 case "ilcommonactiondispatchergui":
146 $this->
ctrl->forwardCommand($gui);
150 case 'ilobjectcopygui':
153 $cp->setType(
'sahs');
154 $this->
ctrl->forwardCommand($cp);
159 $cmd = $this->
ctrl->getCmd(
"properties");
161 if ((strtolower($baseClass) ===
"iladministrationgui" ||
163 $cmd !==
"frameset") {
168 if ($cmd ===
"redrawHeaderAction") {
179 $this->
ctrl->setCmd(
"showSummary");
180 $this->
ctrl->setCmdClass(
"ilinfoscreengui");
187 $this->error->raiseError($this->
lng->txt(
"msg_no_perm_read"));
191 $info->enablePrivateNotes();
192 $info->enableLearningProgress();
196 $ilToolbar =
$GLOBALS[
'DIC']->toolbar();
197 $ilToolbar->addButtonInstance($this->
object->getViewButton());
200 $info->enableNewsEditing(
false);
203 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
204 if ($enable_internal_rss) {
205 $info->setBlockProperty(
"news",
"settings",
"");
206 $info->setBlockProperty(
"news",
"public_notifications_option",
"true");
210 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
213 $this->
ctrl->forwardCommand($info);
234 $this->
ctrl->setParameterByClass(
239 $this->
ctrl->redirectByClass(ilSAHSEditGUI::class);
273 $lng = $DIC->language();
274 $ilCtrl = $DIC->ctrl();
279 "scorm2004" =>
$lng->
txt(
"lm_type_scorm2004"),
280 "scorm" =>
$lng->
txt(
"lm_type_scorm"),
281 "exportFile" =>
$lng->
txt(
"sahs_export_file")
284 $si->setOptions($options);
285 $this->
form->addItem($si);
289 $options[
""] = $this->
lng->txt(
"cont_select_from_upload_dir");
291 foreach ($files as $file) {
292 $file = htmlspecialchars($file, ENT_QUOTES,
"utf-8");
293 $options[$file] = $file;
296 if (count($options) > 1) {
300 $radg->addOption($op0);
301 $op1 =
new ilRadioOption($this->
lng->txt(
"cont_choose_upload_dir"),
"upload_dir");
302 $radg->addOption($op1);
310 $si->setOptions($options);
311 $op1->addSubItem($si);
313 $this->
form->addItem($radg);
317 $this->
form->addItem($fi);
320 $this->
form->addCommandButton(
"upload",
$lng->
txt(
"import"));
321 $this->
form->addCommandButton(
"cancel",
$lng->
txt(
"cancel"));
324 $this->
form->setFormAction($ilCtrl->getFormAction($this,
"upload"));
339 $rbacsystem = $DIC->access();
342 $refId = $DIC->http()->wrapper()->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int());
343 $importFromXml =
false;
346 if (!$rbacsystem->checkAccess(
"create",
'',
$refId,
"sahs")) {
347 $ilErr->raiseError($this->
lng->txt(
"no_create_permission"),
$ilErr->WARNING);
348 } elseif ($_FILES[
"scormfile"][
"name"]) {
350 $source = $_FILES[
"scormfile"][
"tmp_name"];
355 switch ($_FILES[
"scormfile"][
"error"]) {
356 case UPLOAD_ERR_INI_SIZE:
357 case UPLOAD_ERR_FORM_SIZE:
358 $ilErr->raiseError($this->
lng->txt(
"err_max_file_size_exceeds"),
$ilErr->MESSAGE);
361 case UPLOAD_ERR_PARTIAL:
362 $ilErr->raiseError($this->
lng->txt(
"err_partial_file_upload"),
$ilErr->MESSAGE);
365 case UPLOAD_ERR_NO_FILE:
366 $ilErr->raiseError($this->
lng->txt(
"err_no_file_uploaded"),
$ilErr->MESSAGE);
370 $file = pathinfo($_FILES[
"scormfile"][
"name"]);
371 } elseif ($DIC->http()->wrapper()->post()->has(
'uploaded_file')) {
372 $uploadedFile = $DIC->http()->wrapper()->post()->retrieve(
'uploaded_file', $DIC->refinery()->kindlyTo()->string());
375 $ilErr->raiseError($this->
lng->txt(
"upload_error_file_not_found"),
$ilErr->MESSAGE);
383 $name = substr($file[
"basename"], 0, strlen($file[
"basename"]) - strlen($file[
"extension"]) - 1);
385 $name = $this->
lng->txt(
"no_title");
390 $subType =
"scorm2004";
391 if ($DIC->http()->wrapper()->post()->has(
'sub_type')) {
392 $subType = $DIC->http()->wrapper()->post()->retrieve(
'sub_type', $DIC->refinery()->kindlyTo()->string());
411 $sFile = $_FILES[
"scormfile"];
412 $fType = $sFile[
"type"];
413 $cFileTypes = [
"application/zip",
"application/x-compressed",
"application/x-zip-compressed"];
414 if (in_array($fType, $cFileTypes)) {
415 $tempFile = $sFile[
"tmp_name"];
418 $zar =
new ZipArchive();
419 $zar->open($tempFile);
420 $zar->extractTo($lmTempDir);
424 $import_dirname = $lmTempDir .
'/' . substr($_FILES[
"scormfile"][
"name"], 0, -4);
425 $importer->importXmlRepresentation(
"sahs",
"", $import_dirname, null);
426 $import_result = $importer->getResult();
428 $importFromXml =
true;
429 if ($import_result->isOK()) {
430 $properties = $import_result->value();
431 if (($subType = $properties[
'SubType']) ===
'scorm') {
436 $name = $properties[
'Title'];
437 $description = $properties[
'Description'];
440 $ilLog->error(
'SCORM import of ILIAS exportfile not possible because parsing error');
441 $ilLog->error($import_result->error());
442 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"import_file_not_valid"),
true);
449 $newObj->setTitle(
$name);
450 $newObj->setSubType($subType);
451 $newObj->setDescription($description);
452 $newObj->setOfflineStatus(
false);
453 $newObj->create(
true);
454 $newObj->createReference();
455 $newObj->putInTree(
$refId);
456 $newObj->setPermissions(
$refId);
459 $newObj->createDataDirectory();
461 if ($_FILES[
"scormfile"][
"name"]) {
462 if ($importFromXml) {
463 $scormFile =
"content.zip";
464 $scormFilePath = $import_dirname .
"/" . $scormFile;
465 $file_path = $newObj->getDataDirectory() .
"/" . $scormFile;
472 $file_path = $newObj->getDataDirectory() .
"/" . $_FILES[
"scormfile"][
"name"];
474 $_FILES[
"scormfile"][
"tmp_name"],
475 $_FILES[
"scormfile"][
"name"],
482 $uploadedFile = $DIC->http()->wrapper()->post()->retrieve(
'uploaded_file', $DIC->refinery()->kindlyTo()->string());
483 $file_path = $newObj->getDataDirectory() .
"/" .
$uploadedFile;
489 $title = $newObj->readObject();
495 $newObj->setLearningProgressSettingsAtUpload();
497 if ($importFromXml) {
498 $importer->writeData(
"sahs",
"5.1.0", $newObj->getId());
501 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt($newObj->getType() .
"_added"),
true);
502 ilUtil::redirect(
"ilias.php?baseClass=ilSAHSEditGUI&ref_id=" . $newObj->getRefId());
570 $lng = $DIC->language();
572 $this->tpl->loadStandardTemplate();
581 $baseClass =
$refId = $DIC->http()->wrapper()->query()->retrieve(
'baseClass', $DIC->refinery()->kindlyTo()->string());
583 $this->tpl->setTitle($this->
object->getTitle());
584 $this->tpl->setDescription($this->
object->getDescription());
585 if ($this->
object && $this->
object->getOfflineStatus()) {
586 $this->tpl->setAlertProperties(array(
587 array(
"alert" =>
true,
588 "property" => $this->
lng->txt(
"status"),
589 "value" => $this->
lng->txt(
"offline"))
592 if (strtolower($baseClass) ===
"ilsahseditgui" || strtolower($baseClass) ===
"ilrepositorygui") {
603 $output_gui = $guiFactory->create($this->
object);
605 $output_gui->certificateEditor();
615 $rbacsystem = $DIC->access();
616 $ilCtrl = $DIC->ctrl();
617 $ilHelp = $DIC->help();
619 if ($this->
ctrl->getCmd() ===
"delete") {
623 switch ($this->
object->getSubType()) {
625 $ilHelp->setScreenIdComponent(
"sahs13");
629 $ilHelp->setScreenIdComponent(
"sahs12");
635 if ($rbacsystem->checkAccess(
"write",
"", $this->object->getRefId())) {
636 $ilCtrl->setParameterByClass(
"ilfilesystemgui",
"resetoffset", 1);
637 $this->tabs_gui->addTarget(
639 $this->
ctrl->getLinkTargetByClass(
"ilfilesystemgui",
"listFiles"),
643 $ilCtrl->setParameterByClass(
"ilfilesystemgui",
"resetoffset",
"");
646 $force_active = ($this->
ctrl->getNextClass() ===
"ilinfoscreengui")
649 $this->tabs_gui->addTarget(
651 $this->
ctrl->getLinkTargetByClass(
"ilinfoscreengui",
"showSummary"),
659 $this->tabs_gui->addTarget(
661 $this->
ctrl->getLinkTarget($this,
"properties"),
662 array(
"",
"properties"),
676 if ($rbacsystem->checkAccess(
"read_learning_progress",
"", $this->object->getRefId()) || $rbacsystem->checkAccess(
"edit_learning_progress",
"", $this->object->getRefId())) {
678 if ($rbacsystem->checkAccess(
"read_learning_progress",
"", $this->object->getRefId())) {
679 $ar_rights = [
'illplistofobjectsgui'];
681 if ($rbacsystem->checkAccess(
"edit_learning_progress",
"", $this->object->getRefId())) {
682 $ar_rights[] =
'illplistofsettingsgui';
685 $this->tabs_gui->addTarget(
687 $this->
ctrl->getLinkTargetByClass(array(
'illearningprogressgui'),
''),
693 if ($this->
object->getSubType() ===
"scorm2004" || $this->
object->getSubType() ===
"scorm") {
695 if ($privacy->enabledSahsProtocolData()) {
696 $scormClass =
"ilobjscormlearningmodulegui";
697 if ($this->
object->getSubType() ===
"scorm2004") {
698 $scormClass =
"ilobjscorm2004learningmodulegui";
700 $this->
ctrl->setParameterByClass($scormClass,
"ref_id", $this->
object->getRefId());
701 $this->tabs_gui->addTarget(
702 "cont_tracking_data",
703 $this->
ctrl->getLinkTargetByClass([
'ilsahseditgui',$scormClass],
"showTrackingItems"),
710 if ($rbacsystem->checkAccess(
"write",
"", $this->object->getRefId())) {
712 $mdtab = $mdgui->getTab();
714 $this->tabs_gui->addTarget(
723 if ($rbacsystem->checkAccess(
"edit",
"", $this->object->getRefId())) {
724 $this->tabs_gui->addTarget(
726 $this->
ctrl->getLinkTarget($this,
"export"),
733 if ($rbacsystem->checkAccess(
'edit_permission',
"", $this->object->getRefId())) {
734 $this->tabs_gui->addTarget(
736 $this->
ctrl->getLinkTargetByClass(array(get_class($this),
'ilpermissiongui'),
"perm"),
737 array(
"perm",
"info",
"owner"),
747 public static function _goto(
string $a_target): void
750 $main_tpl = $DIC->ui()->mainTemplate();
751 $ilAccess = $DIC->access();
753 $lng = $DIC->language();
755 $targetParameters = explode(
'_', $a_target);
756 $id = (
int) $targetParameters[0];
762 if ($ilAccess->checkAccess(
"write",
"",
$id)) {
763 $DIC->ctrl()->setParameterByClass(
"ilSAHSEditGUI",
"ref_id", (
string)
$id);
764 $DIC->ctrl()->redirectByClass(
"ilSAHSEditGUI",
"infoScreen");
767 if ($ilAccess->checkAccess(
"visible",
"",
$id) || $ilAccess->checkAccess(
"read",
"",
$id)) {
768 $DIC->ctrl()->setParameterByClass(
"ilSAHSPresentationGUI",
"ref_id", (
string)
$id);
769 $DIC->ctrl()->redirectByClass(
"ilSAHSPresentationGUI",
"infoScreen");
772 $main_tpl->setOnScreenMessage(
'info', sprintf(
773 $lng->
txt(
"msg_no_perm_read_item"),
789 $ilLocator = $DIC[
'ilLocator'];
791 if (is_object($this->
object)) {
793 $this->
object->getTitle(),
794 $this->
ctrl->getLinkTargetByClass(
"ilinfoscreengui",
"showSummary"),
796 $DIC->http()->wrapper()->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int())
825 $lng = $DIC->language();
826 $ilTabs = $DIC->tabs();
827 $ilCtrl = $DIC->ctrl();
829 $ilTabs->addSubTabTarget(
831 $this->
ctrl->getLinkTarget($this,
"properties"),
836 $ilTabs->addSubTabTarget(
837 "cont_sc_new_version",
838 $this->
ctrl->getLinkTarget($this,
"newModuleVersion"),
844 if (
true === $validator->validate()) {
851 $ilTabs->addSubTabTarget(
853 $this->
ctrl->getLinkTargetByClass([static::class,
"ilcertificategui"],
"certificateeditor"),
860 if ($lti_settings->hasSettingsAccess()) {
861 $ilTabs->addSubTabTarget(
863 $this->
ctrl->getLinkTargetByClass(ilLTIProviderObjectSettingGUI::class)
867 $ilTabs->setTabActive(
'settings');
876 $GLOBALS[
'DIC']->tabs()->setTabActive(
'export');
878 $this->
ctrl->setCmd(
"listExportFiles");
879 $exp_gui->addFormat(
"xml");
880 return $this->
ctrl->forwardCommand($exp_gui);
888 $moduleId =
ilObject::_lookupObjectId($DIC->http()->wrapper()->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int()));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _writeTitle(int $obj_id, string $title)
write title to db (static)
static getLogger(string $a_component_id)
Get component logger.
static _copyUploadFile(string $a_file, string $a_target, bool $a_raise_errors=true)
if($DIC->http() ->wrapper() ->query() ->has('update')) $uploadedFile
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...
GUI class for the workflow of copying objects.
static _goto(string $a_target)
goto target course
prepareOutput(bool $show_sub_objects=true)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
certificate()
Shows the certificate editor.
getTemplate()
save new learning module to db
static _getUploadDirectory()
loadLanguageModule(string $a_module)
Load language module.
__construct($data, int $id, bool $call_by_reference, bool $prepare_output=true)
Constructor.
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
setSettingsSubTabs()
List files.
static unzip(string $path_to_zip_file, bool $overwrite_existing=false, bool $unpack_flat=false)
static _lookupObjId(int $ref_id)
static renameExecutables(string $a_dir)
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...
fillCloneTemplate(?string $tpl_name, string $type)
Fill object clone template This method can be called from any object GUI class that wants to offer ob...
static _lookupTitle(int $obj_id)
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 delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
setValue(string $a_value)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static _lookupObjectId(int $ref_id)
setUseUploadDirectory(bool $a_val)
getTabs()
adds tabs to tab gui object
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
form( $class_path, string $cmd)
setCustomRolesForSelection(array $a_roles)
Set custom roles for mapping to LTI roles.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static redirect(string $a_script)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
properties()
module properties
__construct(Container $dic, ilPlugin $plugin)
const LP_CONTEXT_REPOSITORY
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _checkUploadFile(string $a_file)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
static rename(string $a_source, string $a_target)
File System Explorer GUI class.
initCreationForms(string $a_new_type)
no manual SCORM creation, only import at the time
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static 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.
executeCommand()
execute command
uploadObject()
display status information or report errors messages in case of error