3 declare(strict_types=1);
70 $this->usr_id = $usr_id;
77 $this->renderer = $ui_renderer;
90 $cmd = $this->
ctrl->getCmd();
92 case self::CMD_STANDARD:
98 $this->
ctrl->redirect($this, self::CMD_VIEW);
100 case self::CMD_UNSUBSCRIBE:
101 if ($this->launchlinks_builder->currentUserMayUnparticipate()) {
102 $this->roles->leave($this->usr_id);
104 $this->
ctrl->redirect($this, self::CMD_STANDARD);
112 "ilObjLearningSequenceLearnerGUI: " .
113 "Command not supported: $cmd" 118 protected function view(
string $cmd): void
124 $this->tpl->setContent($content);
127 if (!str_contains($content, $element)) {
132 if (!str_contains($content, $element)) {
133 $curriculum = $this->curriculum_builder->getLearnerCurriculum();
134 $this->tpl->setRightContent(
142 $admins = $this->roles->getLearningSequenceAdminIds();
143 if (!in_array($usr_id, $admins)) {
144 $this->roles->join($usr_id);
150 foreach ($this->launchlinks_builder->getLinks() as $entry) {
151 list($label, $link, $primary) = $entry;
153 $sub_button->setPrimary($primary);
154 $sub_button->setCaption($label,
false);
155 $sub_button->setUrl($link);
156 $this->
toolbar->addButtonInstance($sub_button);
164 $this->ui_factory->legacy(
'<div class="ilLSOLearnerView">')
166 $components[] = $this->ui_factory->legacy(
'</div>');
168 return $this->renderer->render($components);
176 if ($cmd === self::CMD_STANDARD) {
177 if ($this->intro ===
'') {
178 $contents[] = $this->ui_factory->legacy($this->
settings->getAbstract());
181 $contents[] = $this->ui_factory->image()->responsive(
$img,
'');
184 $contents[] = $this->ui_factory->legacy($this->intro);
188 if ($cmd === self::CMD_EXTRO) {
189 if ($this->extro ===
'') {
190 $contents[] = $this->ui_factory->legacy($this->
settings->getExtro());
193 $contents[] = $this->ui_factory->image()->responsive(
$img,
'');
196 $contents[] = $this->ui_factory->legacy($this->extro);
202 protected function play(): void
204 $response = $this->player->play($this->
get);
209 $this->tpl->setContent(
'THIS SHOULD NOT SHOW');
212 case 'EXIT::' . $this->player::LSO_CMD_FINISH:
213 $cmd = self::CMD_EXTRO;
216 case 'EXIT::' . $this->player::LSO_CMD_SUSPEND:
218 $cmd = self::CMD_STANDARD;
221 $href = $this->
ctrl->getLinkTarget($this, $cmd,
'',
false,
false);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getWrappedHTML(array $components)
const PARAM_LSO_NEXT_ITEM
ilLearningSequenceSettings $settings
ILIAS UI Factory $ui_factory
ILIAS UI Renderer $renderer
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLSCurriculumBuilder $curriculum_builder
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface RequestWrapper.
getMainContent(string $cmd)
__construct(int $usr_id, ilAccess $access, ilCtrl $ctrl, ilLanguage $lng, ilGlobalTemplateInterface $tpl, ilToolbarGUI $toolbar, ILIAS\UI\Factory $ui_factory, ILIAS\UI\Renderer $ui_renderer, ilLearningSequenceRoles $roles, ilLearningSequenceSettings $settings, ilLSCurriculumBuilder $curriculum_builder, ilLSLaunchlinksBuilder $launchlinks_builder, ilLSPlayer $player, string $intro, string $extro, RequestWrapper $get)
static redirect(string $a_script)
Implementation of KioskMode Player.
ilLSLaunchlinksBuilder $launchlinks_builder
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLearningSequenceRoles $roles