ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilAssQuestionHintsGUI Class Reference
+ Inheritance diagram for ilAssQuestionHintsGUI:
+ Collaboration diagram for ilAssQuestionHintsGUI:

Public Member Functions

 __construct (assQuestionGUI $questionGUI)
 
 isEditingEnabled ()
 
 setEditingEnabled (bool $editingEnabled)
 
 executeCommand ()
 
 confirmSyncCmd ()
 
 syncCmd ()
 
 getHintPresentationLinkTarget (int $hint_id, bool $xml_style=true)
 
- Public Member Functions inherited from ilAssQuestionHintAbstractGUI
 __construct (assQuestionGUI $question_gui)
 Constructor. More...
 

Data Fields

const CMD_SHOW_LIST = 'showList'
 command constants More...
 
const CMD_SHOW_HINT = 'showHint'
 
const CMD_CONFIRM_DELETE = 'confirmDelete'
 
const CMD_PERFORM_DELETE = 'performDelete'
 
const CMD_SAVE_LIST_ORDER = 'saveListOrder'
 
const CMD_CUT_TO_ORDERING_CLIPBOARD = 'cutToOrderingClipboard'
 
const CMD_PASTE_FROM_ORDERING_CLIPBOARD_BEFORE = 'pasteFromOrderingClipboardBefore'
 
const CMD_PASTE_FROM_ORDERING_CLIPBOARD_AFTER = 'pasteFromOrderingClipboardAfter'
 
const CMD_RESET_ORDERING_CLIPBOARD = 'resetOrderingClipboard'
 
const CMD_CONFIRM_SYNC = 'confirmSync'
 
const CMD_SYNC = 'sync'
 

Protected Attributes

bool $editingEnabled = false
 
- Protected Attributes inherited from ilAssQuestionHintAbstractGUI
RequestDataCollector $request_data_collector
 
assQuestionGUI $question_gui = null
 
assQuestion $question_obj = null
 
ilTabsGUI $tabs
 
ilLanguage $lng
 
ilCtrl $ctrl
 

Private Member Functions

 showListCmd (string $additional_content='')
 
 confirmDeleteCmd ()
 
 performDeleteCmd ()
 
 saveListOrderCmd ()
 
 cutToOrderingClipboardCmd ()
 
 pasteFromOrderingClipboardBeforeCmd ()
 
 pasteFromOrderingClipboardAfterCmd ()
 pastes a hint from ordering clipboard after the selected one More...
 
 resetOrderingClipboardCmd ()
 resets the ordering clipboard More...
 
 initHintOrderingClipboardNotification ()
 inits the notification telling the user, that a hint is stored to hint ordering clipboard More...
 
 checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure ($hintId)
 checks for an existing hint relating to current question and redirects with corresponding failure message on failure More...
 
 getQuestionHintListWithoutHintStoredInOrderingClipboard (ilAssQuestionHintList $questionHintList)
 
 checkForSingleHintIdAndRedirectOnFailure (array $hint_ids)
 
 fetchHintIdsParameter ()
 
 fetchHintIndexesParameter ()
 
 showHintCmd ()
 

Private Attributes

ilAssQuestionHintsOrderingClipboard $hintOrderingClipboard = null
 
GeneralQuestionPropertiesRepository $questionrepository
 
ilGlobalTemplateInterface $main_tpl
 

Detailed Description

Definition at line 36 of file class.ilAssQuestionHintsGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilAssQuestionHintsGUI::__construct ( assQuestionGUI  $questionGUI)

Definition at line 58 of file class.ilAssQuestionHintsGUI.php.

References $DIC, ILIAS\GlobalScreen\Provider\__construct(), ILIAS\Repository\ctrl(), and assQuestionGUI\getObject().

59  {
60  global $DIC;
61  $this->main_tpl = $DIC->ui()->mainTemplate();
62  $this->ctrl = $DIC->ctrl();
63 
64  $local_dic = QuestionPoolDIC::dic();
65  $this->questionrepository = $local_dic['question.general_properties.repository'];
66 
67  parent::__construct($questionGUI);
68 
69  $this->hintOrderingClipboard = new ilAssQuestionHintsOrderingClipboard($questionGUI->getObject());
70  }
global $DIC
Definition: shib_login.php:22
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure()

ilAssQuestionHintsGUI::checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure (   $hintId)
private

checks for an existing hint relating to current question and redirects with corresponding failure message on failure

private

Parameters
integer$hintId

