X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_SnapShotDialog.inc;h=4fc900d01c8d5296964e5f0a64ec5e0c2b674a17;hb=0f66c96ae61a0c1d00bd8b214f85ae57caa9d813;hp=34967053c52776f40c16b815cc06837ba808542e;hpb=d927b1e9a4646441ea99693c5a77929a8a56671d;p=gosa.git diff --git a/include/class_SnapShotDialog.inc b/include/class_SnapShotDialog.inc index 34967053c..4fc900d01 100755 --- a/include/class_SnapShotDialog.inc +++ b/include/class_SnapShotDialog.inc @@ -15,13 +15,23 @@ class SnapShotDialog extends plugin var $del_dn= ""; var $ui; var $acl; + var $dns = array(); + var $snap_shot_bases = array(); + function SnapShotDialog($config,$dn,$parent) { - plugin::plugin($config,$dn); - $this->parent = $parent; - $this->ui = get_userinfo(); + plugin::plugin($config,$dn); + $this->parent = $parent; + $this->ui = get_userinfo(); } + + + /* Show deleted snapshots from these bases */ + function set_snapshot_bases($bases) + { + $this->snap_shot_bases = $bases; + } /* Display snapshot dialog */ @@ -29,7 +39,7 @@ class SnapShotDialog extends plugin { plugin::execute(); $smarty = get_smarty(); - + $once = true; foreach($_POST as $name => $value){ if((preg_match("/^RemoveSnapShot_/",$name)) && ($once)){ @@ -38,31 +48,22 @@ class SnapShotDialog extends plugin $entry = preg_replace("/^RemoveSnapShot_/","",$name); $entry = base64_decode(preg_replace("/_[xy]$/","",$entry)); - $acl = get_permissions ($entry, $this->ui->subtreeACL); - $this->acl = get_module_permission($acl, "snapshot", $entry ); - - if (chkacl($this->acl, "delete") == ""){ - $this->del_dn = $entry; - $smarty= get_smarty(); - $smarty->assign("intro", sprintf(_("You're about to delete the snapshot '%s'."), @LDAP::fix($this->del_dn))); - return($smarty->fetch (get_template_path('remove.tpl'))); - } else { - - /* Obviously the user isn't allowed to delete. Show message and - clean session. */ - print_red (_("You are not allowed to delete this snap shot!")); - } - } - } - - /* Remove snapshot */ - if(isset($_POST['delete_confirm']) && !empty($this->del_dn)){ - $acl = get_permissions ($this->del_dn, $this->ui->subtreeACL); - $this->acl = get_module_permission($acl, "snapshot", $this->del_dn); - if (chkacl($this->acl, "delete") == ""){ - $this->remove_snapshot($this->del_dn); - $this->del_dn = ""; - } + $this->del_dn = $entry; + $smarty= get_smarty(); + $smarty->assign("intro", sprintf(_("You're about to delete the snapshot '%s'."), @LDAP::fix($this->del_dn))); + return($smarty->fetch (get_template_path('remove.tpl'))); + + /* Obviously the user isn't allowed to delete. Show message and + clean session. + print_red (_("You are not allowed to delete this snapshot!")); + */ + } + } + + /* Remove snapshot */ + if(isset($_POST['delete_confirm']) && !empty($this->del_dn)){ + $this->remove_snapshot($this->del_dn); + $this->del_dn = ""; } /* We must restore a snapshot */ @@ -71,14 +72,14 @@ class SnapShotDialog extends plugin /* Should we only display all snapshots of already deleted objects or the snapshots for the given object dn */ $res = array(); + $tmp = array(); if($this->display_all_removed_objects){ - if(is_array($this->dn)){ - $tmp = array(); - foreach($this->dn as $dn){ + if(count($this->snap_shot_bases)){ + foreach($this->snap_shot_bases as $dn){ $tmp = array_merge($tmp,$this->getAllDeletedSnapshots($dn,true)); } }else{ - $tmp = $this->getAllDeletedSnapshots($this->dn,true); + $tmp = $this->getAllDeletedSnapshots($this->snap_shot_bases,true); } }else{ $tmp = $this->Available_SnapsShots($this->dn,true);