ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
SurveyTextQuestionGUI Class Reference

Text survey question GUI representation. More...

+ Inheritance diagram for SurveyTextQuestionGUI:
+ Collaboration diagram for SurveyTextQuestionGUI:

Public Member Functions

 setQuestionTabs ()
 
 getPrintView ($question_title=1, $show_questiontext=1, $survey_id=null)
 
 getWorkingForm ($working_data="", $question_title=1, $show_questiontext=1, $error_message="", $survey_id=null)
 Creates the question output form for the learner. More...
 
 getCumulatedResultsDetails ($survey_id, $counter, $finished_ids)
 Creates the detailed output of the cumulated results for the question. More...
 
- Public Member Functions inherited from SurveyQuestionGUI
 __construct ($a_id=-1)
 
 setQuestionTabs ()
 
executeCommand ()
 
 _getGUIClassNameForId ($a_q_id)
 
 _getClassNameForQType ($q_type)
 
 getQuestionType ()
 Returns the question type string. More...
 
 setBackUrl ($a_url)
 
 setQuestionTabsForClass ($guiclass)
 
 getPrintView ($question_title=1, $show_questiontext=1)
 
 preview ()
 Creates a preview of the question. More...
 
 getWorkingForm ($working_data="", $question_title=1, $show_questiontext=1, $error_message="", $survey_id=null)
 
 getCumulatedResultsDetails ($survey_id, $counter, $finished_ids)
 
 material ($checkonly=FALSE)
 Material tab of the survey questions. More...
 
 deleteMaterial ()
 
 addMaterial ()
 Add materials to a question. More...
 
 removeMaterial ()
 
 cancelExplorer ()
 
 addPG ()
 
 addST ()
 
 addGIT ()
 
 linkChilds ()
 
 savePhrase ($a_reload=false)
 Creates an output to save the current answers as a phrase. More...
 
 confirmSavePhrase ()
 Save a new phrase to the database. More...
 

Protected Member Functions

 initObject ()
 
 addFieldsToEditForm (ilPropertyFormGUI $a_form)
 
 importEditFormValues (ilPropertyFormGUI $a_form)
 
- Protected Member Functions inherited from SurveyQuestionGUI
 initObject ()
 
 outQuestionText ($template)
 
 initEditForm ()
 
 addCommandButtons ($a_form)
 
 editQuestion (ilPropertyFormGUI $a_form=null)
 
 saveSync ()
 
 saveReturn ()
 
 saveForm ()
 
 save ($a_return=false, $a_sync=false)
 
 copySyncForm ()
 
 syncCopies ()
 
 originalSyncForm ()
 
 sync ()
 
 cancelSync ()
 
 redirectAfterSaving ($a_return=false)
 Redirect to calling survey or to edit form. More...
 
 cancel ()
 
 validateEditForm (ilPropertyFormGUI $a_form)
 
 addFieldsToEditForm (ilPropertyFormGUI $a_form)
 
 importEditFormValues (ilPropertyFormGUI $a_form)
 
 getMaterialOutput ()
 Creates the HTML output of the question material(s) More...
 
 renderChart ($a_id, $a_variables)
 
 initPhrasesForm ()
 
 addPhrase (ilPropertyFormGUI $a_form=null)
 Creates an output for the addition of phrases. More...
 
 addSelectedPhrase ()
 

Additional Inherited Members

- Static Public Member Functions inherited from SurveyQuestionGUI
static & _getQuestionGUI ($questiontype, $question_id=-1)
 Creates a question gui representation. More...
 
- Data Fields inherited from SurveyQuestionGUI
 $object
 
- Protected Attributes inherited from SurveyQuestionGUI
 $tpl
 
 $lng
 
 $ctrl
 
 $cumulated
 
 $parent_url
 

Detailed Description

Text survey question GUI representation.

The SurveyTextQuestionGUI class encapsulates the GUI representation for text survey question types.

