From 7d9b32f029d8adc9eb08c8b881b6d38ac033ed61 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 17 Jul 2006 06:23:36 +0000 Subject: [PATCH] add fax acls git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4168 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../blocklists/class_blocklistManagement.inc | 20 ++++++++++++++----- plugins/gofax/faxreports/class_faxreport.inc | 16 +++++++++++---- 2 files changed, 27 insertions(+), 9 deletions(-) diff --git a/plugins/gofax/blocklists/class_blocklistManagement.inc b/plugins/gofax/blocklists/class_blocklistManagement.inc index 311984add..ec4a64029 100644 --- a/plugins/gofax/blocklists/class_blocklistManagement.inc +++ b/plugins/gofax/blocklists/class_blocklistManagement.inc @@ -560,13 +560,23 @@ class blocklist extends plugin function plInfo() { return (array( + "plShortName" => _("Fay"), "plDescription" => _("Fax Blocklists"), "plSelfModify" => TRUE, - "plDepends" => array("objectClass" => "goFaxSBlock", "description"=> _("FAX")), - "cn" => _("Name"), - "description" => _("Description"), - "base" => _("Base"), - "type" => _("Blocklist type"))); + "plDepends" => array(), + + "plPriority" => 0, + "plSection" => array("blocklists" => _("FAX Blocklists")), + "plCategory" => array("goFaxRBlock" => _("Blocklists")), + + + + "plProvidedAcls" => array( + "cn" => _("Name"), + "description" => _("Description"), + "base" => _("Base"), + "type" => _("Blocklist type")) + )); } } diff --git a/plugins/gofax/faxreports/class_faxreport.inc b/plugins/gofax/faxreports/class_faxreport.inc index 588804599..47bc4d79e 100644 --- a/plugins/gofax/faxreports/class_faxreport.inc +++ b/plugins/gofax/faxreports/class_faxreport.inc @@ -383,10 +383,18 @@ class faxreport extends plugin function plInfo() { return (array( - "plDescription" => _("Fax reports"), - "plSelfModify" => TRUE, - "plDepends" => array("objectClass" => "goFaxSBlock"), - "connectivity" => "!!! FIXME "._("Fax reports"))); + "plShortName" => _("Fax report"), + "plDescription" => _("Fax report"), + "plSelfModify" => TRUE, + "plDepends" => array(), + "plPriority" => 1, // Position in tabs + "plSection" => "FAX Reports", // This belongs to personal + "plCategory" => array("fax"), + "plOptions" => array(), + + "plProvidedAcls" => array( + "detailedView" => _("Detailed view")) + )); } } -- 2.30.2