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

Public Member Functions

 __construct (protected ilLanguage $lng, protected UIFactory $ui_factory, protected UIRenderer $ui_renderer)
 
 setEditSolutionCommand (string $edit_solution_command)
 
 setQuestionWorkedThrough (bool $question_worked_through)
 
 setRevertChangesLinkTarget (string $revert_changes_link_target)
 
 setDiscardSolutionButtonEnabled (bool $discard_solution_button_enabled)
 
 setSkipQuestionLinkTarget (string $skip_question_link_target)
 
 setInstantFeedbackCommand (string $instant_feedback_command)
 
 setForceInstantResponseEnabled (bool $force_instant_response_enabled)
 
 setAnswerFreezingEnabled (bool $answer_freezing_enabled)
 
 setRequestHintCommand (string $request_hint_command)
 
 setShowHintsCommand (string $show_hints_command)
 
 setHintRequestsExist (bool $hint_requests_exist)
 
 setQuestionMarkLinkTarget (string $question_mark_link_target)
 
 setQuestionMarked (bool $question_marked)
 
 setAnythingRendered ()
 
 setShowDiscardModalSignal (Signal $signal)
 
 getActionsHTML ()
 
 getHTML ()
 

Data Fields

const SHOW_DISABLED_COMMANDS = false
 
const CSS_CLASS_SUBMIT_BUTTONS = 'ilc_qsubmit_Submit'
 

Private Member Functions

 getShowDiscardModalSignal ()
 
 getEditSolutionButtonLabel ()
 
 getCheckButtonLabel ()
 
 getRequestHintButtonLabel ()
 
 getQuestionMarkActionLabel ()
 
 getQuestionMarkIconLabel ()
 
 getQuestionMarkIconSource ()
 
 getTemplate ($a_purpose='toolbar')
 
 parseNavigation (ilTemplate $tpl)
 
 parseButtonsBlock (ilTemplate $tpl)
 
 renderButtonInstance (ilTemplate $tpl, Button $button)
 
 renderSubmitButton (ilTemplate $tpl, string $command, string $label)
 
 renderInstantFeedbackButton (ilTemplate $tpl, string $command, string $label, bool $is_primary)
 
 getOnLoadCode (string $command)
 
 renderActionsIcon (ilTemplate $tpl, string $icon_src, string $label, string $css_class)
 

Private Attributes

ILIAS DI UIServices $ui
 
string $edit_solution_command = ''
 
bool $question_worked_through = false
 
string $revert_changes_link_target = ''
 
bool $discard_solution_button_enabled = false
 
string $skip_question_link_target = ''
 
string $instant_feedback_command = ''
 
bool $answer_freezing_enabled = false
 
bool $force_instant_response_enabled = false
 
string $request_hint_command = ''
 
string $show_hints_command = ''
 
bool $hint_requests_exist = false
 
string $question_mark_link_target = ''
 
bool $question_marked = false
 
bool $anything_rendered = false
 
Signal $show_discard_modal_signal = null
 

Detailed Description

Definition at line 33 of file class.ilTestQuestionNavigationGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilTestQuestionNavigationGUI::__construct ( protected ilLanguage  $lng,
protected UIFactory  $ui_factory,
protected UIRenderer  $ui_renderer 
)

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

60  {
61  }

Member Function Documentation

◆ getActionsHTML()

ilTestQuestionNavigationGUI::getActionsHTML ( )

Definition at line 143 of file class.ilTestQuestionNavigationGUI.php.

References $id, $question_mark_link_target, $revert_changes_link_target, $skip_question_link_target, getQuestionMarkActionLabel(), getQuestionMarkIconLabel(), getQuestionMarkIconSource(), getShowDiscardModalSignal(), getTemplate(), ILIAS\Repository\lng(), and renderActionsIcon().

