Code

Updated getter method of gosaProperty
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 4 May 2010 13:47:11 +0000 (13:47 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 4 May 2010 13:47:11 +0000 (13:47 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18044 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_configRegistry.inc

index 357075acc89912ffe5f54208220df6babdce1aa2..416865203d7a8e2957b7606c9ee563207585c981 100644 (file)
@@ -210,6 +210,8 @@ class gosaProperty
     }
 
     function getValue() { return($this->value); }
+    function getMigrate() { return($this->migrate); }
+    function getCheck() { return($this->check); }
     function getName() { return($this->name); }
     function getClass() { return($this->class); }
     function getGroup() { return($this->group); }
@@ -217,6 +219,7 @@ class gosaProperty
     function getDescription() { return($this->description); }
     function getDefault() { return($this->default); }
     function getStatus() { return($this->status); }
+    function isMandatory() { return($this->mandatory); }
 
     function setValue($str) 
     {