From 6fede8646a0a9a7094d64f371b992814b72f6c65 Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 4 May 2010 10:33:55 +0000 Subject: [PATCH] Added group attribute to properties git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18035 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_configRegistry.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc index 1b9cacde2..b05953e3d 100644 --- a/gosa-core/include/class_configRegistry.inc +++ b/gosa-core/include/class_configRegistry.inc @@ -165,6 +165,7 @@ class gosaProperty protected $check = ""; protected $migrate = ""; protected $mandatory = FALSE; + protected $group = "default"; protected $parent = NULL; protected $data = array(); @@ -177,7 +178,7 @@ class gosaProperty protected $status = 'undefined'; protected $attributes = array('name','type','default','description','check', - 'migrate','mandatory'); + 'migrate','mandatory','group'); function __construct($parent,$classname,$data) { @@ -214,6 +215,7 @@ class gosaProperty 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); } -- 2.30.2