Definition at line 475 of file class.ilAssQuestionHintsGUI.php.

References ILIAS\Repository\ctrl(), ilAssQuestionHintList\getListByQuestionId(), and ILIAS\Repository\lng().

Referenced by cutToOrderingClipboardCmd(), pasteFromOrderingClipboardAfterCmd(), and pasteFromOrderingClipboardBeforeCmd().

475  : void
476  {
477  $questionHintList = ilAssQuestionHintList::getListByQuestionId($this->question_obj->getId());
478 
479  if (!$questionHintList->hintExists($hintId)) {
480  $this->main_tpl->setOnScreenMessage('failure', $this->lng->txt('tst_question_hints_invalid_hint_id'), true);
481  $this->ctrl->redirect($this, self::CMD_SHOW_LIST);
482  }
483  }
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ checkForSingleHintIdAndRedirectOnFailure()

ilAssQuestionHintsGUI::checkForSingleHintIdAndRedirectOnFailure ( array  $hint_ids)
private

Definition at line 499 of file class.ilAssQuestionHintsGUI.php.

References ILIAS\Repository\ctrl(), and ILIAS\Repository\lng().

Referenced by cutToOrderingClipboardCmd(), pasteFromOrderingClipboardAfterCmd(), and pasteFromOrderingClipboardBeforeCmd().

499  : void
500  {
501  if ($hint_ids === []) {
502  $this->main_tpl->setOnScreenMessage(
503  'failure',
504  $this->lng->txt('tst_question_hints_cut_hints_missing_selection_msg'),
505  true
506  );
507  $this->ctrl->redirect($this, self::CMD_SHOW_LIST);
508  }
509 
510  if (count($hint_ids) > 1) {
511  $this->main_tpl->setOnScreenMessage(
512  'failure',
513  $this->lng->txt('tst_question_hints_cut_hints_single_selection_msg'),
514  true
515  );
516  $this->ctrl->redirect($this, self::CMD_SHOW_LIST);
517  }
518  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ confirmDeleteCmd()

ilAssQuestionHintsGUI::confirmDeleteCmd ( )
private

Definition at line 170 of file class.ilAssQuestionHintsGUI.php.

References ILIAS\Repository\ctrl(), fetchHintIdsParameter(), ilAssQuestionHintList\getListByQuestionId(), and ILIAS\Repository\lng().

170  : void
171  {
172  $hint_ids = $this->fetchHintIdsParameter();
173 
174  if (!count($hint_ids)) {
175  $this->main_tpl->setOnScreenMessage(
176  'failure',
177  $this->lng->txt('tst_question_hints_delete_hints_missing_selection_msg'),
178  true
179  );
180  $this->ctrl->redirectByClass(self::class);
181  }
182 
183  $confirmation = new ilConfirmationGUI();
184 
185  $confirmation->setHeaderText($this->lng->txt('tst_question_hints_delete_hints_confirm_header'));
186  $confirmation->setFormAction($this->ctrl->getFormAction($this));
187  $confirmation->setConfirm($this->lng->txt('tst_question_hints_delete_hints_confirm_cmd'), self::CMD_PERFORM_DELETE);
188  $confirmation->setCancel($this->lng->txt('cancel'), self::CMD_SHOW_LIST);
189 
190  $questionHintList = ilAssQuestionHintList::getListByQuestionId($this->question_obj->getId());
191 
192  foreach ($questionHintList as $questionHint) {
193  /* @var $questionHint ilAssQuestionHint */
194 
195  if (in_array($questionHint->getId(), $hint_ids)) {
196  $confirmation->addItem('hint_ids[]', $questionHint->getId(), sprintf(
197  $this->lng->txt('tst_question_hints_delete_hints_confirm_item'),
198  $questionHint->getIndex(),
199  $questionHint->getText()
200  ));
201  }
202  }
203 
204  $this->main_tpl->setContent($this->ctrl->getHtml($confirmation));
205  }
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
+ Here is the call graph for this function:

◆ confirmSyncCmd()

ilAssQuestionHintsGUI::confirmSyncCmd ( )

Definition at line 537 of file class.ilAssQuestionHintsGUI.php.

References showListCmd().

537  : void
538  {
539  $modal = $this->question_gui->getQuestionSyncModal(self::CMD_SYNC, self::class);
540  $this->showListCmd($modal);
541  }
showListCmd(string $additional_content='')
+ Here is the call graph for this function:

◆ cutToOrderingClipboardCmd()

ilAssQuestionHintsGUI::cutToOrderingClipboardCmd ( )
private

Definition at line 298 of file class.ilAssQuestionHintsGUI.php.

References checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure(), checkForSingleHintIdAndRedirectOnFailure(), ILIAS\Repository\ctrl(), fetchHintIdsParameter(), and isEditingEnabled().

298  : void
299  {
300  if (!$this->isEditingEnabled()) {
301  return;
302  }
303 
304  $moveHintIds = $this->fetchHintIdsParameter();
305  $this->checkForSingleHintIdAndRedirectOnFailure($moveHintIds);
306 
307  $moveHintId = current($moveHintIds);
308 
310 
311  $this->hintOrderingClipboard->setStored($moveHintId);
312 
313  $this->ctrl->redirect($this, self::CMD_SHOW_LIST);
314  }
checkForSingleHintIdAndRedirectOnFailure(array $hint_ids)
checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure($hintId)
checks for an existing hint relating to current question and redirects with corresponding failure mes...
+ Here is the call graph for this function:

◆ executeCommand()

ilAssQuestionHintsGUI::executeCommand ( )

Definition at line 82 of file class.ilAssQuestionHintsGUI.php.

References $DIC, ILIAS\Repository\ctrl(), ilObjStyleSheet\getContentStylePath(), isEditingEnabled(), ILIAS\Repository\lng(), ilAssQuestionHintPageObjectCommandForwarder\PRESENTATION_MODE_AUTHOR, ilAssQuestionHintPageObjectCommandForwarder\PRESENTATION_MODE_PREVIEW, and ILIAS\Repository\tabs().

82  : void
83  {
84  global $DIC;
85  $ilHelp = $DIC['ilHelp'];
86  $ilHelp->setScreenIdComponent('qpl');
87 
88  $DIC->ui()->mainTemplate()->setCurrentBlock("ContentStyle");
89  $DIC->ui()->mainTemplate()->setVariable("LOCATION_CONTENT_STYLESHEET", ilObjStyleSheet::getContentStylePath(0));
90  $DIC->ui()->mainTemplate()->parseCurrentBlock();
91 
92  $cmd = $this->ctrl->getCmd(self::CMD_SHOW_LIST);
93  $nextClass = $this->ctrl->getNextClass($this);
94 
95  switch ($nextClass) {
96  case 'ilassquestionhintgui':
97  if (!$this->isEditingEnabled()) {
98  return;
99  }
100 
101  $gui = new ilAssQuestionHintGUI($this->question_gui);
102  $this->ctrl->forwardCommand($gui);
103  break;
104 
105  case 'ilasshintpagegui':
106  if ($this->isEditingEnabled()) {
108  } else {
110  }
111 
113  $this->question_obj,
114  $this->ctrl,
115  $this->tabs,
116  $this->lng
117  );
118  $forwarder->setPresentationMode($presentationMode);
119  $forwarder->forward();
120  break;
121 
122  default:
123  $this->tabs->setTabActive('tst_question_hints_tab');
124  $cmd .= 'Cmd';
125  $this->$cmd();
126  break;
127  }
128  }
global $DIC
Definition: shib_login.php:22
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
+ Here is the call graph for this function:

