]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: Changed period for last jobs to 1 week
authorDavide Franco <bacula-dev@dflc.ch>
Sun, 24 Jul 2011 10:20:02 +0000 (12:20 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:27 +0000 (14:49 +0200)
gui/bacula-web/backupjob-report.php

index 996dde55b4780d39b2ddfe865f9c030bd03b4f92..59bc4a6e5e606b1e751ceaa0528800fa8a5c6dea 100644 (file)
        $http_post = CHttpRequest::getRequestVars( $_POST );
        $http_get  = CHttpRequest::getRequestVars( $_GET );
        
+       // Backup job name
        if( isset( $http_post['backupjob_name'] ) )
                $backupjob_name = $http_post['backupjob_name'];
        elseif( isset( $http_get['backupjob_name'] ) )
                $backupjob_name = $http_get['backupjob_name'];
        else
-               die( "Please specify a backup job name " );
-
+               die( "Please specify a backup job name " );             
+               
        // Generate Backup Job report period string
        $backupjob_period = "From " . date( "Y-m-d", (NOW-WEEK) ) . " to " . date( "Y-m-d", NOW );
 
@@ -56,7 +57,7 @@
        // ===============================================================
        // Last 7 days stored Bytes graph
        // ===============================================================  
-       $graph = new CGraph( "graph2.png" );
+       $graph = new CGraph( "graph8.png" );
 
        foreach( $days as $day ) {
                $stored_bytes            = $dbSql->getStoredBytes( $day['start'], $day['end'], $backupjob_name);
@@ -74,7 +75,7 @@
        // ===============================================================
        // Getting last 7 days stored files graph
        // ===============================================================
-       $graph = new CGraph("graph3.png" );
+       $graph = new CGraph("graph9.png" );
 
        foreach( $days as $day ) {
                $stored_files            = $dbSql->getStoredFiles( $day['start'], $day['end'], $backupjob_name);
@@ -93,7 +94,7 @@
        $query   .= "FROM Job ";
        $query   .= "WHERE Name = '$backupjob_name' ";
        $query   .= "ORDER BY EndTime DESC ";
-       $query   .= "LIMIT 10 ";
+       $query   .= "LIMIT 7 ";
 
        $jobs           = array();
        $joblevel = array( 'I' => 'Incr', 'D' => 'Diff', 'F' => 'Full' );