19 declare(strict_types=0);
43 $this->progress_block_settings = (
new ViewFactory())->progressBlock()->settings()->repository();
51 switch ($this->
ctrl->getNextClass()) {
60 if ($this->
http->wrapper()->post()->has(
'item_ids')) {
61 return $this->
http->wrapper()->post()->retrieve(
74 protected function show(): void
76 $this->
help->setSubScreenId(
"trac_settings");
77 $info = $this->obj_lp->getSettingsInfo();
79 $this->tpl->setOnScreenMessage(
'info', $info);
83 $this->tpl->setContent(
85 $this->ui_renderer->render($form) .
93 if ($this->obj_lp->hasIndividualModeOptions()) {
94 $mode_groups = $this->obj_lp->initInvidualModeOptions();
96 foreach ($this->obj_lp->getValidModes() as $mode_key) {
97 $mode_config_inputs = [];
100 $mode_config_inputs[
'visits'] = $this->ui_factory->input()->field()->numeric(
101 $this->
lng->txt(
'trac_visits'),
103 $this->
lng->txt(
'trac_visits_info'),
106 )->withRequired(
true)
107 ->withAdditionalTransformation(
109 $this->
refinery->int()->isGreaterThanOrEqual(1),
110 $this->
refinery->int()->isLessThanOrEqual(99999)
112 )->withValue($this->obj_settings->getVisits());
116 $mode_config_inputs[
'show_block'] = $this->ui_factory->input()->field()->checkbox(
117 $this->
lng->txt(
'trac_show_progress_block'),
119 $this->progress_block_settings->isBlockShownForObject($this->getObjId())
123 $mode_config_inputs = array_merge(
125 $this->obj_lp->appendModeConfiguration($mode_key)
128 $mode_groups[$mode_key] = $this->ui_factory->input()->field()->group(
130 $this->obj_lp->getModeText($mode_key),
131 $this->obj_lp->getModeInfoText($mode_key)
136 $mode = $this->ui_factory->input()->field()->switchableGroup(
138 $this->
lng->txt(
'trac_mode')
139 )->withRequired(
true)
140 ->withValue((
string) $this->obj_lp->getCurrentMode());
142 $section = $this->ui_factory->input()->field()->section(
144 $this->
lng->txt(
'tracking_settings')
147 return $this->ui_factory->input()->container()->form()->standard(
148 $this->
ctrl->getLinkTarget($this,
'saveSettings'),
156 ->withRequest($this->
http->request());
157 if (
$data = $form->getData()) {
158 $selected_mode = (string)
$data[
'main'][
'modus'][0];
159 $mode_data =
$data[
'main'][
'modus'][1];
162 if ($this->obj_lp->shouldFetchIndividualModeFromFormSubmission()) {
163 $new_mode = $this->obj_lp->fetchIndividualModeFromFormSubmission(
168 $new_mode = (
int) $selected_mode;
170 $old_mode = $this->obj_lp->getCurrentMode();
172 $mode_changed = ($old_mode != $new_mode);
176 $visits_changed =
null;
178 $new_visits = (
int) $mode_data[
'visits'];
179 $old_visits = $this->obj_settings->getVisits();
180 $visits_changed = ($old_visits != $new_visits);
185 $this->progress_block_settings->setShowBlockForObject(
187 (
bool) $mode_data[
'show_block']
191 $this->obj_lp->saveModeConfiguration(
199 $collection = $this->obj_lp->getCollectionInstance();
201 $collection->delete();
207 $this->obj_lp->resetCaches();
209 $this->obj_settings->setMode($new_mode);
210 $this->obj_settings->setVisits((
int) $new_visits);
211 $this->obj_settings->update(
true);
214 $this->obj_lp->getCollectionInstance() &&
216 $this->tpl->setOnScreenMessage(
219 'trac_edit_collection' 224 $this->tpl->setOnScreenMessage(
227 'trac_settings_saved' 231 $this->
ctrl->redirect($this,
'show');
234 $this->tpl->setContent(
236 $this->ui_renderer->render($form) .
246 $collection = $this->obj_lp->getCollectionInstance();
247 if ($collection && $collection->hasSelectableItems()) {
252 $this->obj_lp->getCurrentMode()
254 $table->
parse($collection);
255 return $table->getHTML();
263 $this->tpl->setOnScreenMessage(
265 $this->
lng->txt(
'select_one'),
268 $this->
ctrl->redirect($this,
'show');
271 $collection = $this->obj_lp->getCollectionInstance();
272 if ($collection && $collection->hasSelectableItems()) {
276 $this->obj_lp->resetCaches();
279 $this->tpl->setOnScreenMessage(
281 $this->
lng->txt(
'trac_settings_saved'),
284 $this->
ctrl->redirect($this,
'show');
290 $this->tpl->setOnScreenMessage(
292 $this->
lng->txt(
'select_one'),
295 $this->
ctrl->redirect($this,
'show');
299 $collection = $this->obj_lp->getCollectionInstance();
300 if ($collection && $collection->hasSelectableItems()) {
305 $this->obj_lp->resetCaches();
310 $this->tpl->setOnScreenMessage(
312 $this->
lng->txt(
'trac_settings_saved'),
315 $this->
ctrl->redirect($this,
'show');
324 $this->tpl->setOnScreenMessage(
326 $this->
lng->txt(
'select_one'),
329 $this->
ctrl->redirect($this,
'show');
332 $collection = $this->obj_lp->getCollectionInstance();
333 if ($collection && $collection->hasSelectableItems()) {
337 $this->obj_lp->resetCaches();
343 $this->tpl->setOnScreenMessage(
345 $this->
lng->txt(
'trac_settings_saved'),
348 $this->
ctrl->redirect($this,
'show');
357 $this->tpl->setOnScreenMessage(
359 $this->
lng->txt(
'select_one'),
362 $this->
ctrl->redirect($this,
'show');
365 $collection = $this->obj_lp->getCollectionInstance();
366 if ($collection && $collection->hasSelectableItems()) {
369 $this->obj_lp->resetCaches();
375 $this->tpl->setOnScreenMessage(
377 $this->
lng->txt(
'trac_settings_saved'),
380 $this->
ctrl->redirect($this,
'show');
389 if ($this->
http->wrapper()->post()->has(
'grp')) {
390 $groups = $this->
http->wrapper()->post()->retrieve(
392 $this->
refinery->kindlyTo()->dictOf(
397 if (!count($groups)) {
398 $this->tpl->setOnScreenMessage(
400 $this->
lng->txt(
'select_one'),
403 $this->
ctrl->redirect($this,
'show');
407 $collection = $this->obj_lp->getCollectionInstance();
408 if ($collection && $collection->hasSelectableItems()) {
409 $collection->saveObligatoryMaterials($groups);
411 $this->obj_lp->resetCaches();
417 $this->tpl->setOnScreenMessage(
419 $this->
lng->txt(
'settings_saved'),
422 $this->
ctrl->redirect($this,
'show');
424 $this->tpl->setOnScreenMessage(
427 'trac_grouped_material_obligatory_err' 431 $this->tpl->setOnScreenMessage(
433 $this->
lng->txt(
'err_check_input'),
436 $this->
ctrl->redirect($this,
'show');
445 $paths = $this->lom_services->paths();
446 $data_helper = $this->lom_services->dataHelper();
448 $tlt = (array) ($this->
http->request()->getParsedBody()[
'tlt'] ?? []);
449 foreach ($tlt as $item_id => $item) {
450 $lom_duration = $data_helper->durationFromIntegers(
458 $this->lom_services->manipulate($this->
getObjId(), $item_id,
'st')
459 ->prepareCreateOrUpdate(
460 $paths->firstTypicalLearningTime(),
466 $this->obj_lp->resetCaches();
469 $this->tpl->setOnScreenMessage(
471 $this->
lng->txt(
'settings_saved'),
474 $this->
ctrl->redirect($this,
'show');
479 $has_lp_parents =
false;
481 $path = $this->tree->getNodePath($a_ref_id);
483 foreach (
$path as $node) {
485 if ($supports_lp || $has_lp_parents) {
486 $a_res[(
int) $node[
"child"]][
"node"] = array(
487 "type" => (
string) $node[
"type"]
489 "title" => (string) $node[
"title"]
491 "obj_id" => (
int) $node[
"obj_id"]
501 $node[
"child"] != $a_ref_id) {
502 $a_res[(
int) $node[
"child"]][
"node"][
"lp"] =
true;
503 $has_lp_parents =
true;
505 $parent_obj_id = (
int) $node[
'obj_id'];
507 $parent_collection = $parent_obj_lp->getCollectionInstance();
509 $parent_collection &&
510 $parent_collection->hasSelectableItems() &&
511 $parent_collection->isAssignedEntry($a_ref_id)
513 $a_res[$node[
'child']][
'node'][
'active'] =
true;
517 return $has_lp_parents;
523 if ($this->
http->wrapper()->query()->has(
'ref_id')) {
524 $ref_id = $this->
http->wrapper()->query()->retrieve(
528 } elseif ($this->
http->wrapper()->post()->has(
'ref_id')) {
529 $ref_id = $this->
http->wrapper()->post()->retrieve(
538 "tpl.lp_obj_settings_tree_info.html",
541 "components/ILIAS/Tracking" 546 foreach ($coll as $parent_ref_id =>
$parts) {
550 if ($node[
"active"]) {
558 if ($this->
access->checkAccess(
"read",
"", $parent_ref_id) &&
588 $this->
lng->txt(
"obj_" . $node[
"type"])
595 :
' class="ilLPParentInfoListLPUnsupported"' 607 $this->
lng->txt(
"trac_lp_settings_info_parent_legend"),
613 $panel = $this->ui_factory->panel()->secondary()->legacy(
614 $this->
lng->txt(
"trac_lp_settings_info_parent_container"),
615 $this->ui_factory->legacy()->content(
$tpl->
get())
618 return $this->ui_renderer->render($panel);
__construct(int $a_mode, int $a_ref_id)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
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)
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
touchBlock(string $block)
overwrites ITX::touchBlock.
show()
Show settings tables.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Class ilLPListOfSettingsGUI.
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)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
static _lookupTitle(int $obj_id)
ProgressBlockSettings $progress_block_settings
static _refreshStatus(int $a_obj_id, ?array $a_users=null)
getLPPathInfo(int $a_ref_id, array &$a_res)
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
groupMaterials()
Group materials.
saveObligatoryMaterials()
Save obligatory state per grouped materials.
ilLPObjSettings $obj_settings
getTableByMode()
Get tables by mode.
__construct(Container $dic, ilPlugin $plugin)
ilGlobalTemplateInterface $tpl
static getInstance(int $obj_id)
static _getValidTimeSpan()