ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAssQuestionHintPageObjectCommandForwarder.php
Go to the documentation of this file.
1 <?php
2 
28 {
32  public const PRESENTATION_MODE_AUTHOR = 'PRESENTATION_MODE_AUTHOR';
33 
37  public const PRESENTATION_MODE_PREVIEW = 'PRESENTATION_MODE_PREVIEW';
38 
42  public const PRESENTATION_MODE_REQUEST = 'PRESENTATION_MODE_REQUEST';
43 
49  protected $presentationMode;
50 
57  protected $questionHint;
58 
68  public function __construct(assQuestion $questionOBJ, ilCtrl $ctrl, ilTabsGUI $tabs, ilLanguage $lng)
69  {
70  global $DIC;
71  $main_tpl = $DIC->ui()->mainTemplate();
72  parent::__construct($questionOBJ, $ctrl, $tabs, $lng);
73 
74  $this->questionHint = new ilAssQuestionHint();
75 
76  if (!$this->request->isset('hint_id') || !(int) $this->request->raw('hint_id') || !$this->questionHint->load((int) $this->request->raw('hint_id'))) {
77  $main_tpl->setOnScreenMessage('failure', 'invalid hint id given: ' . (int) $this->request->raw('hint_id'), true);
78  $this->ctrl->redirectByClass('ilAssQuestionHintsGUI', ilAssQuestionHintsGUI::CMD_SHOW_LIST);
79  }
80  }
81 
87  public function forward(): void
88  {
89  switch ($this->getPresentationMode()) {
90  case self::PRESENTATION_MODE_AUTHOR:
91 
92  $pageObjectGUI = $this->buildAuthorPresentationPageObjectGUI();
93  break;
94 
95  case self::PRESENTATION_MODE_PREVIEW:
96 
97  $pageObjectGUI = $this->buildPreviewPresentationPageObjectGUI();
98  break;
99 
100  case self::PRESENTATION_MODE_REQUEST:
101 
102  $pageObjectGUI = $this->buildRequestPresentationPageObjectGUI();
103  break;
104  }
105 
106  $this->ctrl->setParameter($pageObjectGUI, 'hint_id', $this->questionHint->getId());
107 
108  $this->ctrl->forwardCommand($pageObjectGUI);
109  }
110 
115  {
116  $this->tabs->setBackTarget(
117  $this->lng->txt('tst_question_hints_back_to_hint_list'),
118  $this->ctrl->getLinkTargetByClass('ilAssQuestionHintsGUI', ilAssQuestionHintsGUI::CMD_SHOW_LIST)
119  );
120 
121  $pageObjectGUI = $this->getPageObjectGUI(
122  $this->questionHint->getPageObjectType(),
123  $this->questionHint->getId()
124  );
125 
126  $pageObjectGUI->setEnabledTabs(false);
127 
128  $pageObjectGUI->setPresentationTitle(
129  ilAssQuestionHint::getHintIndexLabel($this->lng, $this->questionHint->getIndex())
130  );
131 
132  return $pageObjectGUI;
133  }
134 
139  {
140  $this->tabs->setBackTarget(
141  $this->lng->txt('tst_question_hints_back_to_hint_list'),
142  $this->ctrl->getLinkTargetByClass('ilAssQuestionHintRequestGUI', ilAssQuestionHintRequestGUI::CMD_SHOW_LIST)
143  );
144 
145  $pageObjectGUI = $this->getPageObjectGUI(
146  $this->questionHint->getPageObjectType(),
147  $this->questionHint->getId()
148  );
149 
150  $pageObjectGUI->setEnabledTabs(false);
151  $pageObjectGUI->setEnableEditing(false);
152  $pageObjectGUI->setTemplateTargetVar('ADM_CONTENT');
153  $pageObjectGUI->setTemplateOutput(true);
154 
155  $pageObjectGUI->setPresentationTitle(
156  ilAssQuestionHint::getHintIndexLabel($this->lng, $this->questionHint->getIndex())
157  );
158 
159  return $pageObjectGUI;
160  }
161 
166  {
167  $this->tabs->setBackTarget(
168  $this->lng->txt('tst_question_hints_back_to_hint_list'),
169  $this->ctrl->getLinkTargetByClass('ilAssQuestionHintsGUI', ilAssQuestionHintsGUI::CMD_SHOW_LIST)
170  );
171 
172  $this->ensurePageObjectExists(
173  $this->questionHint->getPageObjectType(),
174  $this->questionHint->getId()
175  );
176 
177  $pageObjectGUI = $this->getPageObjectGUI(
178  $this->questionHint->getPageObjectType(),
179  $this->questionHint->getId()
180  );
181  $pageObjectGUI->setTemplateTargetVar('ADM_CONTENT');
182  $pageObjectGUI->setTemplateOutput(true);
183  $pageObjectGUI->setEnabledTabs(true);
184 
185  return $pageObjectGUI;
186  }
187 
193  public function getPresentationMode(): ?string
194  {
196  }
197 
204  public function setPresentationMode($presentationMode): void
205  {
206  switch ($presentationMode) {
207  case self::PRESENTATION_MODE_AUTHOR:
208  case self::PRESENTATION_MODE_PREVIEW:
209  case self::PRESENTATION_MODE_REQUEST:
210 
211  $this->presentationMode = $presentationMode;
212  break;
213 
214  default: throw new ilTestQuestionPoolException('invalid presentation mode given: ' . $presentationMode);
215  }
216  }
217 
221  protected function getPageObjectGUI($pageObjectType, $pageObjectId): ilAssHintPageGUI
222  {
223  $pageObjectGUI = new ilAssHintPageGUI($pageObjectId);
224  $pageObjectGUI->obj->addUpdateListener(
225  $this->questionOBJ,
226  'updateTimestamp'
227  );
228  return $pageObjectGUI;
229  }
230 
236  protected function ensurePageObjectExists($pageObjectType, $pageObjectId): void
237  {
238  if (!ilAssHintPage::_exists($pageObjectType, $pageObjectId, '', true)) {
239  $pageObject = new ilAssHintPage();
240  $pageObject->setParentId($this->questionOBJ->getId());
241  $pageObject->setId($pageObjectId);
242  $pageObject->createFromXML();
243  }
244  }
245 }
ensurePageObjectExists($pageObjectType, $pageObjectId)
ensures an existing page object with giben type/id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildPreviewPresentationPageObjectGUI()
forwards the command to page object gui for author presentation
const CMD_SHOW_LIST
command constants
static getHintIndexLabel(ilLanguage $lng, $hintIndex)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPageObjectGUI($pageObjectType, $pageObjectId)
instantiates, initialises and returns a page object gui object
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
buildAuthorPresentationPageObjectGUI()
forwards the command to page object gui for author presentation
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31
buildRequestPresentationPageObjectGUI()
forwards the command to page object gui for author presentation
__construct(assQuestion $questionOBJ, ilCtrl $ctrl, ilTabsGUI $tabs, ilLanguage $lng)
Constructor.