143  : string
144  {
145  $tpl = $this->getTemplate('actions');
146  $actions = [];
147 
148  if ($this->question_mark_link_target) {
149  $this->renderActionsIcon(
150  $tpl,
151  $this->getQuestionMarkIconSource(),
152  $this->getQuestionMarkIconLabel(),
153  'ilTestMarkQuestionIcon'
154  );
156  $actions[] = $this->ui_factory->button()->shy(
158  ''
159  )->withAdditionalOnLoadCode(
160  static function (string $id) use ($target): string {
161  return "document.getElementById('$id').addEventListener('click', "
162  . '(e) => {'
163  . " il.TestPlayerQuestionEditControl.checkNavigation('{$target}', 'show', e);"
164  . '});';
165  }
166  );
167  }
168 
169  if ($this->skip_question_link_target) {
170  $actions[] = $this->ui_factory->button()->shy(
171  $this->lng->txt('postpone_question'),
173  );
174  }
175 
176  if ($actions !== []) {
177  $actions[] = $this->ui_factory->divider()->horizontal();
178  }
179 
180  $actions[] = $this->ui_factory->button()->shy(
181  $this->lng->txt('tst_revert_changes'),
183  )->withUnavailableAction(!$this->revert_changes_link_target);
184 
185  if ($this->question_worked_through) {
186  $actions[] = $this->ui_factory->button()->shy(
187  $this->lng->txt('discard_answer'),
188  '#'
189  )->withUnavailableAction(!$this->discard_solution_button_enabled)
190  ->withOnClick($this->getShowDiscardModalSignal());
191  }
192 
193  $list = $this->ui_factory->dropdown()->standard($actions)->withLabel($this->lng->txt('actions'));
194  $tpl->setVariable('ACTION_MENU', $this->ui_renderer->render($list));
195 
196  return $tpl->get();
197  }
renderActionsIcon(ilTemplate $tpl, string $icon_src, string $label, string $css_class)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the call graph for this function:

◆ getCheckButtonLabel()

ilTestQuestionNavigationGUI::getCheckButtonLabel ( )
private

Definition at line 251 of file class.ilTestQuestionNavigationGUI.php.

References ILIAS\Repository\lng().

Referenced by getHTML().

