Code

Added server service acls
[gosa.git] / plugins / admin / systems / class_goLogDBServer.inc
index 0667031f5f7ec851a0f2f60ace7bbcba42ebabcc..b3bb37a9fefa2f9a4d349c09c6e7d7717585fed9 100644 (file)
@@ -207,6 +207,24 @@ class goLogDBServer extends plugin{
     }
   }
   
+
+  /* Return plugin informations for acl handling */
+  function plInfo()
+  {
+    return (array(
+          "plShortName"   => _("Log"),
+          "plDescription" => _("Log service"),
+          "plSelfModify"  => FALSE,
+          "plDepends"     => array(),
+          "plPriority"    => 0,
+          "plSection"     => array("administration"),
+          "plCategory"    => array("server"),
+
+          "plProvidedAcls"=> array(
+            "goLogAdmin"    => _("Admin"),
+            "goLogPassword" => _("Password"))
+          ));
+  }
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>