summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0554f32)
raw | patch | inline | side by side (parent: 0554f32)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 17 Jul 2006 06:23:36 +0000 (06:23 +0000) | ||
committer | hickert <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 | patch | blob | history | |
plugins/gofax/faxreports/class_faxreport.inc | patch | blob | history |
diff --git a/plugins/gofax/blocklists/class_blocklistManagement.inc b/plugins/gofax/blocklists/class_blocklistManagement.inc
index 311984addaf7fd1bbe7b2ea4d98ce8ec4466e7ae..ec4a64029958f0eb6272e4fe87288c1cc10235a6 100644 (file)
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 588804599474a3323ee050bdfd601a484466e646..47bc4d79eef2cb0156e29805c711c12cf88e4848 100644 (file)
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"))
+ ));
}
}