34 $orientation->addOption(
new ilRadioOption($this->lng->txt(
'vertical'), 0));
35 $orientation->addOption(
new ilRadioOption($this->lng->txt(
'horizontal'), 1));
39 $minanswers =
new ilCheckboxInputGUI($this->lng->txt(
"use_min_answers"),
"use_min_answers");
41 $minanswers->setOptionTitle($this->lng->txt(
"use_min_answers_option"));
42 $minanswers->setRequired(
false);
44 $nranswers =
new ilNumberInputGUI($this->lng->txt(
"nr_min_answers"),
"nr_min_answers");
46 $nranswers->setDecimals(0);
47 $nranswers->setRequired(
false);
48 $nranswers->setMinValue(1);
49 $minanswers->addSubItem($nranswers);
51 $nrmaxanswers =
new ilNumberInputGUI($this->lng->txt(
"nr_max_answers"),
"nr_max_answers");
53 $nrmaxanswers->setDecimals(0);
54 $nrmaxanswers->setRequired(
false);
55 $nrmaxanswers->setMinValue(1);
56 $minanswers->addSubItem($nrmaxanswers);
63 $answers->setAllowMove(
true);
64 $answers->setShowWizard(
false);
65 $answers->setShowSavePhrase(
false);
66 $answers->setUseOtherAnswer(
true);
67 $answers->setShowNeutralCategory(
true);
68 $answers->setNeutralCategoryTitle($this->lng->txt(
'svy_neutral_answer'));
69 $answers->setDisabledScale(
false);
74 $orientation->setValue($this->object->getOrientation());
75 $minanswers->setChecked($this->object->use_min_answers);
76 $nranswers->setValue($this->object->nr_min_answers);
77 $nrmaxanswers->setValue($this->object->nr_max_answers);
78 if (!$this->object->getCategories()->getCategoryCount()) {
79 $this->
object->getCategories()->addCategory(
"");
81 $answers->setValues($this->object->getCategories());
86 if ($a_form->
getInput(
"use_min_answers")) {
89 foreach (
$_POST[
'answers'][
'answer'] as $key => $value) {
94 if (strlen(
$_POST[
'answers'][
'neutral'])) {
101 $min_anwers = $a_form->
getInput(
"nr_min_answers");
102 $max_anwers = $a_form->
getInput(
"nr_max_answers");
105 $min_anwers > $cnt_answers) {
106 $a_form->
getItemByPostVar(
"nr_min_answers")->setAlert($this->lng->txt(
'err_minvalueganswers'));
109 if ($max_anwers > 0 &&
110 ($max_anwers > $cnt_answers || $max_anwers < $min_anwers)) {
111 $a_form->
getItemByPostVar(
"nr_max_answers")->setAlert($this->lng->txt(
'err_maxvaluegeminvalue'));
122 $this->
object->setOrientation($a_form->
getInput(
"orientation"));
123 $this->
object->use_other_answer = ($a_form->
getInput(
'use_other_answer')) ? 1 : 0;
124 $this->
object->other_answer_label = $this->
object->use_other_answer ? $a_form->
getInput(
'other_answer_label') : null;
125 $this->
object->use_min_answers = ($a_form->
getInput(
'use_min_answers')) ?
true :
false;
126 $this->
object->nr_min_answers = ($a_form->
getInput(
'nr_min_answers') > 0) ? $a_form->
getInput(
'nr_min_answers') : null;
127 $this->
object->nr_max_answers = ($a_form->
getInput(
'nr_max_answers') > 0) ? $a_form->
getInput(
'nr_max_answers') : null;
128 $this->
object->label = $a_form->
getInput(
'label');
130 $this->
object->categories->flushCategories();
132 foreach (
$_POST[
'answers'][
'answer'] as $key => $value) {
133 if (strlen($value)) {
134 $this->
object->getCategories()->addCategory($value,
$_POST[
'answers'][
'other'][$key], 0, null,
$_POST[
'answers'][
'scale'][$key]);
137 if (strlen(
$_POST[
'answers'][
'neutral'])) {
138 $this->
object->getCategories()->addCategory(
$_POST[
'answers'][
'neutral'], 0, 1, null,
$_POST[
'answers_neutral_scale']);
142 public function getParsedAnswers(array $a_working_data = null, $a_only_user_anwers =
false)
144 if (is_array($a_working_data)) {
145 $user_answers = $a_working_data;
149 for (
$i = 0;
$i < $this->
object->categories->getCategoryCount();
$i++) {
150 $cat = $this->
object->categories->getCategory(
$i);
151 $value = ($cat->scale) ? ($cat->scale - 1) :
$i;
153 $checked =
"unchecked";
155 if (is_array($a_working_data)) {
156 foreach ($user_answers as $user_answer) {
157 if ($value == $user_answer[
"value"]) {
158 $checked =
"checked";
159 if ($user_answer[
"textanswer"]) {
160 $text = $user_answer[
"textanswer"];
168 $idx = $cat->other .
"_" . $value;
170 if (!$a_only_user_anwers || $checked ==
"checked") {
171 $options[$idx] = array(
173 ,
"title" => trim($cat->title)
174 ,
"other" => (
bool) $cat->other
175 ,
"checked" => $checked
176 ,
"textanswer" => $text
183 return array_values($options);
191 public function getPrintView($question_title = 1, $show_questiontext = 1, $survey_id = null, array $a_working_data = null)
195 $template =
new ilTemplate(
"tpl.il_svy_qpl_mc_printview.html",
true,
true,
"Modules/SurveyQuestionPool");
196 switch ($this->object->getOrientation()) {
199 foreach ($options as $option) {
200 if ($option[
"other"]) {
201 $template->setCurrentBlock(
"other_row");
203 $template->setVariable(
"ALT_CHECKBOX", $this->lng->txt($option[
"checked"]));
204 $template->setVariable(
"TITLE_CHECKBOX", $this->lng->txt($option[
"checked"]));
206 $template->setVariable(
"OTHER_ANSWER", $option[
"textanswer"]
209 $template->parseCurrentBlock();
211 $template->setCurrentBlock(
"mc_row");
213 $template->setVariable(
"ALT_CHECKBOX", $this->lng->txt($option[
"checked"]));
214 $template->setVariable(
"TITLE_CHECKBOX", $this->lng->txt($option[
"checked"]));
216 $template->parseCurrentBlock();
222 foreach ($options as $option) {
223 $template->setCurrentBlock(
"checkbox_col");
225 $template->setVariable(
"ALT_CHECKBOX", $this->lng->txt($option[
"checked"]));
226 $template->setVariable(
"TITLE_CHECKBOX", $this->lng->txt($option[
"checked"]));
227 $template->parseCurrentBlock();
229 foreach ($options as $option) {
230 if ($option[
"other"]) {
231 $template->setCurrentBlock(
"other_text_col");
233 $template->setVariable(
"OTHER_ANSWER", $option[
"textanswer"]
236 $template->parseCurrentBlock();
238 $template->setCurrentBlock(
"text_col");
240 $template->parseCurrentBlock();
246 if ($this->object->use_min_answers) {
247 $template->setCurrentBlock(
'min_max_msg');
248 if ($this->object->nr_min_answers > 0 && $this->object->nr_max_answers > 0) {
249 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->lng->txt(
'msg_min_max_nr_answers'), $this->
object->nr_min_answers, $this->
object->nr_max_answers));
250 } elseif ($this->object->nr_min_answers > 0) {
251 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->lng->txt(
'msg_min_nr_answers'), $this->
object->nr_min_answers));
252 } elseif ($this->object->nr_max_answers > 0) {
253 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->lng->txt(
'msg_max_nr_answers'), $this->
object->nr_max_answers));
255 $template->parseCurrentBlock();
257 if ($show_questiontext) {
260 if ($question_title) {
263 $template->parseCurrentBlock();
264 return $template->get();
277 public function getWorkingForm($working_data =
"", $question_title = 1, $show_questiontext = 1, $error_message =
"", $survey_id = null)
279 $template =
new ilTemplate(
"tpl.il_svy_out_mc.html",
true,
true,
"Modules/SurveyQuestionPool");
280 $template->setCurrentBlock(
"material");
282 $template->parseCurrentBlock();
283 switch ($this->object->getOrientation()) {
286 for (
$i = 0;
$i < $this->
object->categories->getCategoryCount();
$i++) {
287 $cat = $this->
object->categories->getCategory(
$i);
289 $template->setCurrentBlock(
"other_row");
290 if (strlen($cat->title)) {
291 $template->setVariable(
"OTHER_LABEL", $cat->title);
293 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
294 $template->setVariable(
"QUESTION_ID", $this->object->getId());
295 if (is_array($working_data)) {
296 foreach ($working_data as $value) {
297 if (strlen($value[
"value"])) {
298 if ($value[
"value"] == $cat->scale - 1) {
300 if (!$value[
'uncheck']) {
301 $template->setVariable(
"CHECKED_MC",
" checked=\"checked\"");
307 $template->parseCurrentBlock();
309 $template->setCurrentBlock(
"mc_row");
311 $template->setVariable(
'ROWCLASS',
' class="neutral"');
314 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
315 $template->setVariable(
"QUESTION_ID", $this->object->getId());
316 if (is_array($working_data)) {
317 foreach ($working_data as $value) {
318 if (strlen($value[
"value"])) {
319 if ($value[
"value"] == $cat->scale - 1) {
320 if (!$value[
'uncheck']) {
321 $template->setVariable(
"CHECKED_MC",
" checked=\"checked\"");
327 $template->parseCurrentBlock();
329 $template->touchBlock(
'outer_row');
336 for (
$i = 0;
$i < $this->
object->categories->getCategoryCount();
$i++) {
337 $cat = $this->
object->categories->getCategory(
$i);
340 $template->setCurrentBlock(
"checkbox_col");
342 $template->setVariable(
'COLCLASS',
' neutral');
344 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
345 $template->setVariable(
"QUESTION_ID", $this->object->getId());
346 if (is_array($working_data)) {
347 foreach ($working_data as $value) {
348 if (strlen($value[
"value"])) {
349 if ($value[
"value"] == $cat->scale - 1) {
350 if (!$value[
'uncheck']) {
351 $template->setVariable(
"CHECKED_MC",
" checked=\"checked\"");
357 $template->parseCurrentBlock();
361 $template->setCurrentBlock(
"text_other_col");
362 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
363 $template->setVariable(
"QUESTION_ID", $this->object->getId());
364 if (strlen($cat->title)) {
365 $template->setVariable(
"OTHER_LABEL", $cat->title);
367 if (is_array($working_data)) {
368 foreach ($working_data as $value) {
369 if (strlen($value[
"value"])) {
370 if ($value[
"value"] == $cat->scale - 1) {
376 $template->parseCurrentBlock();
380 $template->setCurrentBlock(
"text_col");
382 $template->setVariable(
'COLCLASS',
' neutral');
384 $template->setVariable(
"VALUE_MC", ($cat->scale) ? ($cat->scale - 1) :
$i);
386 $template->setVariable(
"QUESTION_ID", $this->object->getId());
387 $template->parseCurrentBlock();
389 $template->touchBlock(
'text_outer_col');
394 $template->setCurrentBlock(
"question_data");
395 if ($this->object->use_min_answers) {
396 $template->setCurrentBlock(
'min_max_msg');
397 if ($this->object->nr_min_answers > 0 && $this->object->nr_max_answers > 0) {
398 if ($this->object->nr_min_answers == $this->object->nr_max_answers) {
399 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->lng->txt(
'msg_min_max_exact_answers'), $this->
object->nr_min_answers));
401 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->lng->txt(
'msg_min_max_nr_answers'), $this->
object->nr_min_answers, $this->
object->nr_max_answers));
403 } elseif ($this->object->nr_min_answers > 0) {
404 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->lng->txt(
'msg_min_nr_answers'), $this->
object->nr_min_answers));
405 } elseif ($this->object->nr_max_answers > 0) {
406 $template->setVariable(
'MIN_MAX_MSG', sprintf($this->lng->txt(
'msg_max_nr_answers'), $this->
object->nr_max_answers));
408 $template->parseCurrentBlock();
410 if (strcmp($error_message,
"") != 0) {
411 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
413 if ($show_questiontext) {
416 if ($question_title) {
417 $template->setVariable(
"QUESTION_TITLE", $this->object->getTitle());
419 $template->parseCurrentBlock();
420 return $template->get();
setQuestionTabsForClass($guiclass)
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
This class represents an option in a radio group.
getMaterialOutput()
Creates the HTML output of the question material(s)
outQuestionText($template)
getWorkingForm($working_data="", $question_title=1, $show_questiontext=1, $error_message="", $survey_id=null)
Creates the question output form for the learner.
getPrintView($question_title=1, $show_questiontext=1, $survey_id=null, array $a_working_data=null)
Creates a HTML representation of the question.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
MultipleChoice survey question GUI representation.
static getHtmlPath($relative_path)
get url of path
validateEditForm(ilPropertyFormGUI $a_form)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
importEditFormValues(ilPropertyFormGUI $a_form)
MultipleChoice survey question.
getPrintViewQuestionTitle($question_title=1)
getParsedAnswers(array $a_working_data=null, $a_only_user_anwers=false)
Basic class for all survey question types.
addFieldsToEditForm(ilPropertyFormGUI $a_form)