is_account){ $smarty->assign("webdavState", "checked"); } else { $smarty->assign("webdavState", ""); $smarty->assign("wstate", "disabled"); } if ($this->parent != NULL){ $smarty->assign("tabbed", 1); } if(($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) { $smarty->assign('webdavAccountACL', ""); }else{ $smarty->assign('webdavAccountACL', " disabled "); } $display.= $smarty->fetch (get_template_path('webdav.tpl', TRUE, dirname(__FILE__))); return ($display); } function remove_from_parent() { if(chkacl($this->acl,"webdavAccount")==""){ /* Cancel if there's nothing to do here */ if (!$this->initially_was_account){ return; } plugin::remove_from_parent(); $ldap= $this->config->get_ldap_link(); $ldap->cd($this->dn); @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $this->attributes, "Save"); $this->cleanup(); $ldap->modify ($this->attrs); 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'); } } /* Save data to object */ function save_object() { /* Do we need to flip is_account state? */ if (isset($_POST['connectivityTab'])){ if (isset($_POST['webdav'])){ if (!$this->is_account && $_POST['webdav'] == "B"){ if($this->acl_is_createable()){ $this->is_account= TRUE; } } } else { if($this->acl_is_removeable()){ $this->is_account= FALSE; } } } plugin::save_object(); if (isset($_POST["WEBDAVStatus"])){ $this->WEBDAVStatus = "disabled"; } else { $this->WEBDAVStatus = "enabled"; } } /* Save to LDAP */ function save() { if(chkacl($this->acl,"webdavAccount")==""){ plugin::save(); /* Write back to ldap */ $ldap= $this->config->get_ldap_link(); $ldap->cd($this->dn); $this->cleanup(); $ldap->modify ($this->attrs); 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){ if ($this->is_modified){ $this->handle_post_events("mofify"); } } else { $this->handle_post_events("add"); } } } /* 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( "plShortName" => _("WebDAV"), "plDescription" => _("WebDAV account"), "plSelfModify" => TRUE, "plDepends" => array("user"), "plPriority" => 9, // Position in tabs "plSection" => "personal", // This belongs to personal "plCategory" => array("users"), "plOptions" => array(), "plProvidedAcls" => array( "gosaWebdavAccount" => "!!! FIXME "._("WebDAV account")) )); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>