58 $this->lng = $DIC->language();
59 $this->tpl = $DIC[
"tpl"];
60 $lng = $DIC->language();
64 $this->show_wizard =
false;
65 $this->show_save_phrase =
false;
66 $this->categorytext =
$lng->txt(
'answer');
67 $this->use_other_answer =
false;
79 $this->use_other_answer = ($a_value) ?
true :
false;
84 if (!is_object($this->values)) {
87 return $this->values->getCategoryCount();
92 if (is_object($this->values)) {
94 for (
$i = 0;
$i < $this->values->getCategoryCount();
$i++) {
95 $cat = $this->values->getCategory(
$i);
96 if ($cat->neutral == 0) {
108 $this->show_neutral_category = $a_value;
118 $this->neutral_category_title = $a_title;
134 if (is_array($a_value)) {
135 if (is_array($a_value[
'answer'])) {
137 $this->values->addCategory(
$value, $a_value[
'other'][
$index], null, null, $a_value[
'scale'][$index]);
141 if (array_key_exists(
'neutral', $a_value)) {
142 $this->values->addCategory($a_value[
'neutral'], 0, 1, null,
$_POST[$this->postvar .
'_neutral_scale']);
153 $this->values = $a_values;
173 $this->allowMove = $a_allow_move;
188 $this->show_wizard = $a_value;
198 $this->categorytext = $a_text;
208 $this->show_save_phrase = $a_value;
223 $this->disabled_scale = $a_value;
238 if (is_array($foundvalues)) {
240 if (is_array($foundvalues[
'answer'])) {
241 foreach ($foundvalues[
'answer'] as $idx => $answervalue) {
242 if (((strlen($answervalue)) == 0) && ($this->
getRequired() && (!$foundvalues[
'other'][$idx]))) {
249 if (array_key_exists(
'neutral', $foundvalues)) {
250 if ((strlen($foundvalues[
'neutral']) == 0) && ($this->getRequired)) {
256 if (is_array($foundvalues[
'scale'])) {
257 foreach ($foundvalues[
'scale'] as $scale) {
259 if ((strlen($scale)) == 0) {
264 if (!ctype_digit($scale) || $scale <= 0) {
265 $this->
setAlert(
$lng->txt(
"msg_input_only_positive_numbers"));
270 if (count(array_unique($foundvalues[
'scale'])) != count($foundvalues[
'scale'])) {
277 if (strlen(
$_POST[$this->postvar .
'_neutral_scale'])) {
278 if (is_array($foundvalues[
'scale'])) {
279 if (in_array(
$_POST[$this->postvar .
'_neutral_scale'], $foundvalues[
'scale'])) {
301 $neutral_category = null;
302 $tpl =
new ilTemplate(
"tpl.prop_categorywizardinput.html",
true,
true,
"Modules/SurveyQuestionPool");
304 if (is_object($this->values)) {
305 for (
$i = 0;
$i < $this->values->getCategoryCount();
$i++) {
306 $cat = $this->values->getCategory(
$i);
307 if (!$cat->neutral) {
308 $tpl->setCurrentBlock(
"prop_text_propval");
310 $tpl->parseCurrentBlock();
311 $tpl->setCurrentBlock(
"prop_scale_propval");
313 $tpl->parseCurrentBlock();
316 $tpl->setCurrentBlock(
"other_answer_checkbox");
318 $tpl->setVariable(
"OTHER_ID", $this->
getPostVar() .
"[other][$i]");
319 $tpl->setVariable(
"ROW_NUMBER",
$i);
321 $tpl->setVariable(
"CHECKED_OTHER",
' checked="checked"');
323 $tpl->parseCurrentBlock();
327 $tpl->setCurrentBlock(
"move");
328 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
329 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
333 $tpl->parseCurrentBlock();
336 $tpl->setCurrentBlock(
"row");
338 $tpl->setVariable(
"ROW_NUMBER",
$i);
343 $tpl->setVariable(
"DISABLED",
" disabled=\"disabled\"");
346 $tpl->setVariable(
"SCALE_ID", $this->
getPostVar() .
"[scale][$i]");
348 $tpl->setVariable(
"DISABLED_SCALE",
" disabled=\"disabled\"");
351 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
352 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
355 $tpl->parseCurrentBlock();
357 $neutral_category = $cat;
363 $tpl->setCurrentBlock(
"wizard");
364 $tpl->setVariable(
"CMD_WIZARD",
'cmd[addPhrase]');
366 $tpl->setVariable(
"WIZARD_TEXT",
$lng->txt(
'add_phrase'));
367 $tpl->parseCurrentBlock();
371 $tpl->setCurrentBlock(
'savephrase');
373 $tpl->setVariable(
"VALUE_SAVE_PHRASE",
$lng->txt(
'save_phrase'));
374 $tpl->parseCurrentBlock();
378 if (is_object($neutral_category) && strlen($neutral_category->title)) {
379 $tpl->setCurrentBlock(
"prop_text_neutral_propval");
381 $tpl->parseCurrentBlock();
384 $tpl->setCurrentBlock(
"neutral_category_title");
387 $tpl->parseCurrentBlock();
389 $tpl->setCurrentBlock(
"prop_scale_neutral_propval");
390 $scale = ($neutral_category->scale > 0) ? $neutral_category->scale : $this->values->getNewScale();
392 $tpl->parseCurrentBlock();
395 $tpl->touchBlock(
'other_answer_neutral');
398 $tpl->setCurrentBlock(
'neutral_row');
404 $tpl->setVariable(
"DISABLED",
" disabled=\"disabled\"");
406 $tpl->setVariable(
"SCALE_ID", $this->
getPostVar() .
"_neutral_scale");
408 $tpl->setVariable(
"DISABLED_SCALE",
" disabled=\"disabled\"");
410 $tpl->parseCurrentBlock();
414 $tpl->setCurrentBlock(
'other_answer_title');
415 $tpl->setVariable(
"OTHER_TEXT",
$lng->txt(
'use_other_answer'));
416 $tpl->parseCurrentBlock();
421 $tpl->setVariable(
"SCALE_TEXT",
$lng->txt(
'scale'));
422 $tpl->setVariable(
"ACTIONS_TEXT",
$lng->txt(
'actions'));
424 $a_tpl->setCurrentBlock(
"prop_generic");
425 $a_tpl->setVariable(
"PROP_GENERIC",
$tpl->get());
426 $a_tpl->parseCurrentBlock();
429 $tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
430 $tpl->addJavascript(
"./Modules/SurveyQuestionPool/templates/default/categorywizard.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)