Code

add fax acls
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 17 Jul 2006 06:23:36 +0000 (06:23 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 17 Jul 2006 06:23:36 +0000 (06:23 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4168 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/gofax/blocklists/class_blocklistManagement.inc
plugins/gofax/faxreports/class_faxreport.inc

index 311984addaf7fd1bbe7b2ea4d98ce8ec4466e7ae..ec4a64029958f0eb6272e4fe87288c1cc10235a6 100644 (file)
@@ -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"))
+          ));
   }
 
 }
index 588804599474a3323ee050bdfd601a484466e646..47bc4d79eef2cb0156e29805c711c12cf88e4848 100644 (file)
@@ -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"))
+          ));
   }
 
 }