removed unused css classes
[openemr.git] / library / classes / ConfigTree.class.php
blob807c9853503f4f0bfb371087600ccc76c8456857
1 <?php
3 require_once("Tree.class.php");
5 /**
6 * class CategoryTree
7 * This is a class for storing general config using the MPTT implementation
8 */
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 __construct($root,$root_type = ROOT_TYPE_ID) {
16 $this->_table = "config";
17 parent::__construct($root,$root_type);