◆ fetchHintIdsParameter()

ilAssQuestionHintsGUI::fetchHintIdsParameter ( )
private

Definition at line 520 of file class.ilAssQuestionHintsGUI.php.

Referenced by confirmDeleteCmd(), cutToOrderingClipboardCmd(), pasteFromOrderingClipboardAfterCmd(), pasteFromOrderingClipboardBeforeCmd(), and performDeleteCmd().

520  : array
521  {
522  $hint_ids = [$this->request_data_collector->int('hint_id')];
523  if ($hint_ids[0] !== 0) {
524  return $hint_ids;
525  }
526 
527  return $this->request_data_collector->intArray('hint_ids');
528  }
+ Here is the caller graph for this function:

◆ fetchHintIndexesParameter()

ilAssQuestionHintsGUI::fetchHintIndexesParameter ( )
private

Definition at line 530 of file class.ilAssQuestionHintsGUI.php.

Referenced by saveListOrderCmd().

530  : array
531  {
532  $hint_indexes = $this->request_data_collector->intArray('hint_indexes');
533  asort($hint_indexes);
534  return $hint_indexes;
535  }
+ Here is the caller graph for this function:

◆ getHintPresentationLinkTarget()

ilAssQuestionHintsGUI::getHintPresentationLinkTarget ( int  $hint_id,
bool  $xml_style = true 
)

