3 declare(strict_types=0);
46 switch ($this->
ctrl->getNextClass()) {
56 if ($this->
http->wrapper()->post()->has(
'item_ids')) {
57 return $this->
http->wrapper()->post()->retrieve(
70 protected function show(): void
72 $this->
help->setSubScreenId(
"trac_settings");
73 $info = $this->obj_lp->getSettingsInfo();
75 $this->tpl->setOnScreenMessage(
'info', $info);
79 $this->tpl->setContent(
89 $form->setTitle($this->
lng->txt(
'tracking_settings'));
90 $form->setFormAction($this->
ctrl->getFormAction($this));
95 $mod->setValue((
string) $this->obj_lp->getCurrentMode());
98 if ($this->obj_lp->hasIndividualModeOptions()) {
99 $this->obj_lp->initInvidualModeOptions($mod);
101 foreach ($this->obj_lp->getValidModes() as $mode_key) {
103 $this->obj_lp->getModeText($mode_key),
105 $this->obj_lp->getModeInfoText($mode_key)
108 $mod->addOption($opt);
113 $this->
lng->txt(
'trac_visits'),
117 $vis->setMaxLength(4);
120 $this->
lng->txt(
'trac_visits_info'),
124 $vis->setRequired(
true);
125 $vis->setValue((
string) $this->obj_settings->getVisits());
126 $opt->addSubItem($vis);
128 $this->obj_lp->appendModeConfiguration((
int) $mode_key, $opt);
131 $form->addCommandButton(
'saveSettings', $this->
lng->txt(
'save'));
138 if ($form->checkInput()) {
142 if ($this->obj_lp->shouldFetchIndividualModeFromFormSubmission()) {
143 $new_mode = $this->obj_lp->fetchIndividualModeFromFormSubmission(
147 $new_mode = (
int) $form->getInput(
'modus');
149 $old_mode = $this->obj_lp->getCurrentMode();
150 $mode_changed = ($old_mode != $new_mode);
154 $visits_changed = null;
156 $new_visits = (
int) $form->getInput(
'visits');
157 $old_visits = $this->obj_settings->getVisits();
158 $visits_changed = ($old_visits != $new_visits);
161 $this->obj_lp->saveModeConfiguration($form, $mode_changed);
165 $collection = $this->obj_lp->getCollectionInstance();
167 $collection->delete();
171 $refresh_lp = ($mode_changed || $visits_changed);
174 $this->obj_lp->resetCaches();
176 $this->obj_settings->setMode($new_mode);
177 $this->obj_settings->setVisits((
int) $new_visits);
178 $this->obj_settings->update($refresh_lp);
181 $this->obj_lp->getCollectionInstance() &&
183 $this->tpl->setOnScreenMessage(
186 'trac_edit_collection' 191 $this->tpl->setOnScreenMessage(
194 'trac_settings_saved' 198 $this->
ctrl->redirect($this,
'show');
201 $form->setValuesByPost();
203 $this->tpl->setContent(
215 $collection = $this->obj_lp->getCollectionInstance();
216 if ($collection && $collection->hasSelectableItems()) {
221 $this->obj_lp->getCurrentMode()
223 $table->
parse($collection);
224 return $table->getHTML();
232 $this->tpl->setOnScreenMessage(
234 $this->
lng->txt(
'select_one'),
237 $this->
ctrl->redirect($this,
'show');
240 $collection = $this->obj_lp->getCollectionInstance();
241 if ($collection && $collection->hasSelectableItems()) {
246 $this->obj_lp->resetCaches();
251 $this->tpl->setOnScreenMessage(
253 $this->
lng->txt(
'trac_settings_saved'),
256 $this->
ctrl->redirect($this,
'show');
262 $this->tpl->setOnScreenMessage(
264 $this->
lng->txt(
'select_one'),
267 $this->
ctrl->redirect($this,
'show');
271 $collection = $this->obj_lp->getCollectionInstance();
272 if ($collection && $collection->hasSelectableItems()) {
277 $this->obj_lp->resetCaches();
282 $this->tpl->setOnScreenMessage(
284 $this->
lng->txt(
'trac_settings_saved'),
287 $this->
ctrl->redirect($this,
'show');
296 $this->tpl->setOnScreenMessage(
298 $this->
lng->txt(
'select_one'),
301 $this->
ctrl->redirect($this,
'show');
304 $collection = $this->obj_lp->getCollectionInstance();
305 if ($collection && $collection->hasSelectableItems()) {
313 $this->tpl->setOnScreenMessage(
315 $this->
lng->txt(
'trac_settings_saved'),
318 $this->
ctrl->redirect($this,
'show');
327 $this->tpl->setOnScreenMessage(
329 $this->
lng->txt(
'select_one'),
332 $this->
ctrl->redirect($this,
'show');
335 $collection = $this->obj_lp->getCollectionInstance();
336 if ($collection && $collection->hasSelectableItems()) {
343 $this->tpl->setOnScreenMessage(
345 $this->
lng->txt(
'trac_settings_saved'),
348 $this->
ctrl->redirect($this,
'show');
357 if ($this->
http->wrapper()->post()->has(
'grp')) {
358 $groups = $this->
http->wrapper()->post()->retrieve(
360 $this->
refinery->kindlyTo()->dictOf(
365 if (!count($groups)) {
366 $this->tpl->setOnScreenMessage(
368 $this->
lng->txt(
'select_one'),
371 $this->
ctrl->redirect($this,
'show');
375 $collection = $this->obj_lp->getCollectionInstance();
376 if ($collection && $collection->hasSelectableItems()) {
377 $collection->saveObligatoryMaterials($groups);
383 $this->tpl->setOnScreenMessage(
385 $this->
lng->txt(
'settings_saved'),
388 $this->
ctrl->redirect($this,
'show');
390 $this->tpl->setOnScreenMessage(
393 'trac_grouped_material_obligatory_err' 397 $this->tpl->setOnScreenMessage(
399 $this->
lng->txt(
'err_check_input'),
402 $this->
ctrl->redirect($this,
'show');
411 $tlt = (array) ($this->
http->request()->getParsedBody()[
'tlt'] ?? []);
412 foreach ($tlt as $item_id => $item) {
414 if (!is_object($md_section = $md_obj->getEducational())) {
415 $md_section = $md_obj->addEducational();
418 $md_section->setPhysicalTypicalLearningTime(
425 $md_section->update();
431 $this->tpl->setOnScreenMessage(
433 $this->
lng->txt(
'settings_saved'),
436 $this->
ctrl->redirect($this,
'show');
441 $has_lp_parents =
false;
443 $path = $this->tree->getNodePath($a_ref_id);
445 foreach (
$path as $node) {
447 if ($supports_lp || $has_lp_parents) {
448 $a_res[(
int) $node[
"child"]][
"node"] = array(
449 "type" => (
string) $node[
"type"]
451 "title" => (string) $node[
"title"]
453 "obj_id" => (
int) $node[
"obj_id"]
463 $node[
"child"] != $a_ref_id) {
464 $a_res[(
int) $node[
"child"]][
"node"][
"lp"] =
true;
465 $has_lp_parents =
true;
467 $parent_obj_id = (
int) $node[
'obj_id'];
469 $parent_collection = $parent_obj_lp->getCollectionInstance();
471 $parent_collection &&
472 $parent_collection->hasSelectableItems() &&
473 $parent_collection->isAssignedEntry($a_ref_id)
475 $a_res[$node[
'child']][
'node'][
'active'] =
true;
479 return $has_lp_parents;
485 if ($this->
http->wrapper()->query()->has(
'ref_id')) {
486 $ref_id = $this->
http->wrapper()->query()->retrieve(
490 } elseif ($this->
http->wrapper()->post()->has(
'ref_id')) {
491 $ref_id = $this->
http->wrapper()->post()->retrieve(
500 "tpl.lp_obj_settings_tree_info.html",
508 foreach ($coll as $parent_ref_id =>
$parts) {
512 if ($node[
"active"]) {
520 if ($this->
access->checkAccess(
"read",
"", $parent_ref_id) &&
550 $this->
lng->txt(
"obj_" . $node[
"type"])
557 :
' class="ilLPParentInfoListLPUnsupported"' 569 $this->
lng->txt(
"trac_lp_settings_info_parent_legend"),
578 $this->
lng->txt(
"trac_lp_settings_info_parent_container")
__construct(int $a_mode, int $a_ref_id)
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 _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
const LP_MODE_MANUAL_BY_TUTOR
static isSupportedObjectType(string $type)
show()
Show settings tables.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
touchBlock(string $block)
overwrites ITX::touchBlock.
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
parse(ilLPCollection $a_collection)
Read and parse items.
executeCommand()
execute command
static _lookupObjId(int $ref_id)
static http()
Fetches the global http state from ILIAS.
static _lookupTitle(int $obj_id)
setValue(string $a_value)
static _refreshStatus(int $a_obj_id, ?array $a_users=null)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
getLPPathInfo(int $a_ref_id, array &$a_res)
groupMaterials()
Group materials.
saveObligatoryMaterials()
Save obligatory state per grouped materials.
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
ilLPObjSettings $obj_settings
getTableByMode()
Get tables by mode.
__construct(Container $dic, ilPlugin $plugin)
const PANEL_STYLE_SECONDARY
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
ilGlobalTemplateInterface $tpl
static getInstance(int $obj_id)
static _getValidTimeSpan()