251  : string
252  {
253  if ($this->answer_freezing_enabled) {
254  return $this->lng->txt('submit_and_check');
255  }
256 
257  return $this->lng->txt('check');
258  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getEditSolutionButtonLabel()

ilTestQuestionNavigationGUI::getEditSolutionButtonLabel ( )
private

Definition at line 242 of file class.ilTestQuestionNavigationGUI.php.

References ILIAS\Repository\lng().

Referenced by getHTML().

242  : string
243  {
244  if ($this->question_worked_through) {
245  return $this->lng->txt('edit_answer');
246  }
247 
248  return $this->lng->txt('answer_question');
249  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getHTML()

ilTestQuestionNavigationGUI::getHTML ( )

Definition at line 199 of file class.ilTestQuestionNavigationGUI.php.

References getCheckButtonLabel(), getEditSolutionButtonLabel(), getRequestHintButtonLabel(), getTemplate(), ILIAS\Repository\lng(), parseNavigation(), renderInstantFeedbackButton(), renderSubmitButton(), and ilTestPlayerCommands\SHOW_INSTANT_RESPONSE.

199  : string
200  {
201  $tpl = $this->getTemplate('toolbar');
202  if ($this->edit_solution_command) {
203  $this->renderSubmitButton(
204  $tpl,
205  $this->edit_solution_command,
207  );
208  }
209 
210  if ($this->instant_feedback_command === ilTestPlayerCommands::SHOW_INSTANT_RESPONSE) {
212  $tpl,
213  $this->instant_feedback_command,
214  $this->getCheckButtonLabel(),
215  $this->force_instant_response_enabled
216  );
217  }
218 
219  if ($this->request_hint_command) {
220  $this->renderSubmitButton(
221  $tpl,
222  $this->request_hint_command,
224  );
225  }
226 
227  if ($this->show_hints_command) {
228  $this->renderSubmitButton(
229  $tpl,
230  $this->show_hints_command,
231  $this->lng->txt('show_requested_question_hints')
232  );
233  }
234 
235  if ($this->anything_rendered) {
236  $this->parseNavigation($tpl);
237  }
238 
239  return $tpl->get();
240  }
renderSubmitButton(ilTemplate $tpl, string $command, string $label)
renderInstantFeedbackButton(ilTemplate $tpl, string $command, string $label, bool $is_primary)
+ Here is the call graph for this function:

◆ getOnLoadCode()

ilTestQuestionNavigationGUI::getOnLoadCode ( string  $command)
private

Definition at line 373 of file class.ilTestQuestionNavigationGUI.php.

References $id.

Referenced by renderInstantFeedbackButton(), and renderSubmitButton().

373  : Closure
374  {
375  return static function ($id) use ($command): string {
376  return "document.getElementById('$id').addEventListener('click', "
377  . '(e) => {'
378  . " e.target.setAttribute('name', 'cmd[$command]');"
379  . ' e.target.form.requestSubmit(e.target);'
380  . '});';
381  };
382  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
+ Here is the caller graph for this function:

◆ getQuestionMarkActionLabel()

ilTestQuestionNavigationGUI::getQuestionMarkActionLabel ( )
private

Definition at line 269 of file class.ilTestQuestionNavigationGUI.php.

References ILIAS\Repository\lng().

Referenced by getActionsHTML().

269  : string
270  {
271  if ($this->question_marked) {
272  return $this->lng->txt('tst_remove_mark');
273  }
274 
275  return $this->lng->txt('tst_question_mark');
276  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getQuestionMarkIconLabel()

ilTestQuestionNavigationGUI::getQuestionMarkIconLabel ( )
private

Definition at line 279 of file class.ilTestQuestionNavigationGUI.php.

References ILIAS\Repository\lng().

Referenced by getActionsHTML().

279  : string
280  {
281  if ($this->question_marked) {
282  return $this->lng->txt('tst_question_marked');
283  }
284 
285  return$this->lng->txt('tst_question_not_marked');
286  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getQuestionMarkIconSource()

ilTestQuestionNavigationGUI::getQuestionMarkIconSource ( )
private

Definition at line 288 of file class.ilTestQuestionNavigationGUI.php.

References ilUtil\getImagePath().

Referenced by getActionsHTML().

288  : string
289  {
290  if ($this->question_marked) {
291  return ilUtil::getImagePath('object/marked.svg');
292  }
293 
294  return ilUtil::getImagePath('object/marked_.svg');
295  }
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getRequestHintButtonLabel()

ilTestQuestionNavigationGUI::getRequestHintButtonLabel ( )
private

Definition at line 260 of file class.ilTestQuestionNavigationGUI.php.

References ILIAS\Repository\lng().

Referenced by getHTML().

260  : string
261  {
262  if ($this->hint_requests_exist) {
263  return $this->lng->txt('button_request_next_question_hint');
264  }
265 
266  return $this->lng->txt('button_request_question_hint');
267  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getShowDiscardModalSignal()

ilTestQuestionNavigationGUI::getShowDiscardModalSignal ( )
private

Definition at line 138 of file class.ilTestQuestionNavigationGUI.php.

Referenced by getActionsHTML().

138  : Signal
139  {
140  return $this->show_discard_modal_signal ?? new SignalImplementation('');
141  }
+ Here is the caller graph for this function:

◆ getTemplate()

ilTestQuestionNavigationGUI::getTemplate (   $a_purpose = 'toolbar')
private

Definition at line 297 of file class.ilTestQuestionNavigationGUI.php.

Referenced by getActionsHTML(), and getHTML().

297  : ilTemplate
298  {
299  switch ($a_purpose) {
300  case 'toolbar':
301  return new ilTemplate(
302  'tpl.tst_question_navigation.html',
303  true,
304  true,
305  'components/ILIAS/Test'
306  );
307  default:
308  case 'actions':
309  return new ilTemplate(
310  'tpl.tst_question_actions.html',
311  true,
312  true,
313  'components/ILIAS/Test'
314  );
315  }
316  }
+ Here is the caller graph for this function:

◆ parseButtonsBlock()

ilTestQuestionNavigationGUI::parseButtonsBlock ( ilTemplate  $tpl)
private

Definition at line 324 of file class.ilTestQuestionNavigationGUI.php.

References ilTemplate\parseCurrentBlock(), and ilTemplate\setCurrentBlock().

Referenced by renderButtonInstance().

324  : void
325  {
326  $tpl->setCurrentBlock('buttons');
327  $tpl->parseCurrentBlock();
328  }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ parseNavigation()

ilTestQuestionNavigationGUI::parseNavigation ( ilTemplate  $tpl)
private

Definition at line 318 of file class.ilTestQuestionNavigationGUI.php.

References ilTemplate\parseCurrentBlock(), and ilTemplate\setCurrentBlock().

Referenced by getHTML().

318  : void
319  {
320  $tpl->setCurrentBlock('question_related_navigation');
321  $tpl->parseCurrentBlock();
322  }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ renderActionsIcon()

ilTestQuestionNavigationGUI::renderActionsIcon ( ilTemplate  $tpl,
string  $icon_src,
string  $label,
string  $css_class 
)
private

Definition at line 384 of file class.ilTestQuestionNavigationGUI.php.

References ilTemplate\parseCurrentBlock(), ilTemplate\setCurrentBlock(), and HTML_Template_IT\setVariable().

Referenced by getActionsHTML().

389  : void {
390  $tpl->setCurrentBlock('actions_icon');
391  $tpl->setVariable('ICON_SRC', $icon_src);
392  $tpl->setVariable('ICON_TEXT', $label);
393  $tpl->setVariable('ICON_CLASS', $css_class);
394  $tpl->parseCurrentBlock();
395  }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ renderButtonInstance()

ilTestQuestionNavigationGUI::renderButtonInstance ( ilTemplate  $tpl,
Button  $button 
)
private

Definition at line 330 of file class.ilTestQuestionNavigationGUI.php.

References parseButtonsBlock(), ilTemplate\parseCurrentBlock(), setAnythingRendered(), ilTemplate\setCurrentBlock(), and HTML_Template_IT\setVariable().

Referenced by renderInstantFeedbackButton(), and renderSubmitButton().

330  : void
331  {
332  $tpl->setCurrentBlock('button_instance');
333  $tpl->setVariable('BUTTON_INSTANCE', $this->ui_renderer->render($button));
334  $tpl->parseCurrentBlock();
335 
336  $this->parseButtonsBlock($tpl);
337  $this->setAnythingRendered();
338  }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ renderInstantFeedbackButton()

ilTestQuestionNavigationGUI::renderInstantFeedbackButton ( ilTemplate  $tpl,
string  $command,
string  $label,
bool  $is_primary 
)
private

Definition at line 352 of file class.ilTestQuestionNavigationGUI.php.

References getOnLoadCode(), and renderButtonInstance().

Referenced by getHTML().

357  : void {
358  $on_load_code = $this->getOnLoadCode($command);
359  if ($is_primary) {
360  $this->renderButtonInstance(
361  $tpl,
362  $this->ui_factory->button()->primary($label, '')->withAdditionalOnLoadCode($on_load_code)
363  );
364  return;
365  }
366 
367  $this->renderButtonInstance(
368  $tpl,
369  $this->ui_factory->button()->standard($label, '')->withAdditionalOnLoadCode($on_load_code)
370  );
371  }
renderButtonInstance(ilTemplate $tpl, Button $button)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ renderSubmitButton()

ilTestQuestionNavigationGUI::renderSubmitButton ( ilTemplate  $tpl,
string  $command,
string  $label 
)
private

Definition at line 340 of file class.ilTestQuestionNavigationGUI.php.

References getOnLoadCode(), and renderButtonInstance().

Referenced by getHTML().

344  : void {
345  $on_load_code = $this->getOnLoadCode($command);
346  $this->renderButtonInstance(
347  $tpl,
348  $this->ui_factory->button()->standard($label, '')->withAdditionalOnLoadCode($on_load_code)
349  );
350  }
renderButtonInstance(ilTemplate $tpl, Button $button)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setAnswerFreezingEnabled()

ilTestQuestionNavigationGUI::setAnswerFreezingEnabled ( bool  $answer_freezing_enabled)

Definition at line 98 of file class.ilTestQuestionNavigationGUI.php.

References $answer_freezing_enabled.

98  : void
99  {
100  $this->answer_freezing_enabled = $answer_freezing_enabled;
101  }

◆ setAnythingRendered()

ilTestQuestionNavigationGUI::setAnythingRendered ( )

Definition at line 128 of file class.ilTestQuestionNavigationGUI.php.

Referenced by renderButtonInstance().

128  : void
129  {
130  $this->anything_rendered = true;
131  }
+ Here is the caller graph for this function:

◆ setDiscardSolutionButtonEnabled()

ilTestQuestionNavigationGUI::setDiscardSolutionButtonEnabled ( bool  $discard_solution_button_enabled)

Definition at line 78 of file class.ilTestQuestionNavigationGUI.php.

References $discard_solution_button_enabled.

78  : void
79  {
80  $this->discard_solution_button_enabled = $discard_solution_button_enabled;
81  }

◆ setEditSolutionCommand()

ilTestQuestionNavigationGUI::setEditSolutionCommand ( string  $edit_solution_command)

Definition at line 63 of file class.ilTestQuestionNavigationGUI.php.

References $edit_solution_command.

63  : void
64  {
65  $this->edit_solution_command = $edit_solution_command;
66  }

◆ setForceInstantResponseEnabled()

ilTestQuestionNavigationGUI::setForceInstantResponseEnabled ( bool  $force_instant_response_enabled)

Definition at line 93 of file class.ilTestQuestionNavigationGUI.php.

References $force_instant_response_enabled.

93  : void
94  {
95  $this->force_instant_response_enabled = $force_instant_response_enabled;
96  }

◆ setHintRequestsExist()

ilTestQuestionNavigationGUI::setHintRequestsExist ( bool  $hint_requests_exist)

Definition at line 113 of file class.ilTestQuestionNavigationGUI.php.

References $hint_requests_exist.

113  : void
114  {
115  $this->hint_requests_exist = $hint_requests_exist;
116  }

◆ setInstantFeedbackCommand()

ilTestQuestionNavigationGUI::setInstantFeedbackCommand ( string  $instant_feedback_command)

Definition at line 88 of file class.ilTestQuestionNavigationGUI.php.

References $instant_feedback_command.

88  : void
89  {
90  $this->instant_feedback_command = $instant_feedback_command;
91  }

◆ setQuestionMarked()

ilTestQuestionNavigationGUI::setQuestionMarked ( bool  $question_marked)

Definition at line 123 of file class.ilTestQuestionNavigationGUI.php.

References $question_marked.

123  : void
124  {
125  $this->question_marked = $question_marked;
126  }

◆ setQuestionMarkLinkTarget()

ilTestQuestionNavigationGUI::setQuestionMarkLinkTarget ( string  $question_mark_link_target)

Definition at line 118 of file class.ilTestQuestionNavigationGUI.php.

References $question_mark_link_target.

118  : void
119  {
120  $this->question_mark_link_target = $question_mark_link_target;
121  }

◆ setQuestionWorkedThrough()

ilTestQuestionNavigationGUI::setQuestionWorkedThrough ( bool  $question_worked_through)

Definition at line 68 of file class.ilTestQuestionNavigationGUI.php.

References $question_worked_through.

68  : void
69  {
70  $this->question_worked_through = $question_worked_through;
71  }

◆ setRequestHintCommand()

ilTestQuestionNavigationGUI::setRequestHintCommand ( string  $request_hint_command)

Definition at line 103 of file class.ilTestQuestionNavigationGUI.php.

References $request_hint_command.

103  : void
104  {
105  $this->request_hint_command = $request_hint_command;
106  }

◆ setRevertChangesLinkTarget()

ilTestQuestionNavigationGUI::setRevertChangesLinkTarget ( string  $revert_changes_link_target)

Definition at line 73 of file class.ilTestQuestionNavigationGUI.php.

References $revert_changes_link_target.

73  : void
74  {
75  $this->revert_changes_link_target = $revert_changes_link_target;
76  }

◆ setShowDiscardModalSignal()

ilTestQuestionNavigationGUI::setShowDiscardModalSignal ( Signal  $signal)

Definition at line 133 of file class.ilTestQuestionNavigationGUI.php.

133  : void
134  {
135  $this->show_discard_modal_signal = $signal;
136  }

◆ setShowHintsCommand()

ilTestQuestionNavigationGUI::setShowHintsCommand ( string  $show_hints_command)

Definition at line 108 of file class.ilTestQuestionNavigationGUI.php.

References $show_hints_command.

108  : void
109  {
110  $this->show_hints_command = $show_hints_command;
111  }

◆ setSkipQuestionLinkTarget()

ilTestQuestionNavigationGUI::setSkipQuestionLinkTarget ( string  $skip_question_link_target)

Definition at line 83 of file class.ilTestQuestionNavigationGUI.php.

References $skip_question_link_target.

83  : void
84  {
85  $this->skip_question_link_target = $skip_question_link_target;
86  }

Field Documentation

◆ $answer_freezing_enabled

bool ilTestQuestionNavigationGUI::$answer_freezing_enabled = false
private

Definition at line 46 of file class.ilTestQuestionNavigationGUI.php.

Referenced by setAnswerFreezingEnabled().

◆ $anything_rendered

bool ilTestQuestionNavigationGUI::$anything_rendered = false
private

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

◆ $discard_solution_button_enabled

bool ilTestQuestionNavigationGUI::$discard_solution_button_enabled = false
private

◆ $edit_solution_command

string ilTestQuestionNavigationGUI::$edit_solution_command = ''
private

Definition at line 40 of file class.ilTestQuestionNavigationGUI.php.

Referenced by setEditSolutionCommand().

◆ $force_instant_response_enabled

bool ilTestQuestionNavigationGUI::$force_instant_response_enabled = false
private

◆ $hint_requests_exist

bool ilTestQuestionNavigationGUI::$hint_requests_exist = false
private

Definition at line 50 of file class.ilTestQuestionNavigationGUI.php.

Referenced by setHintRequestsExist().

◆ $instant_feedback_command

string ilTestQuestionNavigationGUI::$instant_feedback_command = ''
private

Definition at line 45 of file class.ilTestQuestionNavigationGUI.php.

Referenced by setInstantFeedbackCommand().

◆ $question_mark_link_target

string ilTestQuestionNavigationGUI::$question_mark_link_target = ''
private

◆ $question_marked

bool ilTestQuestionNavigationGUI::$question_marked = false
private

Definition at line 52 of file class.ilTestQuestionNavigationGUI.php.

Referenced by setQuestionMarked().

◆ $question_worked_through

bool ilTestQuestionNavigationGUI::$question_worked_through = false
private

Definition at line 41 of file class.ilTestQuestionNavigationGUI.php.

Referenced by setQuestionWorkedThrough().

◆ $request_hint_command

string ilTestQuestionNavigationGUI::$request_hint_command = ''
private

Definition at line 48 of file class.ilTestQuestionNavigationGUI.php.

Referenced by setRequestHintCommand().

◆ $revert_changes_link_target

string ilTestQuestionNavigationGUI::$revert_changes_link_target = ''
private

◆ $show_discard_modal_signal

Signal ilTestQuestionNavigationGUI::$show_discard_modal_signal = null
private

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

◆ $show_hints_command

string ilTestQuestionNavigationGUI::$show_hints_command = ''
private

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

Referenced by setShowHintsCommand().

◆ $skip_question_link_target

string ilTestQuestionNavigationGUI::$skip_question_link_target = ''
private

◆ $ui

ILIAS DI UIServices ilTestQuestionNavigationGUI::$ui
private

Definition at line 38 of file class.ilTestQuestionNavigationGUI.php.

◆ CSS_CLASS_SUBMIT_BUTTONS

const ilTestQuestionNavigationGUI::CSS_CLASS_SUBMIT_BUTTONS = 'ilc_qsubmit_Submit'

Definition at line 37 of file class.ilTestQuestionNavigationGUI.php.

◆ SHOW_DISABLED_COMMANDS

const ilTestQuestionNavigationGUI::SHOW_DISABLED_COMMANDS = false

Definition at line 35 of file class.ilTestQuestionNavigationGUI.php.


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