Code

Fixed date of birth && userPicture
[gosa.git] / plugins / personal / connectivity / class_phpgwAccount.inc
index 37162cea9c254e289205dc98e7d8b5315095db7a..0080bbbc9690460483f9787159584a34f0e4409b 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";
@@ -18,6 +13,7 @@ class phpgwAccount extends plugin
   /* attribute list for save action */
   var $attributes= array("phpgwAccountExpires", "phpgwAccountStatus", "phpgwAccountType");
   var $objectclasses= array("phpgwAccount");
+  var $ReadOnly = false;
 
   function phpgwAccount ($config, $dn= NULL)
   {
@@ -46,7 +42,11 @@ class phpgwAccount extends plugin
       $smarty->assign("phpgwState", "");
     }
 
-    $smarty->assign('phpgwAccountACL', chkacl($this->acl, 'phpgwAccount'));
+    if((!$this->ReadOnly)&&(($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable()))) {
+      $smarty->assign('phpgwAccountACL', "");
+    }else{
+      $smarty->assign('phpgwAccountACL', " disabled ");
+    }
 
     $display.= $smarty->fetch (get_template_path('phpgw.tpl', TRUE, dirname(__FILE__)));
     return ($display);
@@ -54,7 +54,7 @@ class phpgwAccount extends plugin
 
   function remove_from_parent()
   {
-    if(chkacl($this->acl,"phpgwAccount") == ""){
+    if($this->acl_is_removeable()){
       /* Cancel if there's nothing to do here */
       if (!$this->initially_was_account){
         return;
@@ -84,10 +84,14 @@ class phpgwAccount extends plugin
     if (isset($_POST['connectivityTab'])){
       if (isset($_POST['phpgw'])){
         if (!$this->is_account && $_POST['phpgw'] == "B"){
-          $this->is_account= TRUE;
+          if($this->acl_is_createable()){
+            $this->is_account= TRUE;
+          }
         }
       } else {
-        $this->is_account= FALSE;
+        if($this->acl_is_removeable()){
+          $this->is_account= FALSE;
+        }
       }
     }
 
@@ -103,27 +107,43 @@ class phpgwAccount extends plugin
   /* Save to LDAP */
   function save()
   {
-    if(chkacl($this->acl,"phpgwAccount") == ""){
-      plugin::save();
-      
-      /* Write back to ldap */
-      $ldap= $this->config->get_ldap_link();
-      $ldap->cd($this->dn);
-      $this->cleanup();
-      $ldap->modify ($this->attrs); 
+    plugin::save();
 
-      show_ldap_error($ldap->get_error(), sprintf(_("Saving of user/PHPgw account with dn '%s' failed."),$this->dn));
+    /* Write back to ldap */
+    $ldap= $this->config->get_ldap_link();
+    $ldap->cd($this->dn);
+    $this->cleanup();
+    $ldap->modify ($this->attrs); 
 
-      /* Optionally execute a command after we're done */
-      if ($this->initially_was_account == $this->is_account){
-        if ($this->is_modified){
-          $this->handle_post_events("mofify");
-        }
-      } else {
-        $this->handle_post_events("add");
+    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){
+      if ($this->is_modified){
+        $this->handle_post_events("mofify");
       }
+    } else {
+      $this->handle_post_events("add");
     }
   }
+
+
+  /* Return plugin informations for acl handling */
+  function plInfo()
+  {
+    return (array(
+          "plShortName"     => _("PHP GW"),
+          "plDescription"   => _("PHP GW account 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: