Code

Added setup patches from stable
[gosa.git] / include / class_SnapShotDialog.inc
index 957a0077c72c16137c853273678a55657b2914fc..66211bfd029c91e024cf433d78f4d7cee8691317 100755 (executable)
@@ -15,13 +15,24 @@ class SnapShotDialog extends plugin
        var $del_dn= "";
        var $ui;
        var $acl;
+  var $dns = array();
+  var $snap_shot_bases = array();
+  var $last_list = 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 +40,7 @@ class SnapShotDialog extends plugin
        {
                plugin::execute();
                $smarty = get_smarty();
-       
+
                $once = true;
                foreach($_POST as $name => $value){
                        if((preg_match("/^RemoveSnapShot_/",$name)) && ($once)){
@@ -38,19 +49,20 @@ 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 );
-
-
-        $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!"));
-         */
+        $found = false;
+        foreach($this->last_list as $t_stamp => $obj){
+          if($obj['dn'] == $entry){
+            $found = true;
+            break;
+          }
+        }
+
+        if($found){
+          $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')));
+        }
       }
     }
 
@@ -66,14 +78,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);
@@ -94,6 +106,7 @@ class SnapShotDialog extends plugin
                        krsort($list_of_elements);
        
                        /* Add Elements to divlist */   
+      $this->last_list = $list_of_elements;
                        foreach($list_of_elements as $entry){
 
                                $actions= "<input type='image' src='images/restore.png' name='RestoreSnapShot_%KEY'