Code

Added group attribute to properties
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 4 May 2010 10:33:55 +0000 (10:33 +0000)
committerhickert <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

index 1b9cacde23e74fe6491f13dbd8122f78f09c2a7b..b05953e3d0d8cf38c2b31b0792394cc8499612c8 100644 (file)
@@ -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); }