summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d1d908b)
raw | patch | inline | side by side (parent: d1d908b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 May 2010 10:33:55 +0000 (10:33 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 May 2010 10:33:55 +0000 (10:33 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18035 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_configRegistry.inc | patch | blob | history |
diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc
index 1b9cacde23e74fe6491f13dbd8122f78f09c2a7b..b05953e3d0d8cf38c2b31b0792394cc8499612c8 100644 (file)
protected $check = "";
protected $migrate = "";
protected $mandatory = FALSE;
+ protected $group = "default";
protected $parent = NULL;
protected $data = array();
protected $status = 'undefined';
protected $attributes = array('name','type','default','description','check',
- 'migrate','mandatory');
+ 'migrate','mandatory','group');
function __construct($parent,$classname,$data)
{
function getValue() { return($this->value); }
function getName() { return($this->name); }
function getClass() { return($this->class); }
+ function getGroup() { return($this->group); }
function getType() { return($this->type); }
function getDescription() { return($this->description); }
function getDefault() { return($this->default); }