summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d8b0c96)
raw | patch | inline | side by side (parent: d8b0c96)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 6 Feb 2009 15:53:46 +0000 (15:53 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 6 Feb 2009 15:53:46 +0000 (15:53 +0000) |
-Added dummy class, to seperate real and addressbook entries
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13403 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13403 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc | patch | blob | history |
diff --git a/gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc b/gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc
index c4d7e393fc05fed47bdcfd9fcd6d42fc45d9a850..c72d7461782ccb313950884e30dcf90bd8e9eb46 100644 (file)
<?php
+
+class addressbook_internal extends plugin{
+
+ static function plInfo()
+ {
+ /* Adapt addressbook settings and mofiy required settings.
+ */
+ $attrs = addressbook::plInfo();
+ $attrs['plShortName'] = _("Addressbook")." - "._("GOsa");
+ $attrs['plDescription'] = _("Addressbook")." - "._("GOsa related objects");
+ $attrs['plSelfModify'] = TRUE;
+ $attrs['plPriority'] = 2;
+ $attrs['plCategory'] = array("addressbook");
+ return($attrs);
+ }
+}
+
class addressbook extends plugin
{
/* Definitions */
static function plInfo()
{
return (array(
- "plShortName" => _("Addressbook"),
- "plDescription" => _("Addressbook entry acls"),
+ "plShortName" => _("Addressbook")." - "._("Addressbook entries"),
+ "plDescription" => _("Addressbook")." - "._("Addressbook related objects"),
"plSelfModify" => FALSE,
"plDepends" => array(),
"plPriority" => 0,