Code

Removed multi-objectclass dependency. There's a more easy way to do this.
[gosa.git] / plugins / personal / connectivity / class_phpgwAccount.inc
index b70991a9610f9b68270a9f888dec6958ac0fc178..368ae95222066f60e69fccf38431c261bca3818e 100644 (file)
@@ -5,11 +5,6 @@ class phpgwAccount extends plugin
   var $plHeadline= "PHPGroupware";
   var $plDescription= "This does something";
 
-  /* CLI vars */
-  var $cli_summary= "Manage users PHPGroupware account";
-  var $cli_description= "Some longer text\nfor help";
-  var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
-
   /* GW attributes */
   var $phpgwAccountExpires= "-1";
   var $phpgwAccountStatus= "A";
@@ -69,7 +64,7 @@ class phpgwAccount extends plugin
       $this->cleanup();
       $ldap->modify ($this->attrs); 
 
-      show_ldap_error($ldap->get_error(), _("Removing PHPgw account failed"));
+      show_ldap_error($ldap->get_error(), sprintf(_("Removing of user/PHPgw account with dn '%s' failed."),$this->dn));
 
       /* Optionally execute a command after we're done */
       $this->handle_post_events('remove');
@@ -112,7 +107,7 @@ class phpgwAccount extends plugin
       $this->cleanup();
       $ldap->modify ($this->attrs); 
 
-      show_ldap_error($ldap->get_error(), _("Saving PHPgw account failed"));
+      show_ldap_error($ldap->get_error(), sprintf(_("Saving of user/PHPgw account with dn '%s' failed."),$this->dn));
 
       /* Optionally execute a command after we're done */
       if ($this->initially_was_account == $this->is_account){
@@ -124,6 +119,21 @@ class phpgwAccount extends plugin
       }
     }
   }
+
+
+  /* Return plugin informations for acl handling 
+    #FIME ACL attributes arn't translated yet */
+  function plInfo()
+  {
+    return (array(  "plDescription"   => _("Intranet account settings"),
+          "plSelfModify"    => TRUE,
+          "plDepends"       => array("objectClass" => "gosaAccount"),
+          "phpgwAccountExpires" =>"!!! FIXME "._("phpgwAccountExpires"),
+          "phpgwAccountStatus"  =>_("phpgwAccountStatus"),
+          "phpgwAccountType"    =>_("phpgwAccountType")));
+  }
+
+
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: