Code

Updated acls
[gosa.git] / plugins / personal / connectivity / class_webdavAccount.inc
index ba0c5ec206d2b42db64eb7d7aac8bec1b31fdc5b..088f0103035bd5f9f0f6d4baba0040b2cebd4e72 100644 (file)
@@ -6,11 +6,6 @@ class webdavAccount extends plugin
   var $plHeadline= "WebDAV";
   var $plDescription= "This does something";
 
-  /* CLI vars */
-  var $cli_summary= "Manage users webdav account";
-  var $cli_description= "Some longer text\nfor help";
-  var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
-
   /* attribute list for save action */
   var $attributes= array();
   var $objectclasses= array("gosaWebdavAccount");
@@ -65,7 +60,7 @@ class webdavAccount extends plugin
       $this->cleanup();
       $ldap->modify ($this->attrs); 
 
-      show_ldap_error($ldap->get_error(), _("Removing webDAV account failed"));
+      show_ldap_error($ldap->get_error(), sprintf(_("Removing of user/webDAV account with dn '%s' failed."),$this->dn));
 
       /* Optionally execute a command after we're done */
       $this->handle_post_events('remove');
@@ -108,7 +103,7 @@ class webdavAccount extends plugin
       $this->cleanup();
       $ldap->modify ($this->attrs); 
 
-      show_ldap_error($ldap->get_error(), _("Saving webDAV account failed"));
+      show_ldap_error($ldap->get_error(), sprintf(_("Saving of user/webDAV account with dn '%s' failed."),$this->dn));
 
       /* Optionally execute a command after we're done */
       if ($this->initially_was_account == $this->is_account){
@@ -121,6 +116,16 @@ class webdavAccount extends plugin
     }
   }
 
+  /* Return plugin informations for acl handling
+      #FIXME This is only an enable/disable checkbox for this account, there is possibly a better solution available later */
+  function plInfo()
+  {
+    return (array(  
+          "plDescription"     => _("Intranet account settings"),
+          "plSelfModify"      => TRUE,
+          "plDepends"         => array("objectClass" => "gosaAccount"),
+          "gosaWebdavAccount" => "!!! FIXME "._("WebDAV account")));
+  }
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: