3 require_once("Tree.class.php");
7 * This is a class for storing general config using the MPTT implementation
10 class ConfigTree
extends Tree
{
13 * This just sits on top of the parent constructor, only a shell so that the _table var gets set
15 function ConfigTree($root,$root_type = ROOT_TYPE_ID
) {
16 $this->_table
= "config";
17 parent
::Tree($root,$root_type);