Definition at line 549 of file class.ilAssQuestionHintsGUI.php.

References ILIAS\Repository\ctrl().

552  : string {
553  if ($this->question_obj->isAdditionalContentEditingModePageObject()) {
554  $this->ctrl->setParameterByClass('ilasshintpagegui', 'hint_id', $hint_id);
555  return $this->ctrl->getLinkTargetByClass('ilAssHintPageGUI', '', '', false, $xml_style);
556  }
557 
558  $this->ctrl->setParameter($this, 'hintId', $hint_id);
559  return $this->ctrl->getLinkTarget($this, self::CMD_SHOW_HINT, '', false, $xml_style);
560  }
+ Here is the call graph for this function:

◆ getQuestionHintListWithoutHintStoredInOrderingClipboard()

ilAssQuestionHintsGUI::getQuestionHintListWithoutHintStoredInOrderingClipboard ( ilAssQuestionHintList  $questionHintList)
private

Definition at line 485 of file class.ilAssQuestionHintsGUI.php.

Referenced by showListCmd().

488  $filteredQuestionHintList = new ilAssQuestionHintList();
489 
490  foreach ($questionHintList as $questionHint) {
491  if ($questionHint->getId() !== $this->hintOrderingClipboard->getStored()) {
492  $filteredQuestionHintList->addHint($questionHint);
493  }
494  }
495 
496  return $filteredQuestionHintList;
497  }
+ Here is the caller graph for this function:

◆ initHintOrderingClipboardNotification()

ilAssQuestionHintsGUI::initHintOrderingClipboardNotification ( )
private

inits the notification telling the user, that a hint is stored to hint ordering clipboard

private ilLanguage $lng

Definition at line 451 of file class.ilAssQuestionHintsGUI.php.

References $DIC, ilAssQuestionHintAbstractGUI\$lng, ilAssQuestionHint\getInstanceById(), and ilLanguage\txt().

Referenced by showListCmd().

451  : void
452  {
453  global $DIC;
454  $lng = $DIC['lng'];
455 
456  if (!$this->hintOrderingClipboard->hasStored()) {
457  return;
458  }
459 
460  $questionHint = ilAssQuestionHint::getInstanceById($this->hintOrderingClipboard->getStored());
461 
462  $this->main_tpl->setOnScreenMessage('info', sprintf(
463  $lng->txt('tst_question_hints_item_stored_in_ordering_clipboard'),
464  $questionHint->getIndex()
465  ));
466  }
static getInstanceById($hintId)
creates a hint object instance, loads the persisted hint dataset identified by passed hint id from da...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
global $DIC
Definition: shib_login.php:22
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ isEditingEnabled()

ilAssQuestionHintsGUI::isEditingEnabled ( )

◆ pasteFromOrderingClipboardAfterCmd()

ilAssQuestionHintsGUI::pasteFromOrderingClipboardAfterCmd ( )
private

pastes a hint from ordering clipboard after the selected one

private ilCtrl $ilCtrl ilLanguage $lng

Definition at line 372 of file class.ilAssQuestionHintsGUI.php.

References $DIC, ilAssQuestionHintAbstractGUI\$lng, ilAssQuestionHintList\addHint(), checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure(), checkForSingleHintIdAndRedirectOnFailure(), fetchHintIdsParameter(), ilAssQuestionHint\getInstanceById(), ilAssQuestionHintList\getListByQuestionId(), isEditingEnabled(), and ilLanguage\txt().

