39 string $a_postvar =
"" 43 $this->
lng = $DIC->language();
44 $this->tpl = $DIC[
"tpl"];
45 $lng = $DIC->language();
49 $this->show_wizard =
false;
50 $this->show_save_phrase =
false;
51 $this->categorytext =
$lng->
txt(
'answer');
52 $this->use_other_answer =
false;
64 $this->use_other_answer = $a_value;
69 if (!is_object($this->values)) {
72 return $this->values->getCategoryCount();
77 if (is_object($this->values)) {
79 for (
$i = 0;
$i < $this->values->getCategoryCount();
$i++) {
80 $cat = $this->values->getCategory(
$i);
81 if ($cat->neutral == 0) {
93 $this->show_neutral_category = $a_value;
103 $this->neutral_category_title = $a_title;
117 if (is_array($a_value)) {
118 if (is_array($a_value[
'answer'])) {
120 $this->values->addCategory(
$value, $a_value[
'other'][
$index] ?? 0, 0, null, $a_value[
'scale'][$index] ?? null);
124 if (array_key_exists(
'neutral', $a_value)) {
125 $scale = $this->
str($this->postvar .
'_neutral_scale');
126 $scale = ($scale ===
"")
129 $this->values->addCategory(
141 $this->values = $a_values;
151 $this->allowMove = $a_allow_move;
161 $this->show_wizard = $a_value;
171 $this->categorytext = $a_text;
181 $this->show_save_phrase = $a_value;
196 $this->disabled_scale = $a_value;
206 if (count($foundvalues) > 0) {
208 if (is_array($foundvalues[
'answer'] ??
false)) {
209 foreach ($foundvalues[
'answer'] as $idx => $answervalue) {
210 if (((strlen($answervalue)) == 0) && ($this->
getRequired() && (!isset($foundvalues[
'other'][$idx])))) {
225 if (isset($foundvalues[
'scale'])) {
226 foreach ($foundvalues[
'scale'] as $scale) {
228 if ((strlen($scale)) == 0) {
233 if (!ctype_digit($scale) || $scale <= 0) {
239 if (count(array_unique($foundvalues[
'scale'])) !== count($foundvalues[
'scale'])) {
246 if ($neutral_scale !=
"") {
247 if (isset($foundvalues[
'scale'])) {
248 if (in_array($neutral_scale, $foundvalues[
'scale'])) {
276 return $val[
"neutral"];
284 $neutral_category = null;
285 $tpl =
new ilTemplate(
"tpl.prop_categorywizardinput.html",
true,
true,
"Modules/SurveyQuestionPool");
286 if (is_object($this->values)) {
287 for (
$i = 0;
$i < $this->values->getCategoryCount();
$i++) {
288 $cat = $this->values->getCategory(
$i);
289 if (!$cat->neutral) {
306 $tpl->
setVariable(
"CHECKED_OTHER",
' checked="checked"');
328 $tpl->
setVariable(
"DISABLED",
" disabled=\"disabled\"");
333 $tpl->
setVariable(
"DISABLED_SCALE",
" disabled=\"disabled\"");
342 $neutral_category = $cat;
363 if (is_object($neutral_category) && strlen($neutral_category->title)) {
381 $scale = (is_object($neutral_category) && $neutral_category->scale > 0) ? $neutral_category->scale : $this->values->getNewScale();
395 $tpl->
setVariable(
"DISABLED",
" disabled=\"disabled\"");
399 $tpl->
setVariable(
"DISABLED_SCALE",
" disabled=\"disabled\"");
420 $tpl->
addJavaScript(
"./Services/Form/js/ServiceFormWizardInput.js");
421 $tpl->
addJavaScript(
"./Modules/SurveyQuestionPool/Categories/js/categorywizard.js");
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static stripSlashesRecursive($a_data, bool $a_strip_html=true, string $a_allow="")
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static get(string $a_glyph, string $a_text="")
touchBlock(string $block)
overwrites ITX::touchBlock.
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVariable($variable, $value='')
Sets a variable value.
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setMaxLength(?int $a_maxlength)
__construct(Container $dic, ilPlugin $plugin)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.