From: hickert Date: Mon, 10 May 2010 13:06:58 +0000 (+0000) Subject: Added storage RDN properties. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4052a5ba47e413133b01dc7b85da2e246c3d6d35;p=gosa.git Added storage RDN properties. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18258 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/gofax/gofax/blocklists/class_blocklistGeneric.inc b/gosa-plugins/gofax/gofax/blocklists/class_blocklistGeneric.inc index e3bc97628..05c41436d 100644 --- a/gosa-plugins/gofax/gofax/blocklists/class_blocklistGeneric.inc +++ b/gosa-plugins/gofax/gofax/blocklists/class_blocklistGeneric.inc @@ -369,16 +369,30 @@ class blocklistGeneric extends plugin /* Return plugin informations for acl handling */ static function plInfo() { - return (array( - "plShortName" => _("Fax"), - "plDescription" => _("Fax blocklists"), - "plSelfModify" => FALSE, - "plDepends" => array(), - - "plPriority" => 0, - "plSection" => array("administration" => _("Fax blocklists")), - "plCategory" => array("gofaxlist" => array("description" => _("Fax blocklists"), - "objectClass" => array("goFaxRBlock","goFaxSBlock"))), + return (array( + "plShortName" => _("Fax"), + "plDescription" => _("Fax blocklists"), + "plSelfModify" => FALSE, + "plDepends" => array(), + + "plPriority" => 0, + "plSection" => array("administration" => _("Fax blocklists")), + "plCategory" => array("gofaxlist" => array("description" => _("Fax blocklists"), + "objectClass" => array("goFaxRBlock","goFaxSBlock"))), + "plProperties" => + array( + array( + "name" => "faxBlocklistRDN", + "type" => "rdn", + "default" => "ou=gofax,ou=systems,", + "description" => "The 'faxBlocklistRDN' statement defines the location where new blocklists will be created. The default is 'ou=gofax,ou=systems,'.", + "check" => "gosaProperty::isRdn", + "migrate" => "", + "group" => "plugin", + "mandatory" => FALSE + ) + ), + "plProvidedAcls" => array( "cn" => _("Name"), "description" => _("Description"),