372  : void
373  {
374  if (!$this->isEditingEnabled()) {
375  return;
376  }
377 
378  global $DIC;
379  $ilCtrl = $DIC['ilCtrl'];
380  $lng = $DIC['lng'];
381 
382  $targetHintIds = $this->fetchHintIdsParameter();
383  $this->checkForSingleHintIdAndRedirectOnFailure($targetHintIds);
384 
385  $targetHintId = current($targetHintIds);
386 
388 
389  $curQuestionHintList = ilAssQuestionHintList::getListByQuestionId($this->question_obj->getId());
390  $newQuestionHintList = new ilAssQuestionHintList($this->question_obj->getId());
391 
392  foreach ($curQuestionHintList as $questionHint) {
393  /* @var $questionHint ilAssQuestionHint */
394 
395  if ($questionHint->getId() == $this->hintOrderingClipboard->getStored()) {
396  continue;
397  }
398 
399  $newQuestionHintList->addHint($questionHint);
400 
401  if ($questionHint->getId() == $targetHintId) {
402  $targetQuestionHint = $questionHint;
403 
404  $pasteQuestionHint = ilAssQuestionHint::getInstanceById($this->hintOrderingClipboard->getStored());
405 
406  $newQuestionHintList->addHint($pasteQuestionHint);
407  }
408  }
409 
410  $successMsg = sprintf(
411  $lng->txt('tst_question_hints_paste_after_success_msg'),
412  $pasteQuestionHint->getIndex(),
413  $targetQuestionHint->getIndex()
414  );
415 
416  $newQuestionHintList->reIndex();
417 
418  $this->hintOrderingClipboard->resetStored();
419 
420  $this->main_tpl->setOnScreenMessage('success', $successMsg, true);
421 
422  $ilCtrl->redirect($this, self::CMD_SHOW_LIST);
423  }
checkForSingleHintIdAndRedirectOnFailure(array $hint_ids)
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
static getInstanceById($hintId)
creates a hint object instance, loads the persisted hint dataset identified by passed hint id from da...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
global $DIC
Definition: shib_login.php:22
addHint(ilAssQuestionHint $questionHint)
checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure($hintId)
checks for an existing hint relating to current question and redirects with corresponding failure mes...
+ Here is the call graph for this function:

◆ pasteFromOrderingClipboardBeforeCmd()

ilAssQuestionHintsGUI::pasteFromOrderingClipboardBeforeCmd ( )
private

Definition at line 316 of file class.ilAssQuestionHintsGUI.php.

References checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure(), checkForSingleHintIdAndRedirectOnFailure(), ILIAS\Repository\ctrl(), fetchHintIdsParameter(), ilAssQuestionHint\getInstanceById(), ilAssQuestionHintList\getListByQuestionId(), isEditingEnabled(), and ILIAS\Repository\lng().

316  : void
317  {
318  if (!$this->isEditingEnabled()) {
319  return;
320  }
321 
322  $targetHintIds = $this->fetchHintIdsParameter();
323  $this->checkForSingleHintIdAndRedirectOnFailure($targetHintIds);
324 
325  $targetHintId = current($targetHintIds);
326 
328 
329  $curQuestionHintList = ilAssQuestionHintList::getListByQuestionId($this->question_obj->getId());
330  $newQuestionHintList = new ilAssQuestionHintList($this->question_obj->getId());
331 
332  foreach ($curQuestionHintList as $questionHint) {
333  /* @var $questionHint ilAssQuestionHint */
334 
335  if ($questionHint->getId() == $this->hintOrderingClipboard->getStored()) {
336  continue;
337  }
338 
339  if ($questionHint->getId() == $targetHintId) {
340  $targetQuestionHint = $questionHint;
341 
342  $pasteQuestionHint = ilAssQuestionHint::getInstanceById($this->hintOrderingClipboard->getStored());
343 
344  $newQuestionHintList->addHint($pasteQuestionHint);
345  }
346 
347  $newQuestionHintList->addHint($questionHint);
348  }
349 
350  $successMsg = sprintf(
351  $this->lng->txt('tst_question_hints_paste_before_success_msg'),
352  $pasteQuestionHint->getIndex(),
353  $targetQuestionHint->getIndex()
354  );
355 
356  $newQuestionHintList->reIndex();
357 
358  $this->hintOrderingClipboard->resetStored();
359 
360  $this->main_tpl->setOnScreenMessage('success', $successMsg, true);
361 
362  $this->ctrl->redirect($this, self::CMD_SHOW_LIST);
363  }
checkForSingleHintIdAndRedirectOnFailure(array $hint_ids)
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
static getInstanceById($hintId)
creates a hint object instance, loads the persisted hint dataset identified by passed hint id from da...
checkForExistingHintRelatingToCurrentQuestionAndRedirectOnFailure($hintId)
checks for an existing hint relating to current question and redirects with corresponding failure mes...
+ Here is the call graph for this function:

◆ performDeleteCmd()

ilAssQuestionHintsGUI::performDeleteCmd ( )
private

Definition at line 207 of file class.ilAssQuestionHintsGUI.php.

References CMD_CONFIRM_SYNC, ILIAS\Repository\ctrl(), fetchHintIdsParameter(), ilAssQuestionHintList\getListByQuestionId(), isEditingEnabled(), and ILIAS\Repository\lng().

