49 $orientation->addOption(
new ilRadioOption($this->
lng->txt(
'horizontal'), 1));
56 $answers->setAllowMove(
true);
57 $answers->setShowWizard(
true);
58 $answers->setUseOtherAnswer(
true);
59 $answers->setShowNeutralCategory(
true);
60 $answers->setNeutralCategoryTitle($this->
lng->txt(
'svy_neutral_answer'));
61 $answers->setDisabledScale(
false);
65 $orientation->setValue($this->
object->getOrientation());
66 if (!$this->
object->getCategories()->getCategoryCount()) {
67 $this->
object->getCategories()->addCategory(
"");
69 $answers->setValues($this->
object->getCategories());
74 $this->log->debug(
"importing edit values");
76 $this->
object->setOrientation($a_form->
getInput(
"orientation"));
78 $this->
object->categories->flushCategories();
79 $answers = $this->request->getAnswers();
80 foreach ($answers[
'answer'] as $key => $value) {
81 if (strlen($value ??
"")) {
82 $this->
object->getCategories()->addCategory(
84 $answers[
'other'][$key] ?? 0,
87 $answers[
'scale'][$key] ??
null 91 if ($this->request->getNeutral() !==
"") {
92 $this->
object->getCategories()->addCategory($this->request->getNeutral(), 0, 1,
null, $this->request->getNeutralScale());
97 ?array $a_working_data =
null,
98 $a_only_user_anwers =
false 100 if (is_array($a_working_data)) {
101 $user_answer = $a_working_data[0] ??
null;
105 for ($i = 0; $i < $this->
object->categories->getCategoryCount(); $i++) {
106 $cat = $this->
object->categories->getCategory($i);
107 $value = ($cat->scale) ? ($cat->scale - 1) : $i;
109 $checked =
"unchecked";
111 if (is_array($a_working_data) &&
112 is_array($user_answer)) {
113 if ($value == $user_answer[
"value"]) {
114 $checked =
"checked";
115 if ($user_answer[
"textanswer"]) {
116 $text = $user_answer[
"textanswer"];
122 $idx = $cat->other .
"_" . $value;
124 if (!$a_only_user_anwers || $checked ===
"checked") {
125 $options[$idx] = array(
127 ,
"title" => trim($cat->title)
128 ,
"other" => (
bool) $cat->other
129 ,
"checked" => $checked
130 ,
"textanswer" => $text
137 return array_values($options);
141 int $question_title = 1,
142 bool $show_questiontext =
true,
143 ?
int $survey_id =
null,
144 ?array $working_data =
null 150 $template =
new ilTemplate(
"tpl.il_svy_qpl_sc_printview.html",
true,
true,
"components/ILIAS/SurveyQuestionPool");
151 switch ($this->
object->orientation) {
154 foreach ($options as $option) {
155 if ($option[
"other"]) {
156 $template->setCurrentBlock(
"other_row");
158 $template->setVariable(
"ALT_RADIO", $this->
lng->txt($option[
"checked"]));
159 $template->setVariable(
"TITLE_RADIO", $this->
lng->txt($option[
"checked"]));
160 $template->setVariable(
164 $template->setVariable(
"OTHER_ANSWER", $option[
"textanswer"]
166 :
" ");
168 $template->setCurrentBlock(
"row");
170 $template->setVariable(
"ALT_RADIO", $this->
lng->txt($option[
"checked"]));
171 $template->setVariable(
"TITLE_RADIO", $this->
lng->txt($option[
"checked"]));
174 $template->parseCurrentBlock();
179 foreach ($options as $option) {
180 $template->setCurrentBlock(
"radio_col");
182 $template->setVariable(
"ALT_RADIO", $this->
lng->txt($option[
"checked"]));
183 $template->setVariable(
"TITLE_RADIO", $this->
lng->txt($option[
"checked"]));
184 $template->parseCurrentBlock();
186 foreach ($options as $option) {
187 if ($option[
"other"]) {
188 $template->setCurrentBlock(
"other_text_col");
189 $template->setVariable(
193 $template->setVariable(
"OTHER_ANSWER", $option[
"textanswer"]
195 :
" ");
197 $template->setCurrentBlock(
"text_col");
200 $template->parseCurrentBlock();
204 foreach ($options as $option) {
205 $template->setCurrentBlock(
"comborow");
207 $template->setVariable(
"VALUE_SC", $option[
"value"]);
208 if ($option[
"checked"] ===
"checked") {
209 $template->setVariable(
"SELECTED_SC",
' selected="selected"');
211 $template->parseCurrentBlock();
213 $template->setCurrentBlock(
"combooutput");
214 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
215 $template->setVariable(
"SELECT_OPTION", $this->
lng->txt(
"select_option"));
216 $template->setVariable(
"TEXT_SELECTION", $this->
lng->txt(
"selection"));
217 $template->parseCurrentBlock();
220 if ($question_title) {
223 if ($show_questiontext) {
226 $template->parseCurrentBlock();
227 return $template->get();
236 ?array $working_data =
null,
237 int $question_title = 1,
238 bool $show_questiontext =
true,
239 string $error_message =
"",
240 ?
int $survey_id =
null,
241 bool $compress_view =
false 243 $orientation = $this->
object->orientation;
244 $template_file =
"tpl.il_svy_out_sc.html";
245 if ($compress_view && $orientation === 1) {
246 $template_file =
"tpl.il_svy_out_sc_comp.html";
249 $template =
new ilTemplate($template_file,
true,
true,
"components/ILIAS/SurveyQuestionPool");
250 switch ($orientation) {
253 for ($i = 0; $i < $this->
object->categories->getCategoryCount(); $i++) {
254 $cat = $this->
object->categories->getCategory($i);
256 $debug_scale = ($cat->scale) ? ($cat->scale - 1) : $i;
257 $this->log->debug(
"Vertical orientation - Original scale = " . $cat->scale .
" If(scale) scale -1 else i. The new scale value is = " . $debug_scale);
260 $template->setCurrentBlock(
"other_row");
261 if (strlen($cat->title ??
"")) {
262 $template->setVariable(
"OTHER_LABEL", $cat->title);
264 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
265 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
266 if (is_array($working_data)) {
267 foreach ($working_data as $value) {
268 if (strlen($value[
"value"] ??
"")) {
269 if ($value[
"value"] == $cat->scale - 1) {
270 if (strlen($value[
'textanswer'] ??
"")) {
275 if (!($value[
'uncheck'] ??
false)) {
276 $template->setVariable(
"CHECKED_SC",
" checked=\"checked\"");
283 $template->setCurrentBlock(
"row");
285 $template->setVariable(
'ROWCLASS',
' class="neutral"');
288 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
289 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
290 if (is_array($working_data)) {
291 foreach ($working_data as $value) {
292 if (strcmp($value[
"value"],
"") !== 0) {
293 if ($value[
"value"] == $cat->scale - 1) {
294 if (!($value[
'uncheck'] ??
false)) {
295 $template->setVariable(
"CHECKED_SC",
" checked=\"checked\"");
302 $template->parseCurrentBlock();
303 $template->touchBlock(
'outer_row');
308 for ($i = 0; $i < $this->
object->categories->getCategoryCount(); $i++) {
309 $cat = $this->
object->categories->getCategory($i);
311 $debug_scale = ($cat->scale) ? ($cat->scale - 1) : $i;
312 $this->log->debug(
"Horizontal orientation - Original NEUTRAL scale = " . $cat->scale .
" If(scale) scale -1 else i. The new scale value is = " . $debug_scale);
314 $template->setCurrentBlock(
"radio_col");
316 $template->setVariable(
'COLCLASS',
' neutral');
318 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
319 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
320 if (is_array($working_data)) {
321 foreach ($working_data as $value) {
322 if (strcmp($value[
"value"],
"") !== 0) {
323 if ($value[
"value"] == $cat->scale - 1) {
324 if (!($value[
'uncheck'] ??
false)) {
325 $template->setVariable(
"CHECKED_SC",
" checked=\"checked\"");
331 $template->parseCurrentBlock();
333 for ($i = 0; $i < $this->
object->categories->getCategoryCount(); $i++) {
334 $cat = $this->
object->categories->getCategory($i);
336 $debug_scale = ($cat->scale) ? ($cat->scale - 1) : $i;
337 $this->log->debug(
"Horizontal orientation - Original scale = " . $cat->scale .
" If(scale) scale -1 else i. The new scale value is = " . $debug_scale);
340 $template->setCurrentBlock(
"text_other_col");
341 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
342 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
343 if (strlen($cat->title ??
"")) {
344 $template->setVariable(
"OTHER_LABEL", $cat->title);
346 if (is_array($working_data)) {
347 foreach ($working_data as $value) {
348 if (strlen($value[
"value"] ??
"")) {
349 if ($value[
"value"] == $cat->scale - 1 && strlen($value[
'textanswer'] ??
"")) {
358 $template->setCurrentBlock(
"text_col");
360 $template->setVariable(
'COLCLASS',
' neutral');
362 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
364 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
366 $template->parseCurrentBlock();
367 $template->touchBlock(
'text_outer_col');
372 for ($i = 0; $i < $this->
object->categories->getCategoryCount(); $i++) {
373 $cat = $this->
object->categories->getCategory($i);
375 $debug_scale = ($cat->scale) ? ($cat->scale - 1) : $i;
376 $this->log->debug(
"Combobox - Original scale = " . $cat->scale .
" If(scale) scale -1 else i. The new scale value is = " . $debug_scale);
378 $template->setCurrentBlock(
"comborow");
379 $template->setVariable(
"TEXT_SC", $cat->title);
380 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
381 if (is_array($working_data)) {
382 if (strcmp($working_data[0][
"value"] ??
"",
"") !== 0) {
383 if ($working_data[0][
"value"] == $cat->scale - 1) {
384 $template->setVariable(
"SELECTED_SC",
" selected=\"selected\"");
388 $template->parseCurrentBlock();
390 $template->setCurrentBlock(
"combooutput");
391 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
392 $template->setVariable(
"SELECT_OPTION", $this->
lng->txt(
"select_option"));
393 $template->setVariable(
"TEXT_SELECTION", $this->
lng->txt(
"selection"));
394 $template->parseCurrentBlock();
398 for ($i = 0; $i < $this->
object->categories->getCategoryCount(); $i++) {
399 $cat = $this->
object->categories->getCategory($i);
401 $debug_scale = ($cat->scale) ? ($cat->scale - 1) : $i;
402 $this->log->debug(
"Horizontal orientation (compressed) - Original NEUTRAL scale = " . $cat->scale .
" If(scale) scale -1 else i. The new scale value is = " . $debug_scale);
405 $template->setCurrentBlock(
"other");
406 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
407 $template->setVariable(
"OTHER_Q_ID", $this->
object->getId());
408 if (is_array($working_data)) {
409 foreach ($working_data as $value) {
410 if (strlen($value[
"value"])) {
411 if ($value[
"value"] == $cat->scale - 1 && strlen($value[
'textanswer'] ??
"")) {
419 $template->parseCurrentBlock();
423 $template->setCurrentBlock(
"radio_col");
425 $template->setVariable(
'COLCLASS',
' neutral');
427 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
428 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
429 if (is_array($working_data)) {
430 foreach ($working_data as $value) {
431 if (strcmp($value[
"value"],
"") !== 0) {
432 if ($value[
"value"] == $cat->scale - 1) {
433 if (!($value[
'uncheck'] ??
false)) {
434 $template->setVariable(
"CHECKED_SC",
" checked=\"checked\"");
440 $template->parseCurrentBlock();
442 $perc = round(70 / $this->
object->categories->getCategoryCount(), 2);
443 for ($i = 0; $i < $this->
object->categories->getCategoryCount(); $i++) {
444 $cat = $this->
object->categories->getCategory($i);
446 $debug_scale = ($cat->scale) ? ($cat->scale - 1) : $i;
447 $this->log->debug(
"Horizontal orientation - Original scale = " . $cat->scale .
" If(scale) scale -1 else i. The new scale value is = " . $debug_scale);
449 $template->setCurrentBlock(
"text_col");
451 $template->setVariable(
'COLCLASS',
' neutral');
453 $template->setVariable(
"VALUE_SC", ($cat->scale) ? ($cat->scale - 1) : $i);
455 $template->setVariable(
"PERC", $perc);
456 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
457 $template->parseCurrentBlock();
461 $template->setVariable(
"QUESTION_TITLE", $this->
getQuestionTitle($question_title));
462 $template->setCurrentBlock(
"question_data");
463 if (strcmp($error_message,
"") !== 0) {
464 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
466 if ($show_questiontext) {
469 $template->parseCurrentBlock();
470 return $template->get();
This class represents an option in a radio group.
getQuestionTitle(int $question_title_mode=1)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPrintViewQuestionTitle(int $question_title=1)
getPrintView(int $question_title=1, bool $show_questiontext=true, ?int $survey_id=null, ?array $working_data=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addFieldsToEditForm(ilPropertyFormGUI $a_form)
getParsedAnswers(?array $a_working_data=null, $a_only_user_anwers=false)
outQuestionText(ilTemplate $template)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setQuestionTabsForClass(string $guiclass)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static getHtmlPath(string $relative_path)
get url of path
getWorkingForm(?array $working_data=null, int $question_title=1, bool $show_questiontext=true, string $error_message="", ?int $survey_id=null, bool $compress_view=false)
importEditFormValues(ilPropertyFormGUI $a_form)
Basic class for all survey question types The SurveyQuestionGUI class defines and encapsulates basic ...