Code

Updated addressbook acls
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 6 Feb 2009 15:53:46 +0000 (15:53 +0000)
committerhickert <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

gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc

index c4d7e393fc05fed47bdcfd9fcd6d42fc45d9a850..c72d7461782ccb313950884e30dcf90bd8e9eb46 100644 (file)
@@ -1,5 +1,22 @@
 <?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 */
@@ -820,8 +837,8 @@ class addressbook extends plugin
   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,