207  : void
208  {
209  if (!$this->isEditingEnabled()) {
210  return;
211  }
212 
213  $hintIds = $this->fetchHintIdsParameter();
214 
215  if (!count($hintIds)) {
216  $this->main_tpl->setOnScreenMessage('failure', $this->lng->txt('tst_question_hints_delete_hints_missing_selection_msg'), true);
217  $this->ctrl->redirectByClass(self::class);
218  }
219 
220  $questionCompleteHintList = ilAssQuestionHintList::getListByQuestionId($this->question_obj->getId());
221 
222  $questionRemainingHintList = new ilAssQuestionHintList();
223 
224  foreach ($questionCompleteHintList as $questionHint) {
225  /* @var $questionHint ilAssQuestionHint */
226 
227  if (in_array($questionHint->getId(), $hintIds)) {
228  $questionHint->delete();
229  } else {
230  $questionRemainingHintList->addHint($questionHint);
231  }
232  }
233 
234  $questionRemainingHintList->reIndex();
235 
236  $this->main_tpl->setOnScreenMessage('success', $this->lng->txt('tst_question_hints_delete_success_msg'), true);
237 
238  if ($this->question_gui->needsSyncQuery()) {
239  $this->ctrl->redirectByClass(
240  ilAssQuestionHintsGUI::class,
242  );
243  }
244 
245  $this->ctrl->redirectByClass(self::class);
246  }
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
+ Here is the call graph for this function:

◆ resetOrderingClipboardCmd()

ilAssQuestionHintsGUI::resetOrderingClipboardCmd ( )
private

resets the ordering clipboard

private ilCtrl $ilCtrl ilLanguage $lng

Definition at line 432 of file class.ilAssQuestionHintsGUI.php.

References $DIC, ilAssQuestionHintAbstractGUI\$lng, and ilLanguage\txt().

432  : void
433  {
434  global $DIC;
435  $ilCtrl = $DIC['ilCtrl'];
436  $lng = $DIC['lng'];
437 
438  $this->hintOrderingClipboard->resetStored();
439 
440  $this->main_tpl->setOnScreenMessage('info', $lng->txt('tst_question_hints_ordering_clipboard_resetted'), true);
441  $ilCtrl->redirect($this, self::CMD_SHOW_LIST);
442  }
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
global $DIC
Definition: shib_login.php:22
+ Here is the call graph for this function:

◆ saveListOrderCmd()

ilAssQuestionHintsGUI::saveListOrderCmd ( )
private

Definition at line 248 of file class.ilAssQuestionHintsGUI.php.

References CMD_CONFIRM_SYNC, ILIAS\Repository\ctrl(), fetchHintIndexesParameter(), ilAssQuestionHintList\getListByQuestionId(), isEditingEnabled(), and ILIAS\Repository\lng().

248  : void
249  {
250  if (!$this->isEditingEnabled()) {
251  return;
252  }
253 
254  $hintIndexes = $this->fetchHintIndexesParameter();
255 
256  if (!count($hintIndexes)) {
257  $this->main_tpl->setOnScreenMessage(
258  'failure',
259  $this->lng->txt('tst_question_hints_save_order_unkown_failure_msg'),
260  true
261  );
262  $this->ctrl->redirectByClass(self::class);
263  }
264 
265  $curQuestionHintList = ilAssQuestionHintList::getListByQuestionId($this->question_obj->getId());
266 
267  $newQuestionHintList = new ilAssQuestionHintList();
268 
269  foreach (array_keys($hintIndexes) as $hintId) {
270  if (!$curQuestionHintList->hintExists($hintId)) {
271  $this->main_tpl->setOnScreenMessage(
272  'failure',
273  $this->lng->txt('tst_question_hints_save_order_unkown_failure_msg'),
274  true
275  );
276  $this->ctrl->redirectByClass(self::class);
277  }
278 
279  $questionHint = $curQuestionHintList->getHint($hintId);
280 
281  $newQuestionHintList->addHint($questionHint);
282  }
283 
284  $newQuestionHintList->reIndex();
285 
286  $this->main_tpl->setOnScreenMessage('success', $this->lng->txt('tst_question_hints_save_order_success_msg'), true);
287 
288  if ($this->question_gui->needsSyncQuery()) {
289  $this->ctrl->redirectByClass(
290  ilAssQuestionHintsGUI::class,
292  );
293  }
294 
295  $this->ctrl->redirectByClass(self::class);
296  }
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
+ Here is the call graph for this function:

◆ setEditingEnabled()

ilAssQuestionHintsGUI::setEditingEnabled ( bool  $editingEnabled)

