removing parent property from taxonomies
This commit is contained in:
parent
8b8ff5e400
commit
b201c4ba17
|
@ -84,15 +84,6 @@ class Taxonomy extends Entity {
|
|||
return $this->get_mapped_property('name');
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the parent id
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
function get_parent() {
|
||||
return $this->get_mapped_property('parent');
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the description
|
||||
*
|
||||
|
@ -142,14 +133,6 @@ class Taxonomy extends Entity {
|
|||
$this->set_mapped_property('name', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the parent ID
|
||||
*
|
||||
* @param [integer] $value
|
||||
*/
|
||||
function set_parent($value) {
|
||||
$this->set_mapped_property('parent', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the slug
|
||||
|
|
Loading…
Reference in New Issue