35 $this->categories = array();
41 return count($this->categories);
55 if (array_key_exists($position, $this->categories)) {
56 $head = array_slice($this->categories, 0, $position);
57 $tail = array_slice($this->categories, $position);
58 $this->categories = array_merge($head, array(
new ilSurveyCategory($categoryname, $other, $neutral, $label)), $tail);
60 $this->categories[] =
new ilSurveyCategory($categoryname, $other, $neutral, $label);
67 $temp = $this->categories[$index - 1];
68 $this->categories[$index - 1] = $this->categories[
$index];
69 $this->categories[
$index] = $temp;
75 if ($index < (count($this->categories) - 1)) {
76 $temp = $this->categories[$index + 1];
77 $this->categories[$index + 1] = $this->categories[
$index];
78 $this->categories[
$index] = $temp;
86 ?
string $label = null,
89 $this->categories[] =
new ilSurveyCategory($categoryname, $other, $neutral, $label, $scale);
97 $this->categories = array_merge($this->categories, $categories);
102 unset($this->categories[$index]);
103 $this->categories = array_values($this->categories);
111 foreach ($array as
$index) {
112 unset($this->categories[$index]);
114 $this->categories = array_values($this->categories);
120 foreach ($this->categories as
$index => $category) {
121 if (strcmp($category->title, $name) == 0) {
131 return $this->categories[
$index] ?? null;
137 foreach ($this->categories as $cat) {
138 if ($cat->scale == $scale) {
148 foreach ($this->categories as
$index => $category) {
149 if (strcmp($category->title, $name) == 0) {
158 foreach ($this->categories as
$index => $cat) {
159 if ($cat == $category) {
169 foreach ($this->categories as
$index => $category) {
170 if (is_object($category) && $category->scale > 0) {
171 if ($category->scale > $max) {
172 $max = $category->scale;
183 $obj = $this->categories[
$index];
184 if (is_object($obj) && $obj->scale > 0) {
185 $this->log->debug(
"getScale has scale =" . $obj->scale);
188 $this->log->debug(
"getScale needed new scale, scale =" . $obj->scale);
195 $this->categories = array();
static getLogger(string $a_component_id)
Get component logger.
removeCategory(int $index)
removeCategoryWithName(string $name)
addCategory(string $categoryname, int $other=0, int $neutral=0, ?string $label=null, ?int $scale=null)
removeCategories(array $array)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCategoryIndex(string $name)
array $categories
An array containing the categories of a nominal or ordinal question object.
moveCategoryDown(int $index)
addCategoryAtPosition(string $categoryname, int $position, int $other=0, int $neutral=0, ?string $label=null)
Adds a category at a given position.
moveCategoryUp(int $index)
getCategoryForScale(int $scale)
addCategoryArray(array $categories)
getIndex(ilSurveyCategory $category)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...