Definition at line 77 of file class.ilAssQuestionHintsGUI.php.

References $editingEnabled.

77  : void
78  {
79  $this->editingEnabled = $editingEnabled;
80  }

◆ showHintCmd()

ilAssQuestionHintsGUI::showHintCmd ( )
private

Definition at line 562 of file class.ilAssQuestionHintsGUI.php.

References ILIAS\Repository\ctrl(), ilAssQuestionHint\getInstanceById(), ILIAS\Repository\int(), ILIAS\Repository\lng(), ilLegacyFormElementsUtil\prepareTextareaOutput(), and ILIAS\Repository\tabs().

562  : void
563  {
564  if (!$this->request_data_collector->isset('hintId') || !(int) $this->request_data_collector->raw('hintId')) {
565  throw new ilTestException('no hint id given');
566  }
567 
568  $this->tabs->clearTargets();
569  $this->tabs->clearSubTabs();
570 
571  $this->tabs->setBackTarget(
572  $this->lng->txt('tst_question_hints_back_to_hint_list'),
573  $this->ctrl->getLinkTargetByClass(self::class, self::CMD_SHOW_LIST)
574  );
575 
576  $questionHint = ilAssQuestionHint::getInstanceById((int) $this->request_data_collector->raw('hintId'));
577 
578  // build form
579 
580  $form = new ilPropertyFormGUI();
581 
582  $form->setFormAction($this->ctrl->getFormAction($this));
583 
584  $form->setTableWidth('100%');
585 
586  $form->setTitle(sprintf(
587  $this->lng->txt('tst_question_hints_form_header_edit'),
588  $questionHint->getIndex(),
589  $this->question_obj->getTitleForHTMLOutput()
590  ));
591 
592  // form input: hint text
593 
594  $nonEditableHintText = new ilNonEditableValueGUI(
595  $this->lng->txt('tst_question_hints_form_label_hint_text'),
596  'hint_text',
597  true
598  );
599  $nonEditableHintText->setValue(
600  ilLegacyFormElementsUtil::prepareTextareaOutput($questionHint->getText(), true)
601  );
602  $form->addItem($nonEditableHintText);
603 
604  // form input: hint points
605 
606  $nonEditableHintPoints = new ilNonEditableValueGUI(
607  $this->lng->txt('tst_question_hints_form_label_hint_points'),
608  'hint_points'
609  );
610  $nonEditableHintPoints->setValue($questionHint->getPoints());
611  $form->addItem($nonEditableHintPoints);
612 
613  $this->main_tpl->setContent($form->getHTML());
614  }
static getInstanceById($hintId)
creates a hint object instance, loads the persisted hint dataset identified by passed hint id from da...
Base Exception for all Exceptions relating to Modules/Test.
static prepareTextareaOutput(string $txt_output, bool $prepare_for_latex_output=false, bool $omitNl2BrWhenTextArea=false)
Prepares a string for a text area output where latex code may be in it If the text is HTML-free...
+ Here is the call graph for this function:

◆ showListCmd()

ilAssQuestionHintsGUI::showListCmd ( string  $additional_content = '')
private

Definition at line 130 of file class.ilAssQuestionHintsGUI.php.

References ilAssQuestionHintGUI\CMD_SHOW_FORM, ILIAS\Repository\ctrl(), ilAssQuestionHintList\getListByQuestionId(), getQuestionHintListWithoutHintStoredInOrderingClipboard(), initHintOrderingClipboardNotification(), isEditingEnabled(), ILIAS\Repository\lng(), ilAssQuestionHintsTableGUI\TBL_MODE_ADMINISTRATION, and ilAssQuestionHintsTableGUI\TBL_MODE_TESTOUTPUT.

Referenced by confirmSyncCmd(), and syncCmd().

