reformat initial comment block.
[openemr.git] / library / classes / ConfigTree.class.php
blob5edd4bf5769c2cf16a30b8ca2d9eb60d0902f812
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 ConfigTree($root,$root_type = ROOT_TYPE_ID) {
16 $this->_table = "config";
17 parent::Tree($root,$root_type);