47 $orientation->addOption(
new ilRadioOption($this->
lng->txt(
'horizontal'), 1));
53 $minanswers->setOptionTitle($this->
lng->txt(
"use_min_answers_option"));
54 $minanswers->setRequired(
false);
58 $nranswers->setDecimals(0);
59 $nranswers->setRequired(
false);
60 $nranswers->setMinValue(1);
61 $minanswers->addSubItem($nranswers);
65 $nrmaxanswers->setDecimals(0);
66 $nrmaxanswers->setRequired(
false);
67 $nrmaxanswers->setMinValue(1);
68 $minanswers->addSubItem($nrmaxanswers);
75 $answers->setAllowMove(
true);
76 $answers->setShowWizard(
false);
77 $answers->setShowSavePhrase(
false);
78 $answers->setUseOtherAnswer(
true);
79 $answers->setShowNeutralCategory(
true);
80 $answers->setNeutralCategoryTitle($this->
lng->txt(
'svy_neutral_answer'));
81 $answers->setDisabledScale(
false);
86 $orientation->setValue($this->
object->getOrientation());
87 $minanswers->setChecked((
bool) $this->
object->use_min_answers);
88 $nranswers->setValue($this->
object->nr_min_answers);
89 $nrmaxanswers->setValue($this->
object->nr_max_answers);
90 if (!$this->
object->getCategories()->getCategoryCount()) {
91 $this->
object->getCategories()->addCategory(
"");
93 $answers->setValues($this->
object->getCategories());
99 if ($a_form->
getInput(
"use_min_answers")) {
102 $answers = $this->request->getAnswers();
103 foreach ($answers[
'answer'] as
$key => $value) {
104 if (strlen($value)) {
108 if ($this->request->getNeutral() !==
"") {
115 $min_anwers = $a_form->
getInput(
"nr_min_answers");
116 $max_anwers = $a_form->
getInput(
"nr_max_answers");
119 $min_anwers > $cnt_answers) {
120 $a_form->
getItemByPostVar(
"nr_min_answers")->setAlert($this->
lng->txt(
'err_minvalueganswers'));
123 if ($max_anwers > 0 &&
124 ($max_anwers > $cnt_answers || $max_anwers < $min_anwers)) {
125 $a_form->
getItemByPostVar(
"nr_max_answers")->setAlert($this->
lng->txt(
'err_maxvaluegeminvalue'));
130 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
136 $this->
object->setOrientation($a_form->
getInput(
"orientation"));
137 $this->
object->use_other_answer = ($a_form->
getInput(
'use_other_answer')) ? 1 : 0;
138 $this->
object->other_answer_label = $this->
object->use_other_answer ? $a_form->
getInput(
'other_answer_label') :
"";
139 $this->
object->use_min_answers = (bool) $a_form->
getInput(
'use_min_answers');
140 $this->
object->nr_min_answers = ($a_form->
getInput(
'nr_min_answers') > 0) ? $a_form->
getInput(
'nr_min_answers') :
"";
141 $this->
object->nr_max_answers = ($a_form->
getInput(
'nr_max_answers') > 0) ? $a_form->
getInput(
'nr_max_answers') :
"";
142 $this->
object->label = $a_form->
getInput(
'label');
144 $this->
object->categories->flushCategories();
146 $answers = $this->request->getAnswers();
147 foreach ($answers[
'answer'] as
$key => $value) {
148 if (strlen($value)) {
149 $this->
object->getCategories()->addCategory($value, $answers[
'other'][
$key] ?? 0, 0, null, $answers[
'scale'][$key]);
152 if ($this->request->getNeutral() !==
"") {
153 $this->
object->getCategories()->addCategory($this->request->getNeutral(), 0, 1, null, $this->request->getNeutralScale());
158 array $a_working_data = null,
159 $a_only_user_anwers =
false 161 if (is_array($a_working_data)) {
162 $user_answers = $a_working_data;
166 for (
$i = 0;
$i < $this->
object->categories->getCategoryCount();
$i++) {
167 $cat = $this->
object->categories->getCategory(
$i);
168 $value = ($cat->scale) ? ($cat->scale - 1) :
$i;
170 $checked =
"unchecked";
172 if (is_array($a_working_data)) {
173 foreach ($user_answers as $user_answer) {
174 if ($value == $user_answer[
"value"]) {
175 $checked =
"checked";
176 if ($user_answer[
"textanswer"]) {
177 $text = $user_answer[
"textanswer"];
185 $idx = $cat->other .
"_" . $value;
187 if (!$a_only_user_anwers || $checked ===
"checked") {
188 $options[$idx] = array(
190 ,
"title" => trim($cat->title)
191 ,
"other" => (
bool) $cat->other
192 ,
"checked" => $checked
193 ,
"textanswer" => $text
200 return array_values($options);
204 int $question_title = 1,
205 bool $show_questiontext =
true,
206 ?
int $survey_id = null,
207 ?array $working_data = null
211 $template =
new ilTemplate(
"tpl.il_svy_qpl_mc_printview.html",
true,
true,
"Modules/SurveyQuestionPool");
212 switch ($this->
object->getOrientation()) {
215 foreach ($options as $option) {
216 if ($option[
"other"]) {
217 $template->setCurrentBlock(
"other_row");
219 $template->setVariable(
"ALT_CHECKBOX", $this->
lng->txt($option[
"checked"]));
220 $template->setVariable(
"TITLE_CHECKBOX", $this->
lng->txt($option[
"checked"]));
221 $template->setVariable(
225 $template->setVariable(
"OTHER_ANSWER", $option[
"textanswer"]
229 $template->setCurrentBlock(
"mc_row");
231 $template->setVariable(
"ALT_CHECKBOX", $this->
lng->txt($option[
"checked"]));
232 $template->setVariable(
"TITLE_CHECKBOX", $this->
lng->txt($option[
"checked"]));
235 $template->parseCurrentBlock();
240 foreach ($options as $option) {
241 $template->setCurrentBlock(
"checkbox_col");
243 $template->setVariable(
"ALT_CHECKBOX", $this->
lng->txt($option[
"checked"]));
244 $template->setVariable(
"TITLE_CHECKBOX", $this->
lng->txt($option[
"checked"]));
245 $template->parseCurrentBlock();
247 foreach ($options as $option) {
248 if ($option[
"other"]) {
249 $template->setCurrentBlock(
"other_text_col");
250 $template->setVariable(
254 $template->setVariable(
"OTHER_ANSWER", $option[
"textanswer"]
258 $template->setCurrentBlock(
"text_col");
261 $template->parseCurrentBlock();
266 if ($this->
object->use_min_answers) {
267 $template->setCurrentBlock(
'min_max_msg');
268 if ($this->
object->nr_min_answers > 0 && $this->object->nr_max_answers > 0) {
269 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->
lng->txt(
'msg_min_max_nr_answers'), $this->
object->nr_min_answers, $this->
object->nr_max_answers));
270 } elseif ($this->
object->nr_min_answers > 0) {
271 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->
lng->txt(
'msg_min_nr_answers'), $this->
object->nr_min_answers));
272 } elseif ($this->
object->nr_max_answers > 0) {
273 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->
lng->txt(
'msg_max_nr_answers'), $this->
object->nr_max_answers));
275 $template->parseCurrentBlock();
277 if ($show_questiontext) {
280 if ($question_title) {
283 $template->parseCurrentBlock();
284 return $template->get();
296 array $working_data = null,
297 int $question_title = 1,
298 bool $show_questiontext =
true,
299 string $error_message =
"",
300 int $survey_id = null,
301 bool $compress_view =
false 303 $template =
new ilTemplate(
"tpl.il_svy_out_mc.html",
true,
true,
"Modules/SurveyQuestionPool");
304 $template->setCurrentBlock(
"material");
306 $template->parseCurrentBlock();
307 switch ($this->
object->getOrientation()) {
310 for (
$i = 0;
$i < $this->
object->categories->getCategoryCount();
$i++) {
311 $cat = $this->
object->categories->getCategory(
$i);
313 $template->setCurrentBlock(
"other_row");
314 if (strlen($cat->title)) {
315 $template->setVariable(
"OTHER_LABEL", $cat->title);
317 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
318 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
319 if (is_array($working_data)) {
320 foreach ($working_data as $value) {
321 if (strlen($value[
"value"])) {
322 if ($value[
"value"] == $cat->scale - 1) {
326 if (!($value[
'uncheck'] ??
false)) {
327 $template->setVariable(
"CHECKED_MC",
" checked=\"checked\"");
334 $template->setCurrentBlock(
"mc_row");
336 $template->setVariable(
'ROWCLASS',
' class="neutral"');
339 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
340 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
341 if (is_array($working_data)) {
342 foreach ($working_data as $value) {
343 if (strlen($value[
"value"])) {
344 if ($value[
"value"] == $cat->scale - 1) {
345 if (!($value[
'uncheck'] ??
false)) {
346 $template->setVariable(
"CHECKED_MC",
" checked=\"checked\"");
353 $template->parseCurrentBlock();
354 $template->touchBlock(
'outer_row');
361 for (
$i = 0;
$i < $this->
object->categories->getCategoryCount();
$i++) {
362 $cat = $this->
object->categories->getCategory(
$i);
365 $template->setCurrentBlock(
"checkbox_col");
367 $template->setVariable(
'COLCLASS',
' neutral');
369 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
370 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
371 if (is_array($working_data)) {
372 foreach ($working_data as $value) {
373 if (strlen($value[
"value"])) {
374 if ($value[
"value"] == $cat->scale - 1) {
375 if (!($value[
'uncheck'] ??
false)) {
376 $template->setVariable(
"CHECKED_MC",
" checked=\"checked\"");
382 $template->parseCurrentBlock();
386 $template->setCurrentBlock(
"text_other_col");
387 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
388 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
389 if (strlen($cat->title)) {
390 $template->setVariable(
"OTHER_LABEL", $cat->title);
392 if (is_array($working_data)) {
393 foreach ($working_data as $value) {
394 if (strlen($value[
"value"])) {
395 if ($value[
"value"] == $cat->scale - 1) {
406 $template->setCurrentBlock(
"text_col");
408 $template->setVariable(
'COLCLASS',
' neutral');
410 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
412 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
414 $template->parseCurrentBlock();
415 $template->touchBlock(
'text_outer_col');
420 $template->setCurrentBlock(
"question_data");
421 if ($this->
object->use_min_answers) {
422 $template->setCurrentBlock(
'min_max_msg');
423 if ($this->
object->nr_min_answers > 0 && $this->object->nr_max_answers > 0) {
424 if ($this->
object->nr_min_answers == $this->object->nr_max_answers) {
425 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->
lng->txt(
'msg_min_max_exact_answers'), $this->
object->nr_min_answers));
427 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->
lng->txt(
'msg_min_max_nr_answers'), $this->
object->nr_min_answers, $this->
object->nr_max_answers));
429 } elseif ($this->
object->nr_min_answers > 0) {
430 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->
lng->txt(
'msg_min_nr_answers'), $this->
object->nr_min_answers));
431 } elseif ($this->
object->nr_max_answers > 0) {
432 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->
lng->txt(
'msg_max_nr_answers'), $this->
object->nr_max_answers));
434 $template->parseCurrentBlock();
436 if (strcmp($error_message,
"") !== 0) {
437 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
439 if ($show_questiontext) {
442 $template->setVariable(
"QUESTION_TITLE", $this->
getQuestionTitle($question_title));
443 $template->parseCurrentBlock();
444 return $template->get();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMaterialOutput()
Creates the HTML output of the question material(s)
getQuestionTitle(int $question_title_mode=1)
getPrintViewQuestionTitle(int $question_title=1)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getPrintView(int $question_title=1, bool $show_questiontext=true, ?int $survey_id=null, ?array $working_data=null)
outQuestionText(ilTemplate $template)
setQuestionTabsForClass(string $guiclass)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getHtmlPath(string $relative_path)
get url of path
validateEditForm(ilPropertyFormGUI $a_form)
importEditFormValues(ilPropertyFormGUI $a_form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParsedAnswers(array $a_working_data=null, $a_only_user_anwers=false)
Basic class for all survey question types The SurveyQuestionGUI class defines and encapsulates basic ...
getWorkingForm(array $working_data=null, int $question_title=1, bool $show_questiontext=true, string $error_message="", int $survey_id=null, bool $compress_view=false)
Creates the question output form for the learner.
addFieldsToEditForm(ilPropertyFormGUI $a_form)