19 declare(strict_types=1);
97 public const TAB_LP =
"learning_progress";
124 public static function _goto(
string $target): void
127 $main_tpl = $DIC->ui()->mainTemplate();
130 $lng = $DIC->language();
131 $err = $DIC[
'ilErr'];
133 $targetParameters = explode(
'_', $target);
134 $id = (
int) $targetParameters[0];
136 if (!self::isAccessible(
$id)) {
137 $err->raiseError(
$lng->
txt(
'msg_no_perm_read'), $err->FATAL);
140 if (self::hasAccess(self::ACCESS_READ,
$id)) {
143 if (isset(
$request->getQueryParams()[
'gotolp'])) {
147 self::forwardByClass(
148 ilRepositoryGUI::class,
149 [ilObjLearningSequenceGUI::class],
154 if (self::hasAccess(self::ACCESS_VISIBLE,
$id)) {
159 $main_tpl->setOnScreenMessage(
'info', sprintf(
160 $lng->
txt(
'msg_no_perm_read_item'),
164 self::forwardByClass(ilRepositoryGUI::class, [ilRepositoryGUI::class], [
'ref_id' =>
ROOT_FOLDER_ID]);
171 self::hasAccess(self::ACCESS_READ, $id) ||
172 self::hasAccess(self::ACCESS_VISIBLE, $id) ||
180 return $DIC->access()->checkAccess($mode,
'', $id);
186 $ctrl = $DIC->ctrl();
187 $target_class = end($classes);
190 foreach ($params as
$key => $value) {
195 array_splice($classes, 0, 0, $base_class);
204 $this->
ctrl = $DIC[
'ilCtrl'];
205 $this->
lng = $DIC[
'lng'];
206 $this->
user = $DIC[
'ilUser'];
207 $this->
tabs = $DIC[
'ilTabs'];
208 $this->
toolbar = $DIC[
'ilToolbar'];
209 $this->
help = $DIC[
'ilHelp'];
210 $this->
settings = $DIC[
'ilSetting'];
211 $this->
access = $DIC[
'ilAccess'];
212 $this->rbac_review = $DIC[
'rbacreview'];
213 $this->ui_factory = $DIC[
'ui.factory'];
214 $this->ui_renderer = $DIC[
'ui.renderer'];
216 $this->log = $DIC[
"ilLoggerFactory"]->getRootLogger();
217 $this->app_event_handler = $DIC[
'ilAppEventHandler'];
218 $this->navigation_history = $DIC[
'ilNavigationHistory'];
219 $this->obj_definition = $DIC[
'objDefinition'];
220 $this->tpl = $DIC[
"tpl"];
221 $this->obj_service = $DIC->object();
222 $this->
toolbar = $DIC[
'ilToolbar'];
223 $this->request_wrapper = $DIC->http()->wrapper()->query();
224 $this->post_wrapper = $DIC->http()->wrapper()->post();
226 $this->content_style = $DIC->contentStyle();
228 $this->
help->setScreenIdComponent($this->obj_type);
229 $this->
lng->loadLanguageModule($this->obj_type);
231 $this->data_factory =
new Data\Factory();
233 $this->ref_id = $this->request_wrapper->retrieve(
"ref_id", $this->
refinery->kindlyTo()->int());
241 $this->
object->getRefId(),
242 $this->
object->getId(),
249 $next_class = $this->
ctrl->getNextClass($this);
250 $cmd = $this->
ctrl->getCmd();
253 parent::prepareOutput();
260 $next_class ===
'ilobjlearningsequencelearnergui' 266 switch ($next_class) {
267 case "ilcommonactiondispatchergui":
269 $this->
ctrl->forwardCommand($gui);
271 case "ilinfoscreengui":
274 case "ilpermissiongui":
277 case "ilobjlearningsequencesettingsgui":
281 case "ilobjlearningsequencecontentgui":
285 case "ilobjlearningsequencelearnergui":
288 case "illearningsequencemembershipgui":
291 case 'illearningprogressgui':
297 case 'ilobjectcopygui':
300 $this->
ctrl->forwardCommand($cp);
302 case 'ilobjindividualassessmentgui':
303 $struct = [
'ilrepositorygui',
'ilobjindividualassessmentgui'];
304 if ($cmd ===
'edit') {
305 $struct[] =
'ilindividualassessmentsettingsgui';
307 $this->
ctrl->redirectByClass($struct, $cmd);
310 $struct = [
'ilrepositorygui',
'ilobjtestgui'];
311 $this->
ctrl->redirectByClass($struct, $cmd);
313 case 'ilobjlearningsequencelppollinggui':
314 $gui = $this->
object->getLocalDI()[
"gui.learner.lp"];
315 $this->
ctrl->setCmd($cmd);
316 $this->
ctrl->forwardCommand($gui);
319 case "ilobjlearningsequenceeditintrogui":
320 $which_page = $this->object::CP_INTRO;
321 $which_tab = self::TAB_EDIT_INTRO;
322 $gui_class =
'ilObjLearningSequenceEditIntroGUI';
324 case "ilobjlearningsequenceeditextrogui":
327 if (!isset($which_page)) {
328 $which_page = $this->object::CP_EXTRO;
329 $which_tab = self::TAB_EDIT_EXTRO;
331 $gui_class =
'ilObjLearningSequenceEditExtroGUI';
337 $page_id = $this->
object->getContentPageId($which_page);
338 if (!$this->
object->hasContentPage($which_page)) {
339 $this->
object->createContentPage($which_page);
342 $gui =
new $gui_class(
343 $this->object::CP_TYPE,
346 $this->
ctrl->setCmd($cmd);
347 $out = $this->
ctrl->forwardCommand($gui);
351 if (!is_null(
$out)) {
359 $cmd = self::CMD_CONTENT;
361 $cmd = self::CMD_VIEW;
366 case self::CMD_IMPORT:
370 case self::CMD_INFO_SCREEN:
374 case self::CMD_LEARNER_VIEW:
375 case self::CMD_CONTENT:
376 case self::CMD_MEMBERS:
377 case self::CMD_SETTINGS:
379 case self::CMD_CREATE:
380 case self::CMD_UNPARTICIPATE:
382 $this->tpl->setOnScreenMessage(
'info', sprintf(
383 $this->
lng->txt(
'msg_no_perm_read_item'),
384 $this->
object->getTitle()
390 case self::CMD_CANCEL:
395 case self::CMD_REMOVE_FROM_DESK:
399 case self::CMD_ADD_TO_DESK:
406 case self::CMD_CUT_SHOWTREE:
409 case self::CMD_CUT_CLIPBOARD:
415 case self::CMD_DELETE:
418 case self::CMD_DELETE_CONFIRMED:
421 case self::CMD_PERFORM_PASTE:
424 case self::CMD_SHOW_TRASH:
427 case self::CMD_UNDELETE:
431 case self::CMD_CANCEL_CUT:
432 case self::CMD_CANCEL_DELETE:
433 case self::CMD_CANCEL_LINK:
434 $cmd = self::CMD_CONTENT;
438 case self::CMD_REDRAW_HEADER:
443 case self::CMD_ENABLE_ADMINISTRATION_PANEL:
449 throw new ilException(
"ilObjLearningSequenceGUI: Invalid command '$cmd'");
453 throw new ilException(
"ilObjLearningSequenceGUI: Can't forward to next class $next_class");
463 if (strtolower($this->request_wrapper->retrieve(
"baseClass", $this->refinery->kindlyTo()->string())) === strtolower(self::class)) {
464 $tpl->printToStdOut();
470 $this->content_style->gui()->addCss(
480 $this->
access->checkAccess(
'read',
'', $this->ref_id)
483 $this->navigation_history->addItem($this->ref_id, $link, $this->obj_type);
487 protected function info(
string $cmd = self::CMD_INFO): void
489 $this->
tabs->setTabActive(self::TAB_INFO);
490 $this->
ctrl->setCmdClass(
'ilinfoscreengui');
491 $this->
ctrl->setCmd($cmd);
493 $this->
ctrl->forwardCommand($info);
496 protected function permissions(
string $cmd = self::CMD_PERMISSIONS): void
498 $this->
tabs->setTabActive(self::TAB_PERMISSIONS);
500 $this->
ctrl->setCmd($cmd);
501 $this->
ctrl->forwardCommand($perm_gui);
504 protected function settings(
string $cmd = self::CMD_SETTINGS): void
506 $this->
tabs->activateTab(self::TAB_SETTINGS);
517 $this->
ctrl->setCmd($cmd);
518 $this->
ctrl->forwardCommand($gui);
521 protected function view(): void
524 $this->
tabs->clearSubTabs();
532 $this->
info(self::CMD_INFO);
538 $this->
tabs->activateTab(self::TAB_CONTENT_MAIN);
554 $this->
ctrl->setCmd($cmd);
555 $this->
ctrl->forwardCommand($gui);
558 protected function learnerView(
string $cmd = self::CMD_LEARNER_VIEW): void
561 $this->
tabs->activateTab(self::TAB_CONTENT_MAIN);
564 $gui = $this->
object->getLocalDI()[
"gui.learner"];
566 $this->
ctrl->setCmd($cmd);
567 $this->
ctrl->forwardCommand($gui);
572 $may_manage_members = $this->
checkAccess(
"edit_members");
573 $this->
ctrl->setCmdClass(
'ilLearningSequenceMembershipGUI');
574 if ($may_manage_members) {
583 $this->
tabs->setTabActive(self::TAB_MEMBERS);
593 $this->request_wrapper,
598 $this->
ctrl->setCmd($cmd);
599 $this->
ctrl->forwardCommand($ms_gui);
604 $this->
tabs->setTabActive(self::TAB_LP);
606 $for_user = $this->
user->getId();
608 if ($this->request_wrapper->has(
"user_id")) {
609 $for_user = $this->request_wrapper->retrieve(
"user_id", $this->
refinery->kindlyTo()->int());
617 $this->
ctrl->forwardCommand($lp_gui);
622 $this->
tabs->setTabActive(self::TAB_EXPORT);
624 $gui->addFormat(
"xml");
626 $this->
ctrl->forwardCommand($gui);
636 parent::createObject();
639 protected function save(): void
641 parent::saveObject();
647 $new_object->
getId(),
654 $participant->updateNotification(
655 $this->
user->getId(),
656 (bool) $this->
settings->get(
'mail_lso_admin_notification',
"1")
666 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'object_added'),
true);
667 $this->
ctrl->setParameter($this,
"ref_id", $new_object->
getRefId());
671 $this->
ctrl->getLinkTarget($this, self::CMD_SETTINGS,
"",
false,
false)
679 $usr_id = $this->
user->getId();
680 $this->
getObject()->getLSRoles()->leave($usr_id);
689 self::TAB_CONTENT_MAIN,
690 $this->
lng->txt(self::TAB_CONTENT_MAIN),
691 $this->
ctrl->getLinkTarget($this, self::CMD_VIEW,
"",
false,
false)
698 $this->
lng->txt(self::TAB_INFO),
706 $this->
lng->txt(self::TAB_SETTINGS),
714 $this->
getObject()->getLSSettings()->getMembersGallery()
716 $this->
getObject()->getLSRoles()->isMember($this->
user->getId())
721 $this->
lng->txt(self::TAB_MEMBERS),
722 $this->
ctrl->getLinkTarget($this, self::CMD_MEMBERS,
"",
false,
false)
730 $this->
lng->txt(self::TAB_LP),
731 $this->
ctrl->getLinkTargetByClass(array(
'ilobjlearningsequencegui',
'illearningprogressgui'),
'')
738 $this->
lng->txt(self::TAB_EXPORT),
739 $this->
ctrl->getLinkTargetByClass(
"ilexportgui",
"")
745 self::TAB_PERMISSIONS,
746 $this->
lng->txt(self::TAB_PERMISSIONS),
760 $this->
tabs->addSubTab(
761 self::TAB_VIEW_CONTENT,
762 $this->
lng->txt(self::TAB_VIEW_CONTENT),
767 $this->
tabs->addSubTab(
769 $this->
lng->txt(self::TAB_MANAGE),
773 $this->
tabs->addSubTab(
774 self::TAB_EDIT_INTRO,
775 $this->
lng->txt(
"lso_settings_intro"),
776 $this->
ctrl->getLinkTargetByClass(
777 strtolower(
'ilObjLearningSequenceEditIntroGUI'),
781 $this->
tabs->addSubTab(
782 self::TAB_EDIT_EXTRO,
783 $this->
lng->txt(
"lso_settings_extro"),
784 $this->
ctrl->getLinkTargetByClass(
785 strtolower(
'ilObjLearningSequenceEditExtroGUI'),
790 $this->
tabs->activateSubTab($active);
795 return $this->
access->checkAccess($which,
"", $this->ref_id);
814 strtolower(
'ilObjLearningSequenceGUI'),
817 return $this->
ctrl->getLinkTargetByClass($class_path, $cmd);
823 case self::CMD_CONTENT:
824 return 'ilObjLearningSequenceContentGUI';
825 case self::CMD_LEARNER_VIEW:
826 return 'ilObjLearningSequenceLearnerGUI';
827 case self::CMD_SETTINGS:
828 return 'ilObjLearningSequenceSettingsGUI';
830 return 'ilInfoScreenGUI';
831 case self::CMD_PERMISSIONS:
832 return 'ilPermissionGUI';
840 $link = chr(13) . chr(10) . chr(13) . chr(10);
841 $link .= $this->
lng->txt(
'lso_mail_permanent_link');
842 $link .= chr(13) . chr(10) . chr(13) . chr(10);
845 return rawurlencode(base64_encode($link));
850 if ($this->
object === null) {
853 $this->
object = $obj;
869 $local_roles = $this->
object->getLocalLearningSequenceRoles();
870 $lso_member = $this->
object->getDefaultMemberRole();
871 $lso_roles = array();
873 if (in_array($lso_member, $local_roles)) {
875 unset($local_roles[$lso_roles[$lso_member]]);
878 foreach ($local_roles as $title => $role_id) {
892 array_keys($this->obj_definition->getSubObjects(
'lso',
false)),
903 foreach ($a_data as $usr_id => $user_data) {
904 $res_data[$usr_id] = $user_data;
907 foreach ($udf_data->getAll() as $field => $value) {
908 list(, $field_id) = explode(
'_', $field);
909 $res_data[$usr_id][
'udf_' . $field_id] = (string) $value;
928 if ($this->post_wrapper->has(
"mref_id")) {
929 $mref_id = $this->post_wrapper->retrieve(
933 $_SESSION[
"saved_post"] = array_unique(array_merge($_SESSION[
"saved_post"], $mref_id));
937 $ru->deleteObjects($this->requested_ref_id,
ilSession::get(
"saved_post") ?? []);
939 $this->
ctrl->redirect($this, self::CMD_CONTENT);
949 $this->tpl->setOnScreenMessage(
'info', sprintf(
950 $this->
lng->txt(
'msg_no_perm_read_item'),
951 $this->
object->getTitle()
953 $this->
ctrl->redirect($this, self::CMD_VIEW);
redrawHeaderActionObject()
Ajax call: redraw action header only.
static get(string $a_var)
static hasAccess(string $mode, int $id)
ILIAS Refinery Factory $refinery
const MAIL_ALLOWED_TUTORS
redirectByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
confirmedDeleteObject()
ATTENTION: This mostly is a copy of ilObjectGUI::confirmDeleteObject, but does not redirect to parent...
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...
cancelCreation()
cancel create action and go back to repository parent
GUI class for the workflow of copying objects.
denyAccessIfNotWritePermission()
setOnScreenMessage(string $type, string $a_txt, bool $a_keep=false)
Set a message to be displayed to the user.
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
const CMD_DELETE_CONFIRMED
static isAccessible(int $id)
trashObject()
Show trash content of object.
ilRbacReview $rbac_review
enableDragDropFileUpload()
static _gotoRepositoryNode(int $ref_id, string $cmd="")
const CMD_REMOVE_FROM_DESK
setParameterByClass(string $a_class, string $a_parameter, $a_value)
deleteObject(bool $error=false)
Display deletion confirmation screen.
Data Factory $data_factory
const CMD_ENABLE_ADMINISTRATION_PANEL
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
add(int $a_usr_id, int $a_role)
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importFileObject(int $parent_id=null)
static _isParticipant(int $a_ref_id, int $a_usr_id)
addCustomData(array $a_data)
Interface ilCtrlBaseClassInterface describes ilCtrl base classes.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _enabledLearningProgress()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addSubTabsForContent(string $active)
const SORT_NEW_ITEMS_POSITION_BOTTOM
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
setContent(string $a_html)
Sets content for standard template.
initDidacticTemplate(ilPropertyFormGUI $form)
undeleteObject()
Get objects back from trash.
ILIAS UI Renderer $ui_renderer
linkObject()
create an new reference of an object in tree it's like a hard link of unix
manage_members(string $cmd=self::CMD_MANAGE_MEMBERS)
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
const SORT_NEW_ITEMS_ORDER_CREATION
ServerRequestInterface $request
afterSave(ilObject $new_object)
manageContent(string $cmd=self::CMD_CONTENT)
static _getTranslation(string $a_role_title)
static getInstanceByRefId(int $ref_id)
ILIAS UI Factory $ui_factory
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
settings(string $cmd=self::CMD_SETTINGS)
static forwardByClass(string $base_class, array $classes, array $params, string $cmd='')
Repository GUI Utilities.
getAdditionalWhitelistTypes()
append additional types to ilRepositoryExplorerGUI's whitelist
getLinkTarget(string $cmd)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
learnerView(string $cmd=self::CMD_LEARNER_VIEW)
const CMD_MEMBERS_GALLERY
checkAccess(string $which)
getClassForTabs(string $cmd)
Navigation History of Repository Items.
removeFromDeskObject()
Remove from desktop public.
static redirect(string $a_script)
ILIAS Style Content Service $content_style
recordLearningSequenceRead()
setPermanentLink(string $a_type, ?int $a_id, string $a_append="", string $a_target="", string $a_title="")
Generates and sets a permanent ilias link.
setTargetScript(string $a_target_script)
performPasteIntoMultipleObjectsObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _goto(string $target)
__construct(Container $dic, ilPlugin $plugin)
getReturnLocation(string $cmd, string $default_location="")
Get return location for command (command is method name without "Object", e.g.
const LP_CONTEXT_REPOSITORY
info(string $cmd=self::CMD_INFO)
ArrayBasedRequestWrapper $post_wrapper
addToDeskObject()
Add desktop item public.
cutObject()
cut object(s) out from a container and write the information to clipboard public ...
ilAppEventHandler $app_event_handler
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
Class ilObjLearningSequenceGUI ilObjLearningSequenceGUI: ilRepositoryGUI ilObjLearningSequenceGUI: ...
ilObjectService $obj_service
render()
Add new item selection to current page incl.
permissions(string $cmd=self::CMD_PERMISSIONS)
ilObjLearningSequence $ls_object
static _lookupType(int $id, bool $reference=false)
addHeaderAction()
Add header action menu.
static clear(string $a_var)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
keepObjectsInClipboardObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
GUI class for learning sequence membership features.
ilNavigationHistory $navigation_history
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...