Author
Helmut Schottmüller helmu.nosp@m.t.sc.nosp@m.hottm.nosp@m.uell.nosp@m.er@ma.nosp@m.c.co.nosp@m.m
Version
$Id$

Definition at line 37 of file class.SurveyTextQuestionGUI.php.

Member Function Documentation

◆ addFieldsToEditForm()

SurveyTextQuestionGUI::addFieldsToEditForm ( ilPropertyFormGUI  $a_form)
protected

Definition at line 55 of file class.SurveyTextQuestionGUI.php.

References ilPropertyFormGUI\addItem(), and ilFormPropertyGUI\setRequired().

56  {
57  // maximum number of characters
58  $maxchars = new ilNumberInputGUI($this->lng->txt("maxchars"), "maxchars");
59  $maxchars->setRequired(false);
60  $maxchars->setSize(5);
61  $maxchars->setDecimals(0);
62  $a_form->addItem($maxchars);
63 
64  // textwidth
65  $textwidth = new ilNumberInputGUI($this->lng->txt("width"), "textwidth");
66  $textwidth->setRequired(true);
67  $textwidth->setSize(3);
68  $textwidth->setDecimals(0);
69  $textwidth->setMinValue(10);
70  $a_form->addItem($textwidth);
71 
72  // textheight
73  $textheight = new ilNumberInputGUI($this->lng->txt("height"), "textheight");
74  $textheight->setRequired(true);
75  $textheight->setSize(3);
76 
77  $textheight->setDecimals(0);
78  $textheight->setMinValue(1);
79  $a_form->addItem($textheight);
80 
81  // values
82  if ($this->object->getMaxChars() > 0)
83  {
84  $maxchars->setValue($this->object->getMaxChars());
85  }
86  $textwidth->setValue($this->object->getTextWidth());
87  $textheight->setValue($this->object->getTextHeight());
88  }
addItem($a_item)
Add Item (Property, SectionHeader).
This class represents a number property in a property form.
setRequired($a_required)
Set Required.
+ Here is the call graph for this function:

◆ getCumulatedResultsDetails()

SurveyTextQuestionGUI::getCumulatedResultsDetails (   $survey_id,
  $counter,
  $finished_ids 
)

Creates the detailed output of the cumulated results for the question.

Parameters
integer$survey_idThe database ID of the survey
integer$counterThe counter of the question position in the survey
Returns
string HTML text with the cumulated results private

Definition at line 203 of file class.SurveyTextQuestionGUI.php.

References ilObjSurvey\_getNrOfParticipants().

