1 <?php declare(strict_types=1);
33 $this->ls_object = $ls_object;
34 $this->ls_ref_id = $ls_ref_id;
35 $this->first_access = $first_access;
36 $this->usr_id = $usr_id;
37 $this->access = $access;
41 $this->toolbar = $toolbar;
42 $this->ui_factory = $ui_factory;
43 $this->renderer = $ui_renderer;
44 $this->roles = $roles;
46 $this->curriculum_builder = $curriculum_builder;
47 $this->player = $player;
52 $cmd = $this->ctrl->getCmd();
54 case self::CMD_STANDARD:
60 $this->ctrl->redirect($this, self::CMD_VIEW);
62 case self::CMD_UNSUBSCRIBE:
64 $this->roles->leave($this->usr_id);
66 $this->ctrl->redirect($this, self::CMD_STANDARD);
78 "ilObjLearningSequenceLearnerGUI: " .
79 "Command not supported: $cmd" 84 protected function view(
string $cmd)
89 $this->tpl->setContent(
93 $curriculum = $this->curriculum_builder->getLearnerCurriculum();
94 if (count($curriculum->getSteps()) > 0) {
95 $this->tpl->setRightContent(
103 $admins = $this->roles->getLearningSequenceAdminIds();
104 if (!in_array($usr_id, $admins)) {
105 $this->roles->join($usr_id);
112 return $this->access->checkAccess(
'unparticipate',
'', $this->ls_ref_id);
117 return $this->access->checkAccess(
'participate',
'', $this->ls_ref_id);
122 $is_member = $this->roles->isMember($this->usr_id);
123 $completed = $this->roles->isCompletedByUser($this->usr_id);
127 if ($may_subscribe) {
129 $sub_button->setPrimary(
true);
130 $sub_button->setCaption(
"lso_player_start");
131 $sub_button->setUrl($this->ctrl->getLinkTarget($this,self::CMD_START));
132 $this->toolbar->addButtonInstance($sub_button);
137 $res_button->setPrimary(
true);
138 $res_button->setCaption(
"lso_player_resume");
139 if ($this->first_access === -1) {
140 $res_button->setCaption(
"lso_player_start");
142 $res_button->setUrl($this->ctrl->getLinkTarget($this, self::CMD_VIEW));
143 $this->toolbar->addButtonInstance($res_button);
146 $review_button->setCaption(
"lso_player_review");
147 $review_button->setUrl($this->ctrl->getLinkTarget($this, self::CMD_VIEW));
148 $this->toolbar->addButtonInstance($review_button);
150 if ($cmd === self::CMD_STANDARD) {
152 $button->setCaption(
"lso_player_extro");
153 $button->setUrl($this->ctrl->getLinkTarget($this, self::CMD_EXTRO));
154 $this->toolbar->addButtonInstance($button);
156 if ($cmd === self::CMD_EXTRO) {
158 $button->setCaption(
"lso_player_abstract");
159 $button->setUrl($this->ctrl->getLinkTarget($this, self::CMD_STANDARD));
160 $this->toolbar->addButtonInstance($button);
165 if ($may_unsubscribe) {
167 $unsub_button->setCaption(
"unparticipate");
168 $unsub_button->setUrl($this->ctrl->getLinkTarget($this, self::CMD_UNSUBSCRIBE));
169 $this->toolbar->addButtonInstance($unsub_button);
178 $this->ui_factory->legacy(
'<div class="ilLSOLearnerView">')
180 $components[] = $this->ui_factory->legacy(
'</div>');
182 return $this->renderer->render($components);
187 if ($cmd === self::CMD_STANDARD) {
192 if ($cmd === self::CMD_EXTRO) {
197 $contents = [$this->ui_factory->legacy(
$txt)];
198 if (!is_null(
$img)) {
199 $contents[] = $this->ui_factory->image()->responsive(
$img,
'');
211 $this->tpl->enableDragDropFileUpload(null);
212 $this->tpl->setContent(
'THIS SHOULD NOT SHOW');
217 $this->tpl->setContent(
'');
221 $cmd = self::CMD_EXTRO;
226 $cmd = self::CMD_STANDARD;
229 $href = $this->ctrl->getLinkTarget($this, $cmd,
'',
false,
false);
235 print $this->player->getCurrentItemLearningProgress();
This class provides processing control methods.
getWrappedHTML(array $components)
const PARAM_LSO_NEXT_ITEM
Class ChatMainBarProvider .
Class ilObjLearningSequenceLearnerGUI.
const CMD_CHECK_CURRENT_ITEM_LP
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Settings for an LSO (like abstract, extro)
getMainContent(string $cmd)
getCurrentItemLearningProgress()
__construct(int $ls_ref_id, $first_access, 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, ilLSPlayer $player)
Implementation of KioskMode Player.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
static redirect($a_script)
Builds the overview (curriculum) of a LearningSequence.