}
}
- function move() {
- }
-
function getId() {
return $this->categoryId;
}
}
}
- function & getLabels() {
+ function &getLabels() {
if(!isset($this->labels)) {
$this->labels = array();
$res = db_query_params("SELECT trove_category_labels.*, supported_languages.name AS language_name FROM trove_category_labels, supported_languages
return $this->labels;
}
- function & getParents() {
+ function &getParents() {
return $this->parents;
}
- function & getChildren() {
+ function &getChildren() {
if(!isset($this->children)) {
$this->children = array();
return $this->children;
}
- function getRootCategory() {
- }
-
function getRootParentId() {
return $this->dataArray['root_parent'];
}
return $result;
}
- function addProject() {
- }
-
- function removeProject() {
- }
-
}
?>