35 $maxchars->setSize(5);
36 $maxchars->setDecimals(0);
42 $textwidth->setSize(3);
43 $textwidth->setDecimals(0);
44 $textwidth->setMinValue(10,
true);
50 $textheight->setSize(3);
52 $textheight->setDecimals(0);
53 $textheight->setMinValue(1);
57 if ($this->object->getMaxChars() > 0) {
58 $maxchars->setValue($this->object->getMaxChars());
60 $textwidth->setValue($this->object->getTextWidth());
61 $textheight->setValue($this->object->getTextHeight());
66 $max = $a_form->
getInput(
"maxchars");
67 $this->
object->setMaxChars(strlen($max) ? $max : null);
68 $this->
object->setTextWidth($a_form->
getInput(
"textwidth"));
69 $this->
object->setTextHeight($a_form->
getInput(
"textheight"));
72 public function getParsedAnswers(array $a_working_data = null, $a_only_user_anwers =
false)
76 if (is_array($a_working_data)) {
77 $res[] = array(
"textanswer" => trim($a_working_data[0][
"textanswer"]));
83 public function getPrintView($question_title = 1, $show_questiontext = 1, $survey_id = null, array $a_working_data = null)
86 if ($a_working_data) {
88 $user_answer = $user_answer[0][
"textanswer"];
91 $template =
new ilTemplate(
"tpl.il_svy_qpl_text_printview.html",
true,
true,
"Modules/SurveyQuestionPool");
92 if ($show_questiontext) {
95 if ($question_title) {
98 $template->setVariable(
"QUESTION_ID", $this->object->getId());
99 $template->setVariable(
"TEXT_ANSWER", $this->lng->txt(
"answer"));
100 if (is_array($a_working_data) && trim($user_answer)) {
101 $template->setVariable(
"TEXT", nl2br($user_answer));
104 $template->setVariable(
"TEXTBOX", $this->lng->txt(
"textbox"));
105 $template->setVariable(
"TEXTBOX_WIDTH", $this->object->getTextWidth() * 16);
106 $template->setVariable(
"TEXTBOX_HEIGHT", $this->object->getTextHeight() * 16);
108 if ($this->object->getMaxChars()) {
109 $template->setVariable(
"TEXT_MAXCHARS", sprintf($this->lng->txt(
"text_maximum_chars_allowed"), $this->
object->getMaxChars()));
111 return $template->get();
122 public function getWorkingForm($working_data =
"", $question_title = 1, $show_questiontext = 1, $error_message =
"", $survey_id = null, $compress_view =
false)
124 $template =
new ilTemplate(
"tpl.il_svy_out_text.html",
true,
true,
"Modules/SurveyQuestionPool");
125 $template->setCurrentBlock(
"material_text");
127 $template->parseCurrentBlock();
129 if ($this->object->getTextHeight() == 1) {
130 $template->setCurrentBlock(
"textinput");
131 if (is_array($working_data)) {
132 if (strlen($working_data[0][
"textanswer"])) {
136 $template->setVariable(
"QUESTION_ID", $this->object->getId());
137 $template->setVariable(
"WIDTH", $this->object->getTextWidth());
138 if ($this->object->getMaxChars()) {
139 $template->setVariable(
"MAXLENGTH",
" maxlength=\"" . $this->object->getMaxChars() .
"\"");
141 $template->parseCurrentBlock();
143 $template->setCurrentBlock(
"textarea");
144 if (is_array($working_data)) {
147 $template->setVariable(
"QUESTION_ID", $this->object->getId());
148 $template->setVariable(
"WIDTH", $this->object->getTextWidth());
149 $template->setVariable(
"HEIGHT", $this->object->getTextHeight());
150 $template->parseCurrentBlock();
152 $template->setCurrentBlock(
"question_data_text");
153 if ($show_questiontext) {
156 if ($question_title) {
157 $template->setVariable(
"QUESTION_TITLE", $this->object->getTitle());
159 $template->setVariable(
"TEXT_ANSWER", $this->lng->txt(
"answer"));
160 $template->setVariable(
"LABEL_QUESTION_ID", $this->object->getId());
161 if (strcmp($error_message,
"") != 0) {
162 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
164 if ($this->object->getMaxChars()) {
165 $template->setVariable(
"TEXT_MAXCHARS", sprintf($this->lng->txt(
"text_maximum_chars_allowed"), $this->
object->getMaxChars()));
167 $template->parseCurrentBlock();
168 return $template->get();
addFieldsToEditForm(ilPropertyFormGUI $a_form)
setQuestionTabsForClass($guiclass)
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
getMaterialOutput()
Creates the HTML output of the question material(s)
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.
outQuestionText($template)
Text survey question GUI representation.
foreach($_POST as $key=> $value) $res
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static getHtmlPath($relative_path)
get url of path
getParsedAnswers(array $a_working_data=null, $a_only_user_anwers=false)
importEditFormValues(ilPropertyFormGUI $a_form)
getPrintViewQuestionTitle($question_title=1)
getPrintView($question_title=1, $show_questiontext=1, $survey_id=null, array $a_working_data=null)
Basic class for all survey question types.