From 9263ec2f3ab67cba04f1c14d0e071fdd4773c6c4 Mon Sep 17 00:00:00 2001 From: Davide Franco Date: Sun, 17 Jul 2011 19:12:51 +0200 Subject: [PATCH] bacula-web: Fixed code indentation --- gui/bacula-web/index.php | 156 +++++++++++++++++++-------------------- 1 file changed, 78 insertions(+), 78 deletions(-) diff --git a/gui/bacula-web/index.php b/gui/bacula-web/index.php index aa938488f5..c51cca5fc6 100644 --- a/gui/bacula-web/index.php +++ b/gui/bacula-web/index.php @@ -15,107 +15,107 @@ | GNU General Public License for more details. | +-------------------------------------------------------------------------+ */ -session_start(); -include_once( 'config/global.inc.php' ); + session_start(); + include_once( 'config/global.inc.php' ); -$dbSql = new Bweb(); -$days_stored_bytes = array(); + $dbSql = new Bweb(); + $days_stored_bytes = array(); -// Stored files number -$dbSql->tpl->assign('stored_files', number_format($dbSql->getStoredFiles( FIRST_DAY, NOW ), 0, '.', "'" ) ); - -// Database size -$dbSql->tpl->assign('database_size', $dbSql->GetDbSize()); + // Stored files number + $dbSql->tpl->assign('stored_files', number_format($dbSql->getStoredFiles( FIRST_DAY, NOW ), 0, '.', "'" ) ); + + // Database size + $dbSql->tpl->assign('database_size', $dbSql->GetDbSize()); -// Overall stored bytes -$stored_bytes = CUtils::Get_Human_Size( $dbSql->getStoredBytes( FIRST_DAY, NOW ) ); -$dbSql->tpl->assign('stored_bytes', $stored_bytes); + // Overall stored bytes + $stored_bytes = CUtils::Get_Human_Size( $dbSql->getStoredBytes( FIRST_DAY, NOW ) ); + $dbSql->tpl->assign('stored_bytes', $stored_bytes); -// Total bytes and files for last 24 hours -$dbSql->tpl->assign('bytes_last', CUtils::Get_Human_Size( $dbSql->getStoredBytes( LAST_DAY, NOW ) ) ); -$dbSql->tpl->assign('files_last', number_format($dbSql->getStoredFiles( LAST_DAY, NOW ), 0, '.', "'" ) ); + // Total bytes and files for last 24 hours + $dbSql->tpl->assign('bytes_last', CUtils::Get_Human_Size( $dbSql->getStoredBytes( LAST_DAY, NOW ) ) ); + $dbSql->tpl->assign('files_last', number_format($dbSql->getStoredFiles( LAST_DAY, NOW ), 0, '.', "'" ) ); -// Number of clients -$nb_clients = $dbSql->Get_Nb_Clients(); -$dbSql->tpl->assign('clientes_totales',$nb_clients["nb_client"] ); + // Number of clients + $nb_clients = $dbSql->Get_Nb_Clients(); + $dbSql->tpl->assign('clientes_totales',$nb_clients["nb_client"] ); -// Backup Job list for report.tpl and last_run_report.tpl -$dbSql->tpl->assign( 'jobs_list', $dbSql->Get_BackupJob_Names() ); + // Backup Job list for report.tpl and last_run_report.tpl + $dbSql->tpl->assign( 'jobs_list', $dbSql->Get_BackupJob_Names() ); -// Last 24 hours status (completed, failed and waiting jobs) -$dbSql->tpl->assign( 'completed_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'completed' ) ); -$dbSql->tpl->assign( 'failed_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'failed' ) ); -$dbSql->tpl->assign( 'waiting_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'waiting' ) ); + // Last 24 hours status (completed, failed and waiting jobs) + $dbSql->tpl->assign( 'completed_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'completed' ) ); + $dbSql->tpl->assign( 'failed_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'failed' ) ); + $dbSql->tpl->assign( 'waiting_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'waiting' ) ); -// Last 24 hours jobs Level -$dbSql->tpl->assign( 'incr_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'ALL', J_INCR) ); -$dbSql->tpl->assign( 'diff_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'ALL', J_DIFF) ); -$dbSql->tpl->assign( 'full_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'ALL', J_FULL) ); + // Last 24 hours jobs Level + $dbSql->tpl->assign( 'incr_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'ALL', J_INCR) ); + $dbSql->tpl->assign( 'diff_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'ALL', J_DIFF) ); + $dbSql->tpl->assign( 'full_jobs', $dbSql->countJobs( LAST_DAY, NOW, 'ALL', J_FULL) ); -// Last 24 hours Job status graph -$jobs_status_data = array(); -$jobs_status = array( 'Running', 'Completed', 'Failed', 'Canceled', 'Waiting' ); + // Last 24 hours Job status graph + $jobs_status_data = array(); + $jobs_status = array( 'Running', 'Completed', 'Failed', 'Canceled', 'Waiting' ); -foreach( $jobs_status as $status ) - $jobs_status_data[] = array( $status, $dbSql->countJobs(LAST_DAY, NOW, $status) ); + foreach( $jobs_status as $status ) + $jobs_status_data[] = array( $status, $dbSql->countJobs(LAST_DAY, NOW, $status) ); -$graph = new CGraph( "graph.png" ); -$graph->SetData( $jobs_status_data, 'pie', 'text-data-single' ); -$graph->SetGraphSize( 400, 230 ); + $graph = new CGraph( "graph.png" ); + $graph->SetData( $jobs_status_data, 'pie', 'text-data-single' ); + $graph->SetGraphSize( 400, 230 ); -$graph->Render(); -$dbSql->tpl->assign('graph_jobs', $graph->Get_Image_file() ); -unset($graph); + $graph->Render(); + $dbSql->tpl->assign('graph_jobs', $graph->Get_Image_file() ); + unset($graph); -// Volumes by pools graph -$vols_by_pool = array(); -$graph = new CGraph( "graph1.png" ); + // Volumes by pools graph + $vols_by_pool = array(); + $graph = new CGraph( "graph1.png" ); -foreach( $dbSql->getPools() as $pool ) - $vols_by_pool[] = array( $pool['name'], $dbSql->countVolumes( $pool['poolid'] ) ); + foreach( $dbSql->getPools() as $pool ) + $vols_by_pool[] = array( $pool['name'], $dbSql->countVolumes( $pool['poolid'] ) ); -$graph->SetData( $vols_by_pool, 'pie', 'text-data-single' ); -$graph->SetGraphSize( 400, 230 ); + $graph->SetData( $vols_by_pool, 'pie', 'text-data-single' ); + $graph->SetGraphSize( 400, 230 ); -$graph->Render(); -$dbSql->tpl->assign('graph_pools', $graph->Get_Image_file() ); + $graph->Render(); + $dbSql->tpl->assign('graph_pools', $graph->Get_Image_file() ); -// Last 7 days stored Bytes graph -$days = CTimeUtils::getLastDaysIntervals( 7 ); -foreach( $days as $day ) { - $stored_bytes = $dbSql->getStoredBytes( $day['start'], $day['end']); - $stored_bytes = CUtils::Get_Human_Size( $stored_bytes, 1, 'GB', false ); - $days_stored_bytes[] = array( date("m-d", $day['start']), $stored_bytes ); -} + // Last 7 days stored Bytes graph + $days = CTimeUtils::getLastDaysIntervals( 7 ); + foreach( $days as $day ) { + $stored_bytes = $dbSql->getStoredBytes( $day['start'], $day['end']); + $stored_bytes = CUtils::Get_Human_Size( $stored_bytes, 1, 'GB', false ); + $days_stored_bytes[] = array( date("m-d", $day['start']), $stored_bytes ); + } -$graph = new CGraph( "graph2.png" ); -$graph->SetData( $days_stored_bytes, 'bars', 'text-data' ); -$graph->SetGraphSize( 400, 230 ); -$graph->SetYTitle( "GB" ); + $graph = new CGraph( "graph2.png" ); + $graph->SetData( $days_stored_bytes, 'bars', 'text-data' ); + $graph->SetGraphSize( 400, 230 ); + $graph->SetYTitle( "GB" ); -$graph->Render(); -$dbSql->tpl->assign('graph_stored_bytes', $graph->Get_Image_file() ); + $graph->Render(); + $dbSql->tpl->assign('graph_stored_bytes', $graph->Get_Image_file() ); -// Last 15 used volumes -$vol_list = array(); + // Last 15 used volumes + $vol_list = array(); -$query = "SELECT DISTINCT Media.Volumename, Media.Lastwritten, Media.VolStatus, Job.JobId FROM Job "; -$query .= "LEFT JOIN JobMedia ON Job.JobId = JobMedia.JobId "; -$query .= "LEFT JOIN Media ON JobMedia.MediaId = Media.MediaId "; -$query .= "ORDER BY Job.JobId DESC "; -$query .= "LIMIT 10 "; + $query = "SELECT DISTINCT Media.Volumename, Media.Lastwritten, Media.VolStatus, Job.JobId FROM Job "; + $query .= "LEFT JOIN JobMedia ON Job.JobId = JobMedia.JobId "; + $query .= "LEFT JOIN Media ON JobMedia.MediaId = Media.MediaId "; + $query .= "ORDER BY Job.JobId DESC "; + $query .= "LIMIT 10 "; -$result = $dbSql->db_link->query( $query ); + $result = $dbSql->db_link->query( $query ); -if ( PEAR::isError( $result ) ) - $this->TriggerDBError( 'Unable to get last used volumes from catalog' . $result ); -else { - while ( $vol = $result->fetchRow() ) - array_push( $vol_list, $vol ); -} -$dbSql->tpl->assign( 'volume_list', $vol_list ); + if ( PEAR::isError( $result ) ) + $this->TriggerDBError( 'Unable to get last used volumes from catalog' . $result ); + else { + while ( $vol = $result->fetchRow() ) + array_push( $vol_list, $vol ); + } + $dbSql->tpl->assign( 'volume_list', $vol_list ); -// Render template -$dbSql->tpl->display('index.tpl'); + // Render template + $dbSql->tpl->display('index.tpl'); ?> -- 2.39.5