docker dev update
[openemr.git] / library / classes / ConfigTree.class.php
blob4df96fa8cbfeb5d4af215915e1a69501cdf27cc0
1 <?php
4 /**
5 * class CategoryTree
6 * This is a class for storing general config using the MPTT implementation
7 */
9 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)
17 $this->_table = "config";
18 parent::__construct($root, $root_type);