Code

Fixed self edit mode
[gosa.git] / plugins / personal / connectivity / class_connectivity.inc
index c0690c1cde3cc3bc65be1f3c96ccdb5202141fd3..534541ecd2c4388fb0253c204fe0043b26482479 100644 (file)
@@ -163,8 +163,23 @@ class connectivity extends plugin
       $this->plugin[$key]->PrepareForCopyPaste($plug);
     }
   }
-  
 
+/* Return plugin informations for acl handling 
+#FIXME We should check here, if the user has access to one of the subClasses */ 
+  function plInfo()
+  {
+    return (array(  
+          "plShortName"       => _("Connectivity"),
+          "plDescription"     => _("Connectivity settings"),
+          "plSelfModify"      => TRUE,
+          "plDepends"         => array("user"),
+          "plPriority"        => 5,                                 // Position in tabs
+          "plSection"       => "personal",                        // This belongs to personal
+          "plCategory"      => array("users"),
+          "plOptions"       => array(),
+          "plProvidedAcls"  => array()
+          ));
+  }
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: