Code

Added storage RDN properties.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 10 May 2010 13:06:40 +0000 (13:06 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 10 May 2010 13:06:40 +0000 (13:06 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18251 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/systems/admin/systems/class_systemManagement.inc

index b8024bc87875185f5341fa070b4915c2b3cf4ee4..d6934e9e2507e86073ba72418f22c5d5560d00f7 100644 (file)
@@ -1417,17 +1417,33 @@ class systemManagement extends management
    */
   static function plInfo()
   {
-    return (array(
-          "plShortName"   => _("Incoming objects"),
-          "plDescription" => _("Incoming objects"),
-          "plSelfModify"  => FALSE,
-          "plDepends"     => array(),
-          "plPriority"    => 99,
-          "plSection"     => array("administration"),
+      return (array(
+                  "plShortName"   => _("Incoming objects"),
+                  "plDescription" => _("Incoming objects"),
+                  "plSelfModify"  => FALSE,
+                  "plDepends"     => array(),
+                  "plPriority"    => 99,
+                  "plSection"     => array("administration"),
+
+                  "plProperties" =>
+                  array(
+                      array(
+                          "name"          => "systemRDN",
+                          "type"          => "rdn",
+                          "default"       => "ou=systems,",
+                          "description"   => "The 'systemRDN' statement defines the location where new systems will be created. The default is 'ou=systems,'.",
+                          "check"         => "gosaProperty::isRdn",
+                          "migrate"       => "",
+                          "group"         => "plugin",
+                          "mandatory"     => FALSE
+                          )
+                      ),
+
+
           "plCategory"    => array("incoming"   => array( "description"  => _("Incoming"),
-              "objectClass"  => "")),
+                      "objectClass"  => "")),
           "plProvidedAcls"=> array()
-          ));
+              ));
   }
 } 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: