Code

Added fix for divlist department selection
[gosa.git] / include / class_SnapShotDialog.inc
index 9391c1370493078d02ab910b7c10d2ec6ba108dc..4dd1466360bfce1857096b691f3c71737f30a170 100755 (executable)
@@ -4,14 +4,15 @@
 class SnapShotDialog extends plugin 
 {
        var $config;
-       var $attributes                                 = array("CurrentDescription");
-       var $CurrentDescription                 = "";
-       var $parent                                             = NULL;
-       var $display_restore_dialog             = false;                /* Defines the restore mode */
-       var $display_all_removed_objects= false;                /* Specifies which objects will be listed, all snapshots for a single entry 
-                                                                                                               or all snapshots of already deleted objects  */ 
-       var $dialog                                             = true;
-       var $del_dn                                             = "";
+       var $attributes= array("CurrentDescription");
+       var $CurrentDescription= "";
+       var $parent= NULL;
+       var $display_restore_dialog= false;                   /* Defines the restore mode */
+       var $display_all_removed_objects= false;                /* Specifies which objects will be listed, all
+                                                 snapshots for a single entry or all snapshots
+                                                 of already deleted objects  */        
+       var $dialog= true;
+       var $del_dn= "";
        var $ui;
        var $acl;
        
@@ -49,7 +50,7 @@ class SnapShotDialog extends plugin
 
                                        /* Obviously the user isn't allowed to delete. Show message and
                                           clean session. */
-                                       print_red (_("You are not allowed to delete this snap shot!"));
+                                       print_red (_("You are not allowed to delete this snapshot!"));
                                }
                        }
                }
@@ -100,10 +101,12 @@ class SnapShotDialog extends plugin
                        /* Add Elements to divlist */   
                        foreach($list_of_elements as $entry){
 
-                               $actions = "<input type='image' src='images/edittrash.png' name='RemoveSnapShot_%KEY' title='"._("Remove snapshot")."'>&nbsp;";
-                               $actions.= "<input type='image' src='images/restore.png' name='RestoreSnapShot_%KEY' title='"._("Restore snapshot")."'>&nbsp;";
+                               $actions= "<input type='image' src='images/restore.png' name='RestoreSnapShot_%KEY' 
+                                                               class='center' title='"._("Restore snapshot")."'>&nbsp;";
+                               $actions.= "<input type='image' src='images/edittrash.png' name='RemoveSnapShot_%KEY' 
+                                                               class='center' title='"._("Remove snapshot")."'>&nbsp;";
 
-                               $time_stamp     = date("d.m.Y H.i.s",preg_replace("/\-.*$/","",$entry['gosaSnapshotTimestamp'][0]));
+                               $time_stamp     = date(_("Y-m-d, H:i:s"),preg_replace("/\-.*$/","",$entry['gosaSnapshotTimestamp'][0]));
                                $display_data   = $entry['description'][0];
 
                                if($this->display_all_removed_objects){
@@ -111,7 +114,7 @@ class SnapShotDialog extends plugin
                                }
 
                                $field0 = array("string"=> $time_stamp , "attach"=> "style='vertical-align:top;width:120px;'");
-                               $field1 = array("string"=> $display_data , "attach"=> "");
+                               $field1 = array("string"=> htmlentities (utf8_decode($display_data)), "attach"=> "");
                                $field2 = array("string"=> preg_replace("/%KEY/",base64_encode($entry['dn']),$actions) , 
                                                                "attach"=> "style='border-right:0px;vertical-align:top;width:40px;text-align:right;'");
                                $DivListSnapShots->AddEntry(array($field0,$field1,$field2));
@@ -121,8 +124,9 @@ class SnapShotDialog extends plugin
                        $smarty->assign("CountSnapShots",count($list_of_elements));
                }
 
+               $smarty->assign("restore_deleted",$this->display_all_removed_objects);
                $smarty->assign("RestoreMode",$this->display_restore_dialog);
-               $smarty->assign("CurrentDate",date("d.m.Y H:i"));
+               $smarty->assign("CurrentDate",date(_("Y-m-d, H:i:s")));
                $smarty->assign("CurrentDN",$this->dn);
                $smarty->assign("CurrentDescription",$this->CurrentDescription);
                return($smarty->fetch(get_template_path("snapshotdialog.tpl")));
@@ -152,4 +156,5 @@ class SnapShotDialog extends plugin
        }
 }
 
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>