204  {
205  if (count($this->cumulated) == 0)
206  {
207  if(!$finished_ids)
208  {
209  include_once "./Modules/Survey/classes/class.ilObjSurvey.php";
210  $nr_of_users = ilObjSurvey::_getNrOfParticipants($survey_id);
211  }
212  else
213  {
214  $nr_of_users = sizeof($finished_ids);
215  }
216  $this->cumulated =& $this->object->getCumulatedResults($survey_id, $nr_of_users, $finished_ids);
217  }
218 
219  $output = "";
220  include_once "./Services/UICore/classes/class.ilTemplate.php";
221  $template = new ilTemplate("tpl.il_svy_svy_cumulated_results_detail.html", TRUE, TRUE, "Modules/Survey");
222 
223  $template->setCurrentBlock("detail_row");
224  $template->setVariable("TEXT_OPTION", $this->lng->txt("question"));
225  $questiontext = $this->object->getQuestiontext();
226  $template->setVariable("TEXT_OPTION_VALUE", $this->object->prepareTextareaOutput($questiontext, TRUE));
227  $template->parseCurrentBlock();
228  $template->setCurrentBlock("detail_row");
229  $template->setVariable("TEXT_OPTION", $this->lng->txt("question_type"));
230  $template->setVariable("TEXT_OPTION_VALUE", $this->lng->txt($this->getQuestionType()));
231  $template->parseCurrentBlock();
232  $template->setCurrentBlock("detail_row");
233  $template->setVariable("TEXT_OPTION", $this->lng->txt("users_answered"));
234  $template->setVariable("TEXT_OPTION_VALUE", $this->cumulated["USERS_ANSWERED"]);
235  $template->parseCurrentBlock();
236  $template->setCurrentBlock("detail_row");
237  $template->setVariable("TEXT_OPTION", $this->lng->txt("users_skipped"));
238  $template->setVariable("TEXT_OPTION_VALUE", $this->cumulated["USERS_SKIPPED"]);
239  $template->parseCurrentBlock();
240 
241  $template->setCurrentBlock("detail_row");
242  $template->setVariable("TEXT_OPTION", $this->lng->txt("given_answers"));
243  $textvalues = "";
244  if (is_array($this->cumulated["textvalues"]))
245  {
246  foreach ($this->cumulated["textvalues"] as $textvalue)
247  {
248  $textvalues .= "<li>" . preg_replace("/\n/", "<br>", $textvalue) . "</li>";
249  }
250  }
251  $textvalues = "<ul>$textvalues</ul>";
252  $template->setVariable("TEXT_OPTION_VALUE", $textvalues);
253  $template->parseCurrentBlock();
254 
255  $template->setVariable("QUESTION_TITLE", "$counter. ".$this->object->getTitle());
256  return $template->get();
257  }
special template class to simplify handling of ITX/PEAR
_getNrOfParticipants($survey_id)
Returns the number of participants for a survey.
+ Here is the call graph for this function:

◆ getPrintView()

SurveyTextQuestionGUI::getPrintView (   $question_title = 1,
  $show_questiontext = 1,
  $survey_id = null 
)

Definition at line 98 of file class.SurveyTextQuestionGUI.php.

References ilUtil\getHtmlPath(), ilUtil\getImagePath(), and SurveyQuestionGUI\outQuestionText().

99  {
100  $template = new ilTemplate("tpl.il_svy_qpl_text_printview.html", TRUE, TRUE, "Modules/SurveyQuestionPool");
101  if ($show_questiontext)
102  {
103  $this->outQuestionText($template);
104  }
105  if ($question_title)
106  {
107  $template->setVariable("QUESTION_TITLE", $this->object->getTitle());
108  }
109  $template->setVariable("TEXT_ANSWER", $this->lng->txt("answer"));
110  $template->setVariable("TEXTBOX_IMAGE", ilUtil::getHtmlPath(ilUtil::getImagePath("textbox.png")));
111  $template->setVariable("TEXTBOX", $this->lng->txt("textbox"));
112  $template->setVariable("TEXTBOX_WIDTH", $this->object->getTextWidth()*16);
113  $template->setVariable("TEXTBOX_HEIGHT", $this->object->getTextHeight()*16);
114  $template->setVariable("QUESTION_ID", $this->object->getId());
115  if ($this->object->getMaxChars())
116  {
117  $template->setVariable("TEXT_MAXCHARS", sprintf($this->lng->txt("text_maximum_chars_allowed"), $this->object->getMaxChars()));
118  }
119  return $template->get();
120  }
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
special template class to simplify handling of ITX/PEAR
static getHtmlPath($relative_path)
get url of path
+ Here is the call graph for this function:

◆ getWorkingForm()

SurveyTextQuestionGUI::getWorkingForm (   $working_data = "",
  $question_title = 1,
  $show_questiontext = 1,
  $error_message = "",
  $survey_id = null 
)

Creates the question output form for the learner.

Definition at line 130 of file class.SurveyTextQuestionGUI.php.

References SurveyQuestionGUI\getMaterialOutput(), SurveyQuestionGUI\outQuestionText(), and ilUtil\prepareFormOutput().

131  {
132  $template = new ilTemplate("tpl.il_svy_out_text.html", TRUE, TRUE, "Modules/SurveyQuestionPool");
133  $template->setCurrentBlock("material_text");
134  $template->setVariable("TEXT_MATERIAL", $this->getMaterialOutput());
135  $template->parseCurrentBlock();
136 
137  if ($this->object->getTextHeight() == 1)
138  {
139  $template->setCurrentBlock("textinput");
140  if (is_array($working_data))
141  {
142  if (strlen($working_data[0]["textanswer"]))
143  {
144  $template->setVariable("VALUE_ANSWER", " value=\"" . ilUtil::prepareFormOutput($working_data[0]["textanswer"]) . "\"");
145  }
146  }
147  $template->setVariable("QUESTION_ID", $this->object->getId());
148  $template->setVariable("WIDTH", $this->object->getTextWidth());
149  if ($this->object->getMaxChars())
150  {
151  $template->setVariable("MAXLENGTH", " maxlength=\"" . $this->object->getMaxChars() . "\"");
152  }
153  $template->parseCurrentBlock();
154  }
155  else
156  {
157  $template->setCurrentBlock("textarea");
158  if (is_array($working_data))
159  {
160  $template->setVariable("VALUE_ANSWER", ilUtil::prepareFormOutput($working_data[0]["textanswer"]));
161  }
162  $template->setVariable("QUESTION_ID", $this->object->getId());
163  $template->setVariable("WIDTH", $this->object->getTextWidth());
164  $template->setVariable("HEIGHT", $this->object->getTextHeight());
165  $template->parseCurrentBlock();
166  }
167  $template->setCurrentBlock("question_data_text");
168  if ($show_questiontext)
169  {
170  $this->outQuestionText($template);
171  }
172  if ($question_title)
173  {
174  $template->setVariable("QUESTION_TITLE", $this->object->getTitle());
175  }
176  $template->setVariable("TEXT_ANSWER", $this->lng->txt("answer"));
177  $template->setVariable("LABEL_QUESTION_ID", $this->object->getId());
178  if (strcmp($error_message, "") != 0)
179  {
180  $template->setVariable("ERROR_MESSAGE", "<p class=\"warning\">$error_message</p>");
181  }
182  if ($this->object->getMaxChars())
183  {
184  $template->setVariable("TEXT_MAXCHARS", sprintf($this->lng->txt("text_maximum_chars_allowed"), $this->object->getMaxChars()));
185  }
186  $template->parseCurrentBlock();
187  return $template->get();
188  }
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
getMaterialOutput()
Creates the HTML output of the question material(s)
special template class to simplify handling of ITX/PEAR
+ Here is the call graph for this function:

◆ importEditFormValues()

SurveyTextQuestionGUI::importEditFormValues ( ilPropertyFormGUI  $a_form)
protected

Definition at line 90 of file class.SurveyTextQuestionGUI.php.

References ilPropertyFormGUI\getInput().

91  {
92  $max = $a_form->getInput("maxchars");
93  $this->object->setMaxChars(strlen($max) ? $max : null);
94  $this->object->setTextWidth($a_form->getInput("textwidth"));
95  $this->object->setTextHeight($a_form->getInput("textheight"));
96  }
getInput($a_post_var, $ensureValidation=true)
Returns the value of a HTTP-POST variable, identified by the passed id.
+ Here is the call graph for this function:

◆ initObject()

SurveyTextQuestionGUI::initObject ( )
protected

Definition at line 39 of file class.SurveyTextQuestionGUI.php.

40  {
41  include_once "./Modules/SurveyQuestionPool/classes/class.SurveyTextQuestion.php";
42  $this->object = new SurveyTextQuestion();
43  }
Text survey question.

◆ setQuestionTabs()

SurveyTextQuestionGUI::setQuestionTabs ( )

Definition at line 50 of file class.SurveyTextQuestionGUI.php.

References SurveyQuestionGUI\setQuestionTabsForClass().

51  {
52  $this->setQuestionTabsForClass("surveytextquestiongui");
53  }
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: