37 $this->tree = $DIC->repositoryTree();
38 $this->
ctrl = $DIC->ctrl();
39 $this->
lng = $DIC->language();
40 $this->
lng->loadLanguageModule(
'trac');
45 $this->parent_ref_id = $a_parent_ref_id;
49 $exp = $subitems->getExplorerGUI();
50 $exp->setSkipRootNode(
true);
51 $exp->setRootId($this->parent_ref_id);
52 $white = $this->
getLPTypes($this->parent_ref_id);
53 $exp->setSelectableTypes($white);
54 if (!in_array(
"fold", $white)) {
57 $exp->setTypeWhiteList($white);
62 $mode = $olp->getModeText($olp->getCurrentMode());
63 if (in_array($olp->getCurrentMode(), $invalid_modes)) {
64 $mode =
"<strong>$mode</strong>";
69 $subitems->setRequired(
true);
73 protected function getLPTypes(
int $a_parent_ref_id): array
76 $root = $this->tree->getNodeData($a_parent_ref_id);
77 $sub_items = $this->tree->getSubTree($root);
78 array_shift($sub_items);
80 foreach ($sub_items as $node) {
85 if (count($modes) > 1) {
86 $res[] = $node[
"type"];
95 if (is_array($a_config[
"subitems"])) {
97 $items->setValue($a_config[
"subitems"]);
103 return [
"subitems" => $a_form->
getInput(
"subitems")];
142 return $invalid_modes;
148 $invalid_modes = self::getInvalidLPModes();
152 if (in_array($olp->getCurrentMode(), $invalid_modes)) {
156 if ($invalid !== []) {
157 $mess = sprintf($this->
lng->txt(
"badge_course_lp_invalid"), implode(
", ", $invalid));
initConfigForm(ilPropertyFormGUI $a_form, int $a_parent_ref_id)
Add custom fields to form.
importConfigToForm(ilPropertyFormGUI $a_form, array $a_config)
Set form values.
const LP_MODE_MANUAL_BY_TUTOR
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static isSupportedObjectType(string $type)
const LP_MODE_COLLECTION_MANUAL
const LP_MODE_COLLECTION_TLT
getLPTypes(int $a_parent_ref_id)
static _lookupObjId(int $ref_id)
static getInvalidLPModes()
static _enabledLearningProgress()
static _lookupTitle(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
validateForm(ilPropertyFormGUI $a_form)
Custom form validation.
const LP_MODE_DEACTIVATED
const LP_MODE_COLLECTION_MOBS
static getTypeClass(string $type)
static getInstance(int $obj_id)
getConfigFromForm(ilPropertyFormGUI $a_form)
Export values to DB.