19 declare(strict_types=1);
97 public const TAB_LP =
"learning_progress";
123 public static function _goto(
string $target): void
126 $main_tpl = $DIC->ui()->mainTemplate();
128 $request = $DIC->http()->request();
129 $lng = $DIC->language();
130 $err = $DIC[
'ilErr'];
132 $targetParameters = explode(
'_', $target);
133 $id = (
int) $targetParameters[0];
135 if (!self::isAccessible(
$id)) {
136 $err->raiseError(
$lng->
txt(
'msg_no_perm_read'), $err->FATAL);
139 if (self::hasAccess(self::ACCESS_READ,
$id)) {
142 if (isset($request->getQueryParams()[
'gotolp'])) {
146 self::forwardByClass(
147 ilRepositoryGUI::class,
148 [ilObjLearningSequenceGUI::class],
153 if (self::hasAccess(self::ACCESS_VISIBLE,
$id)) {
158 $main_tpl->setOnScreenMessage(
'info', sprintf(
159 $lng->
txt(
'msg_no_perm_read_item'),
163 self::forwardByClass(ilRepositoryGUI::class, [ilRepositoryGUI::class], [
'ref_id' =>
ROOT_FOLDER_ID]);
170 self::hasAccess(self::ACCESS_READ, $id) ||
171 self::hasAccess(self::ACCESS_VISIBLE, $id) ||
179 return $DIC->access()->checkAccess($mode,
'', $id);
185 $ctrl = $DIC->ctrl();
186 $target_class = end($classes);
189 foreach ($params as $key => $value) {
194 array_splice($classes, 0, 0, $base_class);
203 $this->
ctrl = $DIC[
'ilCtrl'];
204 $this->
lng = $DIC[
'lng'];
205 $this->
user = $DIC[
'ilUser'];
206 $this->
tabs = $DIC[
'ilTabs'];
207 $this->
toolbar = $DIC[
'ilToolbar'];
208 $this->
help = $DIC[
'ilHelp'];
209 $this->
settings = $DIC[
'ilSetting'];
210 $this->
access = $DIC[
'ilAccess'];
211 $this->rbac_review = $DIC[
'rbacreview'];
212 $this->ui_factory = $DIC[
'ui.factory'];
213 $this->ui_renderer = $DIC[
'ui.renderer'];
214 $this->request = $DIC->http()->request();
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->type);
229 $this->
lng->loadLanguageModule($this->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":
271 case "ilinfoscreengui":
272 $this->
tabs->setTabActive(self::TAB_INFO);
275 case "ilpermissiongui":
276 $this->
tabs->setTabActive(self::TAB_PERMISSIONS);
279 case "ilobjlearningsequencesettingsgui":
281 if (!$this->
checkAccess(
"write",
'', $this->ref_id)) {
282 $this->tpl->setOnScreenMessage(
'failure', sprintf(
283 $this->
lng->txt(
'msg_no_perm_read_item'),
284 $this->
object->getTitle()
287 $this->
ctrl->redirect($this,
'view');
290 $this->
tabs->activateTab(self::TAB_SETTINGS);
293 case "ilobjlearningsequencecontentgui":
295 if (!$this->
checkAccess(
"read",
'', $this->ref_id)) {
296 $this->tpl->setOnScreenMessage(
'failure', sprintf(
297 $this->
lng->txt(
'msg_no_perm_read_item'),
298 $this->
object->getTitle()
301 $this->
ctrl->redirect($this,
'view');
305 $this->
tabs->activateTab(self::TAB_CONTENT_MAIN);
309 case "ilobjlearningsequencelearnergui":
311 $this->
tabs->activateTab(self::TAB_CONTENT_MAIN);
315 case "illearningsequencemembershipgui":
316 $this->
tabs->setTabActive(self::TAB_MEMBERS);
319 case 'illearningprogressgui':
320 $this->
tabs->setTabActive(self::TAB_LP);
325 $gui->addFormat(
"xml");
326 $this->
tabs->setTabActive(self::TAB_EXPORT);
329 case 'ilobjectcopygui':
331 $gui->setType(
'lso');
334 case 'ilobjindividualassessmentgui':
335 $struct = [
'ilrepositorygui',
'ilobjindividualassessmentgui'];
336 if ($cmd ===
'edit') {
337 $struct[] =
'ilindividualassessmentsettingsgui';
339 $this->
ctrl->redirectByClass($struct, $cmd);
342 $struct = [
'ilrepositorygui',
'ilobjtestgui'];
343 $this->
ctrl->redirectByClass($struct, $cmd);
345 case 'ilobjlearningsequencelppollinggui':
346 $gui = $this->
object->getLocalDI()[
"gui.learner.lp"];
349 case "ilobjlearningsequenceeditintrogui":
350 $which_page = LSOPageType::INTRO;
351 $which_tab = self::TAB_EDIT_INTRO;
352 $gui_class =
'ilObjLearningSequenceEditIntroGUI';
354 case "ilobjlearningsequenceeditextrogui":
355 if (!isset($which_page)) {
357 $which_tab = self::TAB_EDIT_EXTRO;
358 $gui_class =
'ilObjLearningSequenceEditExtroGUI';
364 if (!$this->
object->hasContentPage($which_page)) {
365 $this->
object->createContentPage($which_page);
368 $gui =
new $gui_class(
370 $this->object->getContentPageId()
376 if (!is_null($out)) {
384 $cmd = self::CMD_CONTENT;
386 $cmd = self::CMD_VIEW;
391 case self::CMD_IMPORT:
395 case self::CMD_LEARNER_VIEW:
399 case self::CMD_INFO_SCREEN:
400 $this->
ctrl->redirectByClass(ilInfoScreenGUI::class,
'showSummary');
402 case self::CMD_SETTINGS:
403 $this->
ctrl->redirectByClass(ilObjLearningSequenceSettingsGUI::class, $cmd);
405 case self::CMD_CONTENT:
406 $this->
ctrl->redirectByClass(ilObjLearningSequenceContentGUI::class, $cmd);
408 case self::CMD_MEMBERS:
409 case self::CMD_MEMBERS_GALLERY:
410 $this->
ctrl->redirectByClass(ilLearningSequenceMembershipGUI::class, $cmd);
412 case self::CMD_UNPARTICIPATE:
415 case self::CMD_CANCEL:
420 case self::CMD_REMOVE_FROM_DESK:
424 case self::CMD_ADD_TO_DESK:
431 case self::CMD_CUT_SHOWTREE:
434 case self::CMD_CUT_CLIPBOARD:
440 case self::CMD_DELETE:
443 case self::CMD_DELETE_CONFIRMED:
446 case self::CMD_PERFORM_PASTE:
449 case self::CMD_SHOW_TRASH:
452 case self::CMD_UNDELETE:
456 case self::CMD_CANCEL_CUT:
457 case self::CMD_CANCEL_DELETE:
458 case self::CMD_CANCEL_LINK:
463 case self::CMD_CREATE:
467 case self::CMD_REDRAW_HEADER:
472 case self::CMD_ENABLE_ADMINISTRATION_PANEL:
474 $this->manageContent();
478 throw new ilException(
"ilObjLearningSequenceGUI: Invalid command '$cmd'");
482 throw new ilException(
"ilObjLearningSequenceGUI: Can't forward to next class $next_class");
492 if (strtolower($this->request_wrapper->retrieve(
"baseClass", $this->refinery->kindlyTo()->string())) === strtolower(self::class)) {
493 $tpl->printToStdOut();
499 $this->content_style->gui()->addCss(
509 $this->
access->checkAccess(
'read',
'', $this->ref_id)
511 $link = ilLink::_getLink($this->ref_id, $this->type);
512 $this->navigation_history->addItem($this->ref_id, $link, $this->type);
540 protected function view(): void
543 $this->
tabs->clearSubTabs();
545 $cmd = self::CMD_INFO;
547 $cmd = self::CMD_CONTENT;
548 $this->
ctrl->redirectByClass(ilObjLearningSequenceContentGUI::class, $cmd);
550 $cmd = self::CMD_LEARNER_VIEW;
551 $this->
ctrl->redirectByClass(ilObjLearningSequenceLearnerGUI::class, $cmd);
574 return $this->
object->getLocalDI()[
"gui.learner"];
587 $this->request_wrapper,
596 $for_user = $this->
user->getId();
597 if ($this->request_wrapper->has(
"user_id")) {
598 $for_user = $this->request_wrapper->retrieve(
"user_id", $this->
refinery->kindlyTo()->int());
614 parent::createObject();
617 protected function save(): void
619 parent::saveObject();
625 $new_object->
getId(),
632 $participant->updateNotification(
633 $this->
user->getId(),
634 (bool) $this->
settings->get(
'mail_lso_admin_notification',
"1")
644 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'object_added'),
true);
645 $this->
ctrl->setParameter($this,
"ref_id", $new_object->
getRefId());
649 $this->
ctrl->getLinkTarget($this, self::CMD_SETTINGS,
"",
false,
false)
657 $usr_id = $this->
user->getId();
658 $this->
getObject()->getLSRoles()->leave($usr_id);
660 $this->
ctrl->redirectByClass(
'ilObjLearningSequenceLearnerGUI', self::CMD_LEARNER_VIEW);
666 $cmd = $this->
checkAccess(
"write") ? self::CMD_CONTENT : self::CMD_VIEW;
668 self::TAB_CONTENT_MAIN,
669 $this->
lng->txt(self::TAB_CONTENT_MAIN),
670 $this->
ctrl->getLinkTarget($this, $cmd,
"",
false,
false)
677 $this->
lng->txt(self::TAB_INFO),
685 $this->
lng->txt(self::TAB_SETTINGS),
693 $cmd = self::CMD_MEMBERS;
695 $this->
getObject()->getLSSettings()->getMembersGallery()
696 && $this->
getObject()->getLSRoles()->isMember($this->
user->getId())
698 $cmd = self::CMD_MEMBERS_GALLERY;
704 $this->
lng->txt(self::TAB_MEMBERS),
705 $this->
ctrl->getLinkTarget($this, $cmd,
"",
false,
false)
713 $this->
lng->txt(self::TAB_LP),
714 $this->
ctrl->getLinkTargetByClass(array(
'ilobjlearningsequencegui',
'illearningprogressgui'),
'')
721 $this->
lng->txt(self::TAB_EXPORT),
722 $this->
ctrl->getLinkTargetByClass(
"ilexportgui",
"")
728 self::TAB_PERMISSIONS,
729 $this->
lng->txt(self::TAB_PERMISSIONS),
737 $this->
tabs->addSubTab(
738 self::TAB_VIEW_CONTENT,
739 $this->
lng->txt(self::TAB_VIEW_CONTENT),
744 $this->
tabs->addSubTab(
746 $this->
lng->txt(self::TAB_MANAGE),
750 $this->
tabs->addSubTab(
751 self::TAB_EDIT_INTRO,
752 $this->
lng->txt(
"lso_settings_intro"),
753 $this->
ctrl->getLinkTargetByClass(
754 strtolower(
'ilObjLearningSequenceEditIntroGUI'),
758 $this->
tabs->addSubTab(
759 self::TAB_EDIT_EXTRO,
760 $this->
lng->txt(
"lso_settings_extro"),
761 $this->
ctrl->getLinkTargetByClass(
762 strtolower(
'ilObjLearningSequenceEditExtroGUI'),
767 $this->
tabs->activateSubTab($active);
772 return $this->
access->checkAccess($which,
"", $this->ref_id);
791 strtolower(
'ilObjLearningSequenceGUI'),
794 return $this->
ctrl->getLinkTargetByClass($class_path, $cmd);
800 case self::CMD_CONTENT:
801 return 'ilObjLearningSequenceContentGUI';
802 case self::CMD_LEARNER_VIEW:
803 return 'ilObjLearningSequenceLearnerGUI';
804 case self::CMD_SETTINGS:
805 return 'ilObjLearningSequenceSettingsGUI';
807 return 'ilInfoScreenGUI';
808 case self::CMD_PERMISSIONS:
809 return 'ilPermissionGUI';
817 $link = chr(13) . chr(10) . chr(13) . chr(10);
818 $link .= $this->
lng->txt(
'lso_mail_permanent_link');
819 $link .= chr(13) . chr(10) . chr(13) . chr(10);
820 $link .= ilLink::_getLink($this->
object->getRefId());
822 return rawurlencode(base64_encode($link));
835 $local_roles = $this->
object->getLocalLearningSequenceRoles();
836 $lso_member = $this->
object->getDefaultMemberRole();
837 $lso_roles = array();
839 if (in_array($lso_member, $local_roles)) {
841 unset($local_roles[$lso_roles[$lso_member]]);
844 foreach ($local_roles as $title => $role_id) {
858 array_keys($this->obj_definition->getSubObjects(
'lso',
false)),
869 foreach ($a_data as $usr_id => $user_data) {
870 $res_data[$usr_id] = $user_data;
873 foreach ($udf_data->getAll() as $field => $value) {
874 list(, $field_id) = explode(
'_', $field);
875 $res_data[$usr_id][
'udf_' . $field_id] = (string) $value;
884 $this->
ctrl->setParameterByClass(ilRepositoryGUI::class,
'ref_id', $this->ref_id);
888 ilRepositoryGUI::class,
893 $this->
ctrl->clearParametersByClass(ilRepositoryGUI::class);
redrawHeaderActionObject()
Ajax call: redraw action header only.
setOnScreenMessage(string $type, string $a_txt, bool $a_keep=false)
Set a message to be displayed to the user.
static hasAccess(string $mode, int $id)
ILIAS Refinery Factory $refinery
const MAIL_ALLOWED_TUTORS
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
Psr Http Message ServerRequestInterface $request
GUI class for the workflow of copying objects.
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
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
confirmedDeleteObject()
confirmed deletion of object -> objects are moved to trash or deleted immediately, if trash is disabled
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)
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
static _lookupObjId(int $ref_id)
static _isParticipant(int $a_ref_id, int $a_usr_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addCustomData(array $a_data)
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)
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
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
const SORT_NEW_ITEMS_ORDER_CREATION
afterSave(ilObject $new_object)
static _getTranslation(string $a_role_title)
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)
static forwardByClass(string $base_class, array $classes, array $params, string $cmd='')
getLinkTarget(string $cmd)
const CMD_MEMBERS_GALLERY
checkAccess(string $which)
getClassForTabs(string $cmd)
Last visited history for repository items.
static redirect(string $a_script)
ILIAS Style Content Service $content_style
buildAddNewItemElements(array $subtypes, string $create_target_class=ilRepositoryGUI::class, ?int $redirect_target_ref_id=null,)
recordLearningSequenceRead()
Render add new item selector.
setTargetScript(string $a_target_script)
performPasteIntoMultipleObjectsObject()
setPermanentLink(string $a_type, ?int $a_id, string $a_append="", string $a_target="", string $a_title="")
Generates and sets a permanent ilias link.
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
ArrayBasedRequestWrapper $post_wrapper
cutObject()
cut object(s) out from a container and write the information to clipboard public ...
ilAppEventHandler $app_event_handler
ILIAS Container InternalGUIService $gui
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
getCreatableObjectTypes()
Class ilObjLearningSequenceGUI ilObjLearningSequenceGUI: ilRepositoryGUI ilObjLearningSequenceGUI: ...
ilObjectService $obj_service
getAdditionalOKTypes()
append additional types to ilRepositoryExplorerGUI's positive list
static _lookupType(int $id, bool $reference=false)
addHeaderAction()
Add header action menu.
Class ilObjUserTrackingGUI.
keepObjectsInClipboardObject()
GUI class for learning sequence membership features.
ilNavigationHistory $navigation_history
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
Class ArrayBasedRequestWrapper.