23 include_once
"Modules/SurveyQuestionPool/classes/class.ilSurveyCategory.php";
52 $this->categories = array();
66 return count($this->categories);
81 if (array_key_exists($position, $this->categories))
83 $head = array_slice($this->categories, 0, $position);
84 $tail = array_slice($this->categories, $position);
85 $this->categories = array_merge($head, array(
new ilSurveyCategory($categoryname, $other, $neutral, $label)), $tail);
89 array_push($this->categories,
new ilSurveyCategory($categoryname, $other, $neutral, $label));
97 $temp = $this->categories[$index-1];
98 $this->categories[$index - 1] = $this->categories[$index];
99 $this->categories[$index] = $temp;
105 if ($index < (count($this->categories)-1))
107 $temp = $this->categories[$index+1];
108 $this->categories[$index + 1] = $this->categories[$index];
109 $this->categories[$index] = $temp;
122 function addCategory($categoryname, $other = 0, $neutral = 0, $label = null, $scale = null)
124 array_push($this->categories,
new ilSurveyCategory($categoryname, $other, $neutral, $label, $scale));
138 $this->categories = array_merge($this->categories, $categories);
152 unset($this->categories[$index]);
153 $this->categories = array_values($this->categories);
167 foreach ($array as $index)
169 unset($this->categories[$index]);
171 $this->categories = array_values($this->categories);
185 foreach ($this->categories as $index => $category)
187 if (strcmp($category->title, $name) == 0)
207 if (array_key_exists($index, $this->categories))
209 return $this->categories[$index];
225 foreach ($this->categories as $cat)
227 if ($cat->scale == $scale)
return $cat;
241 foreach ($this->categories as $index => $category)
243 if (strcmp($category->title, $name) == 0)
260 foreach ($this->categories as $index => $cat)
262 if ($cat == $category)
273 foreach ($this->categories as $index => $category)
275 if (is_object($category) && $category->scale > 0)
277 if ($category->scale > $max) $max = $category->scale;
285 $obj = $this->categories[$index];
286 if (is_object($obj) && $obj->scale > 0)
307 $this->categories = array();
getCategory($index)
Returns the name of a category for a given index.
getCategoryIndex($name)
Returns the index of a category with a given name.
getCategoryCount()
Returns the number of categories.
getIndex($category)
Returns the index of a category.
removeCategory($index)
Removes a category from the list of categories.
getCategoryForScale($scale)
Returns the name of a category for a given index.
addCategoryArray($categories)
Adds a category array.
removeCategoryWithName($name)
Removes a category from the list of categories.
addCategory($categoryname, $other=0, $neutral=0, $label=null, $scale=null)
Adds a category.
flushCategories()
Empties the categories list.
removeCategories($array)
Removes many categories from the list of categories.
addCategoryAtPosition($categoryname, $position, $other=0, $neutral=0, $label=null)
Adds a category at a given position.
SurveyCategories()
Constructor public.