47 $maxchars->setSize(5);
48 $maxchars->setDecimals(0);
52 if ($this->
object->getMaxChars() > 0) {
53 $maxchars->setValue($this->
object->getMaxChars());
59 $max = $a_form->
getInput(
"maxchars");
60 $this->
object->setMaxChars((
int) $max);
64 ?array $a_working_data =
null,
65 $a_only_user_anwers =
false 68 if (is_array($a_working_data) && isset($a_working_data[0])) {
69 $res[] = array(
"textanswer" => trim($a_working_data[0][
"textanswer"] ??
""));
76 int $question_title = 1,
77 bool $show_questiontext =
true,
78 ?
int $survey_id =
null,
79 ?array $working_data =
null 84 $user_answer = $user_answer[0][
"textanswer"];
87 $template =
new ilTemplate(
"tpl.il_svy_qpl_text_printview.html",
true,
true,
"components/ILIAS/SurveyQuestionPool");
88 if ($show_questiontext) {
91 if ($question_title) {
94 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
95 $template->setVariable(
"TEXT_ANSWER", $this->
lng->txt(
"answer"));
96 if (is_array($working_data) && trim($user_answer)) {
97 $template->setVariable(
"TEXT", nl2br($user_answer));
100 $template->setVariable(
"TEXTBOX", $this->
lng->txt(
"textbox"));
102 if ($this->
object->getMaxChars()) {
103 $template->setVariable(
"TEXT_MAXCHARS", sprintf($this->
lng->txt(
"text_maximum_chars_allowed"), $this->
object->getMaxChars()));
105 return $template->get();
117 ?array $working_data =
null,
118 int $question_title = 1,
119 bool $show_questiontext =
true,
120 string $error_message =
"",
121 ?
int $survey_id =
null,
122 bool $compress_view =
false 124 $template =
new ilTemplate(
"tpl.il_svy_out_text.html",
true,
true,
"components/ILIAS/SurveyQuestionPool");
126 $template->setCurrentBlock(
"textarea");
127 if (is_array($working_data) && isset($working_data[0][
"textanswer"])) {
130 $template->setVariable(
"QUESTION_ID", $this->
object->getId());
132 $template->parseCurrentBlock();
133 $template->setCurrentBlock(
"question_data_text");
134 if ($show_questiontext) {
137 $template->setVariable(
"QUESTION_TITLE", $this->
getQuestionTitle($question_title));
138 $template->setVariable(
"TEXT_ANSWER", $this->
lng->txt(
"answer"));
139 $template->setVariable(
"LABEL_QUESTION_ID", $this->
object->getId());
140 if (strcmp($error_message,
"") !== 0) {
141 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
143 if ($this->
object->getMaxChars()) {
144 $template->setVariable(
"TEXT_MAXCHARS", sprintf($this->
lng->txt(
"text_maximum_chars_allowed"), $this->
object->getMaxChars()));
146 $template->parseCurrentBlock();
147 return $template->get();
addFieldsToEditForm(ilPropertyFormGUI $a_form)
getQuestionTitle(int $question_title_mode=1)
getPrintView(int $question_title=1, bool $show_questiontext=true, ?int $survey_id=null, ?array $working_data=null)
getPrintViewQuestionTitle(int $question_title=1)
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.
outQuestionText(ilTemplate $template)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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
getParsedAnswers(?array $a_working_data=null, $a_only_user_anwers=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importEditFormValues(ilPropertyFormGUI $a_form)
Basic class for all survey question types The SurveyQuestionGUI class defines and encapsulates basic ...