summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 78d551a)
raw | patch | inline | side by side (parent: 78d551a)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Jul 2006 06:10:37 +0000 (06:10 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Jul 2006 06:10:37 +0000 (06:10 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4185 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_plugin.inc | patch | blob | history |
index 4e45a8631100faf9159fb96d5666d3f7abb1b90d..cf8682f84733233f952937e82085a93b19927c3b 100644 (file)
--- a/include/class_plugin.inc
+++ b/include/class_plugin.inc
{
/* Save values to object */
foreach ($this->attributes as $val){
- if (obj_is_writable($this->dn,get_class($this),$val) && isset ($_POST["$val"])){
+ if ($this->acl_is_writable($val) && isset ($_POST["$val"])){
/* Check for modifications */
if (get_magic_quotes_gpc()) {
$data= stripcslashes($_POST["$val"]);
return FALSE;
}
+
+ /* Show header message for tab dialogs */
+ function show_enable_header($button_text, $text, $disabled= FALSE)
+ {
+ if ($disabled == TRUE){
+ $state= "disabled";
+ } else {
+ $state= "";
+ }
+ $display= "<table summary=\"\" width=\"100%\"><tr>\n<td colspan=2><p><b>$text</b></p>\n";
+ $display.= "<input type=submit value=\"$button_text\" name=\"modify_state\" ".
+ ($this->acl_is_createable()?'':'disabled')." ".$state.
+ "><p class=\"seperator\"> </p></td></tr></table>";
+
+ return($display);
+ }
+
+
+ /* Show header message for tab dialogs */
+ function show_disable_header($button_text, $text, $disabled= FALSE)
+ {
+ if ($disabled == TRUE){
+ $state= "disabled";
+ } else {
+ $state= "";
+ }
+ $display= "<table summary=\"\" width=\"100%\"><tr>\n<td colspan=2><p><b>$text</b></p>\n";
+ $display.= "<input type=submit value=\"$button_text\" name=\"modify_state\" ".
+ ($this->acl_is_removeable()?'':'disabled')." ".$state.
+ "><p class=\"seperator\"> </p></td></tr></table>";
+
+ return($display);
+ }
+
+
/* Show header message for tab dialogs */
function show_header($button_text, $text, $disabled= FALSE)
{
+ echo "FIXME: show_header should be replaced by show_disable_header and show_enable_header<br>";
if ($disabled == TRUE){
$state= "disabled";
} else {
}
$display= "<table summary=\"\" width=\"100%\"><tr>\n<td colspan=2><p><b>$text</b></p>\n";
$display.= "<input type=submit value=\"$button_text\" name=\"modify_state\" ".
- chkacl($this->acl, "all")." ".$state.
+ ($this->acl_is_createable()?'':'disabled')." ".$state.
"><p class=\"seperator\"> </p></td></tr></table>";
return($display);
}
+
function postcreate($add_attrs= array())
{
/* Find postcreate entries for this class */
function remove_snapshot($dn)
{
+echo "FIXME: remove_snapshot uses old acl's<br>";
$ui = get_userinfo();
$acl = get_permissions ($dn, $ui->subtreeACL);
$acl = get_module_permission($acl, "snapshot", $dn);
if (chkacl($this->acl, "delete") == ""){
- $ldap = $this->config->get_ldap_link();
- $ldap->cd($this->config->current['BASE']);
- $ldap->rmdir_recursive($dn);
+ $ldap = $this->config->get_ldap_link();
+ $ldap->cd($this->config->current['BASE']);
+ $ldap->rmdir_recursive($dn);
}else{
print_red (_("You are not allowed to delete this snap shot!"));
}
function plInfo()
{
- #var $plObject_name= "";
- #var $plProvidedAcls= array();
- #var $plSelfModify= FALSE;
- #var $plOptions= array();
- #var $plSection= "";
- #var $plProvidedCategory= array();
- #var $plCategory= array();
- #var $plTask= array();
- #var $plPriority= 0;
- #var $plDepends= array();
- #var $plConflicts= array();
return array();
}
+
+ function acl_is_writable($attribute)
+ {
+ $ui= get_userinfo();
+ return preg_match('/w/', $ui->get_permissions($this->dn, get_class($this), $attribute));
+ }
+
+
+ function acl_is_readable($attribute)
+ {
+ $ui= get_userinfo();
+ return preg_match('/r/', $ui->get_permissions($this->dn, get_class($this), $attribute));
+ }
+
+
+ function acl_is_createable()
+ {
+ $ui= get_userinfo();
+ return preg_match('/c/', $ui->get_permissions($this->dn, get_class($this), 'dummy'));
+ }
+
+
+ function acl_is_removable()
+ {
+ $ui= get_userinfo();
+ return preg_match('/d/', $ui->get_permissions($this->dn, get_class($this), 'dummy'));
+ }
+
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>