ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestQuestionConfig.php
Go to the documentation of this file.
1 <?php
2 
19 // fau: testNav - new class ilTestQuestionConfig.
24 {
25  protected $isUnchangedAnswerPossible = false;
26  protected $useUnchangedAnswerLabel = '';
27  protected $enableFormChangeDetection = true;
29 
30  // hey: prevPassSolutions - previous solution adopted
32  protected $solutionInitiallyPrefilled = false;
33  // hey.
34 
35  protected $scoreEmptyMcSolutionsEnabled = false;
36 
37  protected $workedThrough = false;
38 
42  public function __construct()
43  {
44  global $DIC;
45  $lng = $DIC['lng'];
46  $this->useUnchangedAnswerLabel = $lng->txt('tst_unchanged_answer_is_correct');
47  }
48 
53  public function isUnchangedAnswerPossible(): bool
54  {
56  }
57 
64  {
66  return $this;
67  }
68 
73  public function getUseUnchangedAnswerLabel(): string
74  {
76  }
77 
84  {
85  $this->useUnchangedAnswerLabel = $useUnchangedAnswerLabel;
86  return $this;
87  }
88 
93  public function isFormChangeDetectionEnabled(): bool
94  {
96  }
97 
104  {
105  $this->enableFormChangeDetection = $enableFormChangeDetection;
106  return $this;
107  }
108 
113  public function isBackgroundChangeDetectionEnabled(): bool
114  {
116  }
117 
118  // hey: prevPassSolutions - extension or fix or anything sensefull in the current fixing work :-D
122  public function isPreviousPassSolutionReuseAllowed(): bool
123  {
125  }
126 
131  {
132  $this->previousPassSolutionReuseAllowed = $previousPassSolutionReuseAllowed;
133  }
134  // hey.
135 
136  // hey: prevPassSolutions - previous solution adopted
140  public function isSolutionInitiallyPrefilled(): bool
141  {
143  }
144 
152  {
153  $this->solutionInitiallyPrefilled = $solutionInitiallyPrefilled;
154  // hey: prevPassSolutions - streamlined signatures
155  return $this;
156  // hey.
157  }
158 
162  public function isScoreEmptyMcSolutionsEnabled(): bool
163  {
165  }
166 
171  {
172  $this->scoreEmptyMcSolutionsEnabled = $scoreEmptyMcSolutionsEnabled;
173  }
174 
178  public function isWorkedThrough(): bool
179  {
180  return $this->workedThrough;
181  }
182 
188  {
189  $this->workedThrough = $workedThrough;
190  return $this;
191  }
192  // hey.
193 }
setFormChangeDetectionEnabled($enableFormChangeDetection)
Set if the detection of form changes is enabled.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setUseUnchangedAnswerLabel($useUnchangedAnswerLabel)
Return the label to be used for the &#39;use unchanged answer&#39; checkbox.
setSolutionInitiallyPrefilled($solutionInitiallyPrefilled)
setIsUnchangedAnswerPossible($isUnchangedAnswerPossible)
Set if the saving of an unchanged answer is supported with an additional checkbox.
getUseUnchangedAnswerLabel()
Return the label to be used for the &#39;use unchanged answer&#39; checkbox.
global $DIC
Definition: shib_login.php:22
isBackgroundChangeDetectionEnabled()
Return if the detection of background changes is enabled.
setPreviousPassSolutionReuseAllowed($previousPassSolutionReuseAllowed)
setScoreEmptyMcSolutionsEnabled($scoreEmptyMcSolutionsEnabled)
__construct()
ilTestQuestionConfig constructor.
global $lng
Definition: privfeed.php:31
isFormChangeDetectionEnabled()
Return if the detection of form changes is enabled.
isUnchangedAnswerPossible()
Return if the saving of an unchanged answer is supported with an additional checkbox.