39 $subtype->addOption($opt);
44 $minimum1->setSize(6);
45 $opt->addSubItem($minimum1);
50 $maximum1->setSize(6);
51 $opt->addSubItem($maximum1);
54 $subtype->addOption($opt);
59 $minimum2->setSize(6);
60 $minimum2->setMinValue(0);
61 $opt->addSubItem($minimum2);
66 $maximum2->setSize(6);
67 $opt->addSubItem($maximum2);
70 $subtype->addOption($opt);
75 $minimum3->setSize(6);
76 $minimum3->setMinValue(0);
77 $minimum3->setDecimals(0);
78 $opt->addSubItem($minimum3);
83 $maximum3->setRequired(
false);
84 $maximum3->setSize(6);
85 $opt->addSubItem($maximum3);
89 $subtype->setValue($this->object->getSubtype());
91 switch ($this->object->getSubtype()) {
93 $minimum1->setValue($this->object->getMinimum());
94 $maximum1->setValue($this->object->getMaximum());
98 $minimum2->setValue($this->object->getMinimum());
99 $maximum2->setValue($this->object->getMaximum());
103 $minimum3->setValue($this->object->getMinimum());
104 $maximum3->setValue($this->object->getMaximum());
112 $this->
object->setOrientation($a_form->
getInput(
"orientation"));
113 $this->
object->setSubtype(
$type);
114 $this->
object->setMinimum($a_form->
getInput(
"minimum" .
$type));
115 $this->
object->setMaximum($a_form->
getInput(
"maximum" .
$type));
118 public function getParsedAnswers(array $a_working_data = null, $a_only_user_anwers =
false)
122 if (is_array($a_working_data)) {
123 $res[] = array(
"value" => $a_working_data[0][
"value"]);
136 public function getPrintView($question_title = 1, $show_questiontext = 1, $survey_id = null, array $a_working_data = null)
139 if ($a_working_data) {
141 $user_answer = $user_answer[0][
"value"];
144 $template =
new ilTemplate(
"tpl.il_svy_qpl_metric_printview.html",
true,
true,
"Modules/SurveyQuestionPool");
145 $template->setVariable(
"MIN_MAX", $this->object->getMinMaxText());
147 if ($show_questiontext) {
150 if ($question_title) {
153 $template->setVariable(
"TEXT_ANSWER", $this->lng->txt(
"answer"));
154 $template->setVariable(
"QUESTION_ID", $this->object->getId());
156 if (!is_array($a_working_data) || !trim($user_answer)) {
159 for (
$i = 0;
$i < 10;
$i++) {
160 $solution_text .=
" ";
163 $solution_text = $user_answer;
165 $template->setVariable(
"TEXT_SOLUTION", $solution_text);
167 $template->parseCurrentBlock();
168 return $template->get();
183 public function getWorkingForm($working_data =
"", $question_title = 1, $show_questiontext = 1, $error_message =
"", $survey_id = null, $compress_view =
false)
185 $template =
new ilTemplate(
"tpl.il_svy_out_metric.html",
true,
true,
"Modules/SurveyQuestionPool");
186 $template->setCurrentBlock(
"material_metric");
188 $template->parseCurrentBlock();
189 $template->setVariable(
"MIN_MAX", $this->object->getMinMaxText());
205 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($questiontext,
true));
206 if ($show_questiontext) {
209 if ($question_title) {
210 $template->setVariable(
"QUESTION_TITLE", $this->object->getTitle());
212 $template->setVariable(
"TEXT_ANSWER", $this->lng->txt(
"answer"));
213 $template->setVariable(
"QUESTION_ID", $this->object->getId());
214 if (is_array($working_data)) {
215 $template->setVariable(
"VALUE_METRIC", $working_data[0][
"value"]);
218 $template->setVariable(
"INPUT_SIZE", 10);
220 if (strcmp($error_message,
"") != 0) {
221 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
223 $template->parseCurrentBlock();
224 return $template->get();
const SUBTYPE_RATIO_NON_ABSOLUTE
setQuestionTabsForClass($guiclass)
This class represents an option in a radio group.
getMaterialOutput()
Creates the HTML output of the question material(s)
Metric survey question GUI representation.
outQuestionText($template)
getPrintView($question_title=1, $show_questiontext=1, $survey_id=null, array $a_working_data=null)
Creates a HTML representation of the question.
foreach($_POST as $key=> $value) $res
getParsedAnswers(array $a_working_data=null, $a_only_user_anwers=false)
addFieldsToEditForm(ilPropertyFormGUI $a_form)
const SUBTYPE_RATIO_ABSOLUTE
getWorkingForm($working_data="", $question_title=1, $show_questiontext=1, $error_message="", $survey_id=null, $compress_view=false)
Creates the question output form for the learner.
getPrintViewQuestionTitle($question_title=1)
Basic class for all survey question types.
importEditFormValues(ilPropertyFormGUI $a_form)