19 declare(strict_types=1);
53 $this->type = self::OBJ_TYPE;
54 $this->
lng = $DIC[
'lng'];
55 $this->
ctrl = $DIC[
'ilCtrl'];
56 $this->
user = $DIC[
'ilUser'];
57 $this->tree = $DIC[
'tree'];
58 $this->log = $DIC[
"ilLoggerFactory"]->getRootLogger();
59 $this->app_event_handler = $DIC[
'ilAppEventHandler'];
60 $this->il_news = $DIC->news();
65 $this->
lng->loadLanguageModule(
'rbac');
73 public function read(): void
84 $id = parent::create();
90 return $this->
getId();
95 if (!parent::update()) {
103 public function delete():
bool 105 if (!parent::delete()) {
121 $this->app_event_handler->raise(
122 'components/ILIAS/LearningSequence',
125 'obj_id' => $this->
getId(),
126 'appointments' =>
null 131 public function cloneObject(
int $target_id,
int $copy_id = 0,
bool $omit_tree =
false): ?
ilObject 134 $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
143 $roles = $new_obj->getLSRoles();
145 $this->
user->getId(),
146 $roles->getDefaultAdminRole()
153 foreach ($cp_types as
$type) {
161 $original_page = new \ilContainerPage($old_intro_page_id);
162 $original_page->copy($new_copg_id,
"cont", $new_copg_id);
172 if (!$admin || !$new_admin || !$this->
getRefId() || !$new_obj->
getRefId()) {
173 $this->log->write(__METHOD__ .
' : Error cloning auto generated role: il_lso_admin');
176 $this->rbac_admin->copyRolePermissions($admin, $this->
getRefId(), $new_obj->
getRefId(), $new_admin,
true);
177 $this->log->write(__METHOD__ .
' : Finished copying of role lso_admin.');
182 if (!$member || !$new_member) {
183 $this->log->write(__METHOD__ .
' : Error cloning auto generated role: il_lso_member');
186 $this->rbac_admin->copyRolePermissions($member, $this->
getRefId(), $new_obj->
getRefId(), $new_member,
true);
187 $this->log->write(__METHOD__ .
' : Finished copying of role lso_member.');
197 foreach ($source->getUploads() as $key => $upload_info) {
198 $target = $target->withUpload($upload_info, $key);
201 foreach ($source->getDeletions() as $deletion) {
202 $target = $target->withDeletion($deletion);
206 ->withAbstract($source->getAbstract())
207 ->withExtro($source->getExtro())
208 ->withAbstractImage($source->getAbstractImage())
209 ->withExtroImage($source->getExtroImage())
218 $lp_settings->cloneSettings($obj_id);
225 if ($cwo->isRootNode($this->getRefId())) {
234 $new_status = ($new_obj->
getLSActivation()->getEffectiveOnlineStatus())
251 if (is_null($this->di)) {
253 $di->init($this->
getDIC());
261 if (is_null($this->local_di)) {
269 $this->local_di =
$di;
276 if (!$this->settings_db) {
277 $this->settings_db = $this->
getDI()[
'db.settings'];
284 if (!$this->activation_db) {
285 $this->activation_db = $this->
getDI()[
'db.activation'];
292 if (!$this->ls_activation) {
302 $this->ls_activation = $settings;
307 if (!$this->ls_settings) {
317 $this->ls_settings = $settings;
322 if (!$this->items_db) {
323 $this->items_db = $this->
getLocalDI()[
'db.lsitems'];
330 if (!$this->conditions_db) {
331 $this->conditions_db = $this->
getDI()[
"db.postconditions"];
338 if (!$this->ls_participants) {
339 $this->ls_participants = $this->
getLocalDI()[
'participants'];
351 if (is_null($this->ls_access)) {
374 $db->storeItems($ls_items);
384 $rep_utils->deleteObjects($this->
getRefId(), $ref_ids);
386 $db->delete($ref_ids);
394 $condition_types = $this->il_condition_handler->getOperatorsByTriggerType($type);
398 foreach ($condition_types as $cond_type) {
399 $conditions[$cond_type] = $this->
lng->txt(
'condition_' . $cond_type);
406 if (!$this->learner_progress_db) {
407 $this->learner_progress_db = $this->
getLocalDI()[
'db.progress'];
414 if (!$this->state_db) {
415 $this->state_db = $this->
getDI()[
'db.states'];
426 return $db->getLearnerItems($usr_id, $this->
getRefId());
431 if (!$this->ls_roles) {
432 $this->ls_roles = $this->
getLocalDI()[
'roles'];
448 public static function _goto(
string $target,
string $add =
""): void
451 $main_tpl = $DIC->ui()->mainTemplate();
453 $ilAccess = $DIC[
'ilAccess'];
456 $ilUser = $DIC[
'ilUser'];
460 if (substr($add, 0, 5) ==
'rcode') {
465 "login.php?target=" . $request_target .
"&cmd=force_login&lang=" .
466 $ilUser->getCurrentLanguage()
478 if ($add ==
"mem" && $ilAccess->checkAccess(
"manage_members",
"", $target)) {
482 if ($ilAccess->checkAccess(
"read",
"", $target)) {
486 if ($ilAccess->checkAccess(
"visible",
"", $target)) {
490 $main_tpl->setOnScreenMessage(
'failure', sprintf(
491 $lng->
txt(
"msg_no_perm_read_item"),
512 $item->setContentIsLangVar(
true);
513 $item->setContentTextIsLangVar(
true);
514 $item->setTitle(
"lso_news_online_title");
515 $item->setContent(
"lso_news_online_txt");
516 $ns->data()->save($item);
526 $act_db->setEffectiveOnlineStatus($this->
getRefId(), $status);
532 $curriculum = $dic[
"player.curriculumbuilder"]->getLearnerCurriculum(
false);
533 return $dic[
'ui.renderer']->render($curriculum);
539 $buttons = $dic[
"player.launchlinksbuilder"]->getLaunchbuttonsComponent();
540 return $dic[
'ui.renderer']->render($buttons);
552 return $this->
getLSRoles()->getLocalLearningSequenceRoles($translate);
557 return $this->
getLSRoles()->getDefaultMemberRole();
562 return $this->
getLSRoles()->getDefaultAdminRole();
570 return $this->
getLSRoles()->getDefaultLearningSequenceRoles($a_grp_id);
585 return $this->getLsRoles()->readMemberData($user_ids, $columns);
590 foreach ($this->tree->getPathFull($ref_id) as $hop) {
591 if (in_array($hop[
'type'], $search_types)) {
610 return $this->
getId();
621 throw new \LogicException(
'will not create content page - it already exists.');
625 $new_page_object->setParentId($this->
getId());
626 $new_page_object->createFromXML();
635 $gui = $page_type === LSOPageType::INTRO ?
639 $gui->setPresentationTitle(
"");
640 $gui->setTemplateOutput(
false);
642 $ret = $gui->showPage();
const LP_STATUS_COMPLETED_NUM
static handleCode(int $a_ref_id, string $a_type, string $a_code)
Storage for ilLSPostConditions.
ilLSPostConditionDB $conditions_db
ilLearningSequenceActivation $ls_activation
deletePostConditionsForSubObjects(array $ref_ids)
Delete post conditions for ref ids.
getMailToMembersType()
Get mail to members type.
updateSettings(ilLearningSequenceSettings $settings)
setEffectiveOnlineStatus(bool $status)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
cloneLPSettings(int $obj_id)
ilLearningSequenceSettings $ls_settings
cloneAutoGeneratedRoles(ilObjLearningSequence $new_obj)
getParentObjectInfo(int $ref_id, array $search_types)
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...
cloneSettings(ilObjLearningSequence $new_obj)
Interface Observer Contains several chained tasks and infos about them.
getDefaultLearningSequenceRoles(string $a_grp_id="")
getCurrentUserCurriculum()
static _gotoRepositoryNode(int $ref_id, string $cmd="")
__construct(int $id=0, bool $call_by_reference=true)
Class ilObjLearningSequenceEditExtroGUI ilObjLearningSequenceEditExtroGUI: ilPageEditorGUI, ilEditClipboardGUI.
Class ilObjLearningSequenceEditIntroGUI ilObjLearningSequenceEditIntroGUI: ilPageEditorGUI, ilEditClipboardGUI.
ilLearningSequenceSettingsDB $settings_db
hasContentPage(LSOPageType $page_type)
createContentPage(LSOPageType $page_type)
Activation-Settings for an LSO.
static _lookupObjId(int $ref_id)
getLocalLearningSequenceRoles(bool $translate=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getCurrentUserLaunchButtons()
ILIAS News Service $il_news
cloneMetaData(ilObject $target_obj)
Copy meta data.
ilLearningSequenceActivationDB $activation_db
static _lookupTitle(int $obj_id)
Settings for an LSO (like abstract, extro)
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static getInstanceByRefId(int $ref_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
Persistence for View-States.
getLSLearnerItems(int $usr_id)
cloneIntroAndExtroContentPages(ilObjLearningSequence $new_obj, array $cp_types)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Persistence for Settings (like abstract, extro)
raiseEvent(string $event_type)
readMemberData(array $user_ids, ?array $columns=null)
cloneActivation(ilObjLearningSequence $new_obj, int $a_copy_id)
ilLearningSequenceRoles $ls_roles
static _deleteAllEntries(int $a_obj_id)
Delete all entries Normally called in case of object deletion.
getContentPageHTML(LSOPageType $page_type)
static redirect(string $a_script)
ilLearningSequenceParticipants $ls_participants
getPossiblePostConditionsForType(string $type)
Get LearningProgress and availability of items in sequence.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
ilConditionHandler $il_condition_handler
static _goto(string $target, string $add="")
Goto target learning sequence.
ilObjLearningSequenceAccess $ls_access
Persistence for online/activation period.
ilLearnerProgressDB $learner_progress_db
static _getInstance(int $a_copy_id)
static _lookupType(int $id, bool $reference=false)
updateActivation(ilLearningSequenceActivation $settings)
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
storeLSItems(array $ls_items)
Update LSItems.