19 declare(strict_types=1);
51 return ilObjContentPage::class;
58 $this->contentPageObject = $object;
60 $this->
ctrl = $DIC->ctrl();
62 $this->uiFactory = $DIC->ui()->factory();
63 $this->uiRenderer = $DIC->ui()->renderer();
64 $this->
http = $DIC->http();
66 $this->
tabs = $DIC->tabs();
67 $this->
user = $DIC->user();
68 $cs = $DIC->contentStyle();
69 $this->content_style_gui = $cs->gui();
70 $this->content_style_domain = $cs->domain()->styleForRefId($object->
getRefId());
75 return $this->
access->checkAccess(
'read',
'', $this->contentPageObject->getRefId());
94 $this->
lng->loadLanguageModule(
'copa');
95 $learningProgressToggleCtrlLabel = $this->
lng->txt(
'copa_btn_lp_toggle_state_completed');
96 $cmd = self::CMD_LP_TO_INCOMPLETE;
98 $learningProgressToggleCtrlLabel = $this->
lng->txt(
'copa_btn_lp_toggle_state_not_completed');
99 $cmd = self::CMD_LP_TO_COMPLETED;
103 $learningProgressToggleCtrlLabel,
119 if (in_array($command, [
120 self::CMD_LP_TO_COMPLETED,
121 self::CMD_LP_TO_INCOMPLETE
125 $marks =
new ilLPMarks($this->contentPageObject->getId(), $this->
user->getId());
127 $old_state = $marks->getCompleted();
128 $new_state = ($command === self::CMD_LP_TO_COMPLETED);
129 $marks->setCompleted($new_state);
133 if ((
int) $old_state !== (
int) $new_state) {
134 $this->
lng->loadLanguageModule(
'trac');
135 $this->messages[] = $this->uiFactory->messageBox()->success(
136 $this->
lng->txt(
'trac_updated_status')
155 $this->
user->getId(),
156 $this->contentPageObject->getId(),
157 $this->contentPageObject->getRefId(),
158 $this->contentPageObject->getType()
168 $this->contentPageObject,
171 $this->content_style_domain
175 $this->
ctrl->setParameterByClass(ilContentPagePageGUI::class,
'ref_id', $this->contentPageObject->getRefId());
177 return $factory->
legacy()->content(implode(
'', [
178 $this->uiRenderer->render($this->messages),
179 $forwarder->forward($this->
ctrl->getLinkTargetByClass([
180 ilRepositoryGUI::class, ilObjContentPageGUI::class, ilContentPagePageGUI::class
191 $this->content_style_gui->addCss(
193 $this->contentPageObject->getRefId()
ILIAS Style Content GUIService $content_style_gui
const CMD_LP_TO_COMPLETED
legacy()
description: purpose: > legacy components are used as provisional elements in the UI framework while...
buildControls(State $state, ControlBuilder $builder)
Construct the controls for the view based on the current state.
Base class to be implemented and put in class-directory of module with the name il$MODULEKioskModeVie...
updateGet(State $state, string $command, ?int $parameter=null)
Update the state based on the provided command.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $mainTemplate
renderContentStyle()
Renders the content style of a ContentPage object into main template.
updatePost(State $state, string $command, array $post)
Update the state and the object based on the provided command and post-data.
ilObjContentPage $contentPageObject
final const PRESENTATION_MODE_EMBEDDED_PRESENTATION
presentation mode for embedded presentation, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildLearningProgressToggleControl(ControlBuilder $builder)
generic(string $label, string $command, ?int $parameter=null)
A generic control needs to have a label that tells what it does.
Keeps the state of a view in a simple stringly type key-value store.
buildInitialState(State $empty_state)
Build an initial state based on the Provided empty state.
render(State $state, Factory $factory, URLBuilder $url_builder, ?array $post=null)
static _tracProgress(int $a_user_id, int $a_obj_id, int $a_ref_id, string $a_obj_type='')
static _hasCompleted(int $a_usr_id, int $a_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
hasPermissionToAccessKioskMode()
static http()
Fetches the global http state from ILIAS.
toggleLearningProgress(string $command)
const CMD_LP_TO_INCOMPLETE
This is how the factory for UI elements looks.
ILIAS Style Content Object ObjectFacade $content_style_domain
setObject(ilObject $object)
static getSyntaxStylePath()
The URLBuilder allows views to get links that are used somewhere inline in the content.
Build controls for the view.
static getInstance(int $obj_id)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)