130  : void
131  {
133 
134  $toolbar = new ilToolbarGUI();
135 
136  $questionHintList = ilAssQuestionHintList::getListByQuestionId($this->question_obj->getId());
137 
138  if ($this->isEditingEnabled()) {
139  if ($this->hintOrderingClipboard->hasStored()) {
140  $questionHintList = $this->getQuestionHintListWithoutHintStoredInOrderingClipboard($questionHintList);
141 
142  $toolbar->addButton(
143  $this->lng->txt('tst_questions_hints_toolbar_cmd_reset_ordering_clipboard'),
144  $this->ctrl->getLinkTarget($this, self::CMD_RESET_ORDERING_CLIPBOARD)
145  );
146  } else {
147  $toolbar->addButton(
148  $this->lng->txt('tst_questions_hints_toolbar_cmd_add_hint'),
149  $this->ctrl->getLinkTargetByClass('ilAssQuestionHintGUI', ilAssQuestionHintGUI::CMD_SHOW_FORM)
150  );
151  }
152 
154  } else {
156  }
157 
158  $table = new ilAssQuestionHintsTableGUI(
159  $this->question_obj,
160  $questionHintList,
161  $this,
162  self::CMD_SHOW_LIST,
163  $tableMode,
164  $this->hintOrderingClipboard
165  );
166 
167  $this->main_tpl->setContent($toolbar->getHTML() . $table->getHTML() . $additional_content);
168  }
static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
getQuestionHintListWithoutHintStoredInOrderingClipboard(ilAssQuestionHintList $questionHintList)
const TBL_MODE_TESTOUTPUT
the available table modes controlling the tables behaviour
initHintOrderingClipboardNotification()
inits the notification telling the user, that a hint is stored to hint ordering clipboard ...
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ syncCmd()

ilAssQuestionHintsGUI::syncCmd ( )

Definition at line 543 of file class.ilAssQuestionHintsGUI.php.

References showListCmd().

543  : void
544  {
545  $this->question_obj->syncWithOriginal();
546  $this->showListCmd();
547  }
showListCmd(string $additional_content='')
+ Here is the call graph for this function:

Field Documentation

◆ $editingEnabled

bool ilAssQuestionHintsGUI::$editingEnabled = false
protected

Definition at line 55 of file class.ilAssQuestionHintsGUI.php.

Referenced by isEditingEnabled(), and setEditingEnabled().

◆ $hintOrderingClipboard

ilAssQuestionHintsOrderingClipboard ilAssQuestionHintsGUI::$hintOrderingClipboard = null
private

Definition at line 53 of file class.ilAssQuestionHintsGUI.php.

◆ $main_tpl

ilGlobalTemplateInterface ilAssQuestionHintsGUI::$main_tpl
private

Definition at line 56 of file class.ilAssQuestionHintsGUI.php.

◆ $questionrepository

GeneralQuestionPropertiesRepository ilAssQuestionHintsGUI::$questionrepository
private

Definition at line 54 of file class.ilAssQuestionHintsGUI.php.

◆ CMD_CONFIRM_DELETE

const ilAssQuestionHintsGUI::CMD_CONFIRM_DELETE = 'confirmDelete'

◆ CMD_CONFIRM_SYNC

const ilAssQuestionHintsGUI::CMD_CONFIRM_SYNC = 'confirmSync'

◆ CMD_CUT_TO_ORDERING_CLIPBOARD

const ilAssQuestionHintsGUI::CMD_CUT_TO_ORDERING_CLIPBOARD = 'cutToOrderingClipboard'

◆ CMD_PASTE_FROM_ORDERING_CLIPBOARD_AFTER

const ilAssQuestionHintsGUI::CMD_PASTE_FROM_ORDERING_CLIPBOARD_AFTER = 'pasteFromOrderingClipboardAfter'

◆ CMD_PASTE_FROM_ORDERING_CLIPBOARD_BEFORE

const ilAssQuestionHintsGUI::CMD_PASTE_FROM_ORDERING_CLIPBOARD_BEFORE = 'pasteFromOrderingClipboardBefore'

◆ CMD_PERFORM_DELETE

const ilAssQuestionHintsGUI::CMD_PERFORM_DELETE = 'performDelete'

Definition at line 44 of file class.ilAssQuestionHintsGUI.php.

◆ CMD_RESET_ORDERING_CLIPBOARD

const ilAssQuestionHintsGUI::CMD_RESET_ORDERING_CLIPBOARD = 'resetOrderingClipboard'

Definition at line 49 of file class.ilAssQuestionHintsGUI.php.

◆ CMD_SAVE_LIST_ORDER

const ilAssQuestionHintsGUI::CMD_SAVE_LIST_ORDER = 'saveListOrder'

◆ CMD_SHOW_HINT

const ilAssQuestionHintsGUI::CMD_SHOW_HINT = 'showHint'

Definition at line 42 of file class.ilAssQuestionHintsGUI.php.

◆ CMD_SHOW_LIST

◆ CMD_SYNC

const ilAssQuestionHintsGUI::CMD_SYNC = 'sync'

Definition at line 51 of file class.ilAssQuestionHintsGUI.php.


The documentation for this class was generated from the following file: