From: hickert Date: Mon, 10 May 2010 13:06:40 +0000 (+0000) Subject: Added storage RDN properties. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c72bc137a3758336f4ec9013c0dd5d39d162357e;p=gosa.git Added storage RDN properties. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18251 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/systems/admin/systems/class_systemManagement.inc b/gosa-plugins/systems/admin/systems/class_systemManagement.inc index b8024bc87..d6934e9e2 100644 --- a/gosa-plugins/systems/admin/systems/class_systemManagement.inc +++ b/gosa-plugins/systems/admin/systems/class_systemManagement.inc @@ -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: