42 $this->db = $DIC->database();
46 $this->textwidth = 50;
47 $this->textheight = 5;
53 $result =
$ilDB->queryF(
58 if ($result->numRows() === 1) {
59 return $ilDB->fetchAssoc($result);
69 $result =
$ilDB->queryF(
74 if ($result->numRows() === 1) {
77 $this->
setTitle((
string) $data[
"title"]);
78 $this->label = (string) $data[
'label'];
80 $this->
setObjId((
int) $data[
"obj_fi"]);
81 $this->
setAuthor((
string) $data[
"author"]);
82 $this->
setOwner((
int) $data[
"owner_fi"]);
89 $this->
setTextWidth($data[
"width"] ? (
int) $data[
"width"] : null);
90 $this->
setTextHeight($data[
"height"] ? (
int) $data[
"height"] : null);
92 parent::loadFromDb($question_id);
123 if ($affectedRows === 1) {
127 array($this->
getId())
130 "INSERT INTO " . $this->
getAdditionalTableName() .
" (question_fi, maxchars, width, height) VALUES (%s, %s, %s, %s)",
131 array(
'integer',
'integer',
'integer',
'integer'),
137 return $affectedRows;
141 bool $a_include_header =
true,
142 bool $obligatory_state =
false 145 $a_xml_writer->xmlHeader();
146 $this->
insertXML($a_xml_writer, $a_include_header);
147 $xml = $a_xml_writer->xmlDumpMem(
false);
148 if (!$a_include_header) {
149 $pos = strpos(
$xml,
"?>");
157 $a_include_header =
true 160 "id" => $this->
getId(),
169 if (strlen($this->label)) {
171 "label" => $this->label,
176 $a_xml_writer->
xmlStartTag(
"questiontext", $attrs);
178 $a_xml_writer->
xmlEndTag(
"questiontext");
189 $a_xml_writer->
xmlElement(
"response_text", $attrs);
192 if (count($this->material)) {
193 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $this->material[
"internal_link"], $matches)) {
195 "label" => $this->material[
"title"]
198 $intlink =
"il_" .
IL_INST_ID .
"_" . $matches[2] .
"_" . $matches[3];
199 if (strcmp($matches[1],
"") != 0) {
200 $intlink = $this->material[
"internal_link"];
202 $a_xml_writer->
xmlElement(
"mattext", null, $intlink);
212 return "SurveyTextQuestion";
217 return "svy_qst_text";
223 $entered_value = $post_data[$this->
getId() .
"_text_question"] ??
"";
225 if (strlen($entered_value)) {
226 $data[] = array(
"textanswer" => $entered_value);
239 $entered_value = $post_data[$this->
getId() .
"_text_question"];
241 if ((!$this->
getObligatory()) && (strlen($entered_value) == 0)) {
245 if (strlen($entered_value) == 0) {
246 return $this->
lng->txt(
"text_question_not_filled_out");
251 return str_replace(
"%s",
ilStr::strLen($entered_value), $this->
lng->txt(
"svy_answer_too_long"));
260 bool $a_return =
false 268 $entered_value =
ilStr::subStr($entered_value, 0, $maxchars);
272 return array(array(
"value" => null,
"textanswer" => $entered_value));
274 if (strlen($entered_value) == 0) {
278 $next_id =
$ilDB->nextId(
'svy_answer');
281 $fields[
'answer_id'] = array(
"integer", $next_id);
282 $fields[
'question_fi'] = array(
"integer", $this->
getId());
283 $fields[
'active_fi'] = array(
"integer", $active_id);
284 $fields[
'value'] = array(
"float", null);
285 $fields[
'textanswer'] = array(
"clob", (strlen($entered_value)) ? $entered_value : null);
286 $fields[
'tstamp'] = array(
"integer", time());
288 $ilDB->insert(
"svy_answer", $fields);
296 if (
$data[
"maxlength"] > 0) {
299 if (
$data[
"rows"] > 0) {
302 if (
$data[
"columns"] > 0) {
325 if ($a_textwidth < 1) {
326 $this->textwidth = 50;
328 $this->textwidth = $a_textwidth;
334 if ($a_textheight < 1) {
335 $this->textheight = 5;
337 $this->textheight = $a_textheight;
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
setQuestiontext(string $questiontext="")
loadFromDb(int $question_id)
__construct(string $title="", string $description="", string $author="", string $questiontext="", int $owner=-1)
setTextHeight(?int $a_textheight=null)
setObligatory(bool $obligatory=true)
setOriginalId(?int $original_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setComplete(bool $a_complete)
importResponses(array $a_data)
static subStr(string $a_str, int $a_start, ?int $a_length=null)
toXML(bool $a_include_header=true, bool $obligatory_state=false)
stripSlashesAddSpaceFallback(string $a_str)
Strip slashes with add space fallback, see https://mantis.ilias.de/view.php?id=19727 and https://mant...
xmlEndTag(string $tag)
Writes an endtag.
static strLen(string $a_string)
getQuestionDataArray(int $id)
setAuthor(string $author="")
addMaterialTag(ilXmlWriter $a_xml_writer, string $a_material, bool $close_material_tag=true, bool $add_mobs=true, ?array $a_attrs=null)
Creates an XML material tag from a plain text or xhtml text.
checkUserInput(array $post_data, int $survey_id)
Checks the input of the active user for obligatory status and entered values.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setMaxChars(int $maxchars=0)
insertXML(ilXmlWriter $a_xml_writer, $a_include_header=true)
setTitle(string $title="")
setTextWidth(?int $a_textwidth=null)
saveUserInput(array $post_data, int $active_id, bool $a_return=false)
saveToDb(int $original_id=0)
__construct(Container $dic, ilPlugin $plugin)
getWorkingDataFromUserInput(array $post_data)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setDescription(string $description="")
setObjId(int $obj_id=0)
Set the reference(?) id of the container object.