/** * Get all the ID's for the child topics * @return array $ret All the child topics in an array **/ function getAllChildTopicsId() { $xt = new icms_view_Tree($this->table, "topic_id", "topic_pid"); $ret = $xt->getAllChildId($this->topic_id, "topic_title"); return $ret; }
public function __construct($table_name, $id_name, $pid_name) { parent::__construct($table_name, $id_name, $pid_name); $this->_deprecated = icms_core_Debug::setDeprecated('icms_view_Tree', sprintf(_CORE_REMOVE_IN_VERSION, '1.4')); }