56 $this->lng = $DIC->language();
57 $this->tpl = $DIC[
"tpl"];
58 $lng = $DIC->language();
62 $this->show_wizard =
false;
63 $this->show_save_phrase =
false;
64 $this->categorytext =
$lng->txt(
'row_text');
65 $this->use_other_answer =
false;
77 $this->use_other_answer = ($a_value) ?
true :
false;
88 if (is_array($a_value)) {
89 if (is_array($a_value[
'answer'])) {
91 $this->values->addCategory(
$value, $a_value[
'other'][
$index]);
104 $this->values = $a_values;
124 $this->allowMove = $a_allow_move;
139 $this->show_wizard = $a_value;
149 $this->categorytext = $a_text;
159 $this->labeltext = $a_text;
169 $this->show_save_phrase = $a_value;
189 if (is_array($foundvalues)) {
191 if (is_array($foundvalues[
'answer'])) {
192 foreach ($foundvalues[
'answer'] as $idx => $answervalue) {
193 if (((strlen($answervalue)) == 0) && ($this->
getRequired() && (!$foundvalues[
'other'][$idx]))) {
216 $tpl =
new ilTemplate(
"tpl.prop_matrixrowwizardinput.html",
true,
true,
"Modules/SurveyQuestionPool");
218 if (is_object($this->values)) {
219 for (
$i = 0;
$i < $this->values->getCategoryCount();
$i++) {
220 $cat = $this->values->getCategory(
$i);
221 $tpl->setCurrentBlock(
"prop_text_propval");
223 $tpl->parseCurrentBlock();
224 $tpl->setCurrentBlock(
"prop_label_propval");
226 $tpl->parseCurrentBlock();
229 $tpl->setCurrentBlock(
"other_answer_checkbox");
231 $tpl->setVariable(
"OTHER_ID", $this->
getPostVar() .
"[other][$i]");
232 $tpl->setVariable(
"ROW_NUMBER",
$i);
234 $tpl->setVariable(
"CHECKED_OTHER",
' checked="checked"');
236 $tpl->parseCurrentBlock();
240 $tpl->setCurrentBlock(
"move");
241 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
242 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
246 $tpl->parseCurrentBlock();
249 $tpl->setCurrentBlock(
"row");
251 $tpl->setVariable(
"ROW_NUMBER",
$i);
253 $tpl->setVariable(
"ID_LABEL", $this->
getPostVar() .
"[label][$i]");
255 $tpl->setVariable(
"SIZE_LABEL", 15);
258 $tpl->setVariable(
"DISABLED",
" disabled=\"disabled\"");
259 $tpl->setVariable(
"DISABLED_LABEL",
" disabled=\"disabled\"");
262 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
263 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
266 $tpl->parseCurrentBlock();
271 $tpl->setCurrentBlock(
"wizard");
272 $tpl->setVariable(
"CMD_WIZARD",
'cmd[wizard' . $this->
getFieldId() .
']');
274 $tpl->setVariable(
"WIZARD_TEXT",
$lng->txt(
'add_phrase'));
275 $tpl->parseCurrentBlock();
279 $tpl->setCurrentBlock(
'savephrase');
281 $tpl->setVariable(
"VALUE_SAVE_PHRASE",
$lng->txt(
'save_phrase'));
282 $tpl->parseCurrentBlock();
286 $tpl->setCurrentBlock(
'other_answer_title');
287 $tpl->setVariable(
"OTHER_TEXT",
$lng->txt(
'use_other_answer'));
288 $tpl->parseCurrentBlock();
294 $tpl->setVariable(
"ACTIONS_TEXT",
$lng->txt(
'actions'));
296 $a_tpl->setCurrentBlock(
"prop_generic");
297 $a_tpl->setVariable(
"PROP_GENERIC",
$tpl->get());
298 $a_tpl->parseCurrentBlock();
301 $tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
302 $tpl->addJavascript(
"./Modules/SurveyQuestionPool/templates/default/matrixrowwizard.js");
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
getMaxLength()
Get Max Length.
static get($a_glyph, $a_text="")
Get glyph html.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
setMaxLength($a_maxlength)
Set Max Length.
__construct(Container $dic, ilPlugin $plugin)