Code

Added server service acls
[gosa.git] / plugins / admin / systems / class_servNfs.inc
index e89bab3ea9e939c26340ba83a4a0a27a576fb302..113675920841129b34ff9b74a275b11f87138f09 100644 (file)
@@ -255,6 +255,27 @@ class servnfs extends plugin
     return $this->create_mount;
   }
 
+  /* Return plugin informations for acl handling */
+  function plInfo()
+  {
+    return (array(
+          "plShortName"   => _("NFS"),
+          "plDescription" => _("NFS service"),
+          "plSelfModify"  => FALSE,
+          "plDepends"     => array(),
+          "plPriority"    => 0,
+          "plSection"     => array("administration"),
+          "plCategory"    => array("server"),
+
+          "plProvidedAcls"=> array(
+              "description" => _("Description"),
+              "type"        => _("Type"),
+              "charset"     => _("Charset"),
+              "path"        => _("Path"),
+              "option"      => _("Option"), 
+              "volume"      => _("Valume"))
+            ));
+  }
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: