From: Davide Franco Date: Sun, 5 Jun 2011 10:14:56 +0000 (+0200) Subject: bacula-web: Added / updated GPL copyright header in php scripts X-Git-Tag: Release-5.2.1~320 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b04629b12ad3ea176b7c3fc02e8a012d76340672;p=bacula%2Fbacula bacula-web: Added / updated GPL copyright header in php scripts --- diff --git a/gui/bacula-web/backupjob-report.php b/gui/bacula-web/backupjob-report.php index d62c534cb5..fd9f4391f0 100644 --- a/gui/bacula-web/backupjob-report.php +++ b/gui/bacula-web/backupjob-report.php @@ -1,4 +1,19 @@ diff --git a/gui/bacula-web/includes/db/db.mysql.class.php b/gui/bacula-web/includes/db/db.mysql.class.php index 62a2de0c86..6519f3ec0e 100644 --- a/gui/bacula-web/includes/db/db.mysql.class.php +++ b/gui/bacula-web/includes/db/db.mysql.class.php @@ -1,3 +1,18 @@ diff --git a/gui/bacula-web/includes/db/db.pgsql.class.php b/gui/bacula-web/includes/db/db.pgsql.class.php index 62a2de0c86..89727b8b63 100644 --- a/gui/bacula-web/includes/db/db.pgsql.class.php +++ b/gui/bacula-web/includes/db/db.pgsql.class.php @@ -1,3 +1,18 @@ +?> \ No newline at end of file diff --git a/gui/bacula-web/includes/db/db.sqlite.class.php b/gui/bacula-web/includes/db/db.sqlite.class.php index 62a2de0c86..89727b8b63 100644 --- a/gui/bacula-web/includes/db/db.sqlite.class.php +++ b/gui/bacula-web/includes/db/db.sqlite.class.php @@ -1,3 +1,18 @@ +?> \ No newline at end of file diff --git a/gui/bacula-web/includes/graph/bgraph.class.php b/gui/bacula-web/includes/graph/bgraph.class.php index c88945b18c..349eff7058 100644 --- a/gui/bacula-web/includes/graph/bgraph.class.php +++ b/gui/bacula-web/includes/graph/bgraph.class.php @@ -1,4 +1,19 @@ tpl->assign('pools',$dbSql->GetVolumeList() ); + // Get volumes list (pools.tpl) + $dbSql->tpl->assign('pools',$dbSql->GetVolumeList() ); - $dbSql->tpl->display('pools.tpl'); + $dbSql->tpl->display('pools.tpl'); ?> diff --git a/gui/bacula-web/report.php b/gui/bacula-web/report.php index c6dda68afc..089cbd8e6f 100644 --- a/gui/bacula-web/report.php +++ b/gui/bacula-web/report.php @@ -1,4 +1,20 @@ 'ok.png', false => 'error.png' ); - - // Checks list - $check_list = array( array( 'check_cmd' => 'php-gettext', - 'check_label' => 'PHP - Gettext support', - 'check_descr' => 'If you want Bacula-web in your language, please compile PHP with Gettext support' ), - array( 'check_cmd' => 'pear-db', - 'check_label' => 'PEAR DB module', - 'check_descr' => 'PEAR DB support not found, please read the Bacula-web installation document'), - array( 'check_cmd' => 'php-gd', - 'check_label' => 'PHP - GD support', - 'check_descr' => 'This is required by phplot, please compile php with GD support'), - array( 'check_cmd' => 'php-mysql', - 'check_label' => 'PHP - MySQL support', - 'check_descr' => 'PHP MySQL support must be installed in order to run bacula-web with MySQL bacula catalog'), - array( 'check_cmd' => 'php-postgres', - 'check_label' => 'PHP - PostgreSQL support', - 'check_descr' => 'PHP PostgreSQL support must be installed in order to run bacula-web with PostgreSQL bacula catalog'), - array( 'check_cmd' => 'smarty-cache', - 'check_label' => 'Smarty cache folder write permission', - 'check_descr' => 'Smarty template engine need write permissions to templates_c folder') - ); - - // Doing all checks - foreach( $check_list as &$check ) { - switch( $check['check_cmd'] ) - { - case 'php-gettext': - $check['check_result'] = $check_result[ function_exists( 'gettext' ) ]; - break; - case 'php-gd': - $check['check_result'] = $check_result[ function_exists( 'gd_info') ]; - break; - case 'pear-db': - $check['check_result'] = $check_result[ class_exists('DB') ]; - break; - case 'php-mysql': - $check['check_result'] = $check_result[ function_exists('mysql_connect') ]; - break; - case 'php-postgres': - $check['check_result'] = $check_result[ function_exists('pg_connect') ]; - break; - case 'smarty-cache': - $check['check_result'] = $check_result[ is_writable( "./templates_c" ) ]; - break; - } - - } +/* ++-------------------------------------------------------------------------+ +| Copyright (C) 2004 Juan Luis Francés Jiménez | +| Copyright 2010-2011, Davide Franco | +| | +| This program is free software; you can redistribute it and/or | +| modify it under the terms of the GNU General Public License | +| as published by the Free Software Foundation; either version 2 | +| of the License, or (at your option) any later version. | +| | +| This program is distributed in the hope that it will be useful, | +| but WITHOUT ANY WARRANTY; without even the implied warranty of | +| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | +| GNU General Public License for more details. | ++-------------------------------------------------------------------------+ +*/ + require_once ("config.inc.php"); + $bw = new Bweb(); - // Generate test graph - $data = array( array('test', 100, 100, 200, 100), array('test1', 150, 100, 150, 100 ) ); - $graph = new BGraph( "graph3.png" ); - $graph->SetColors( array('green', 'red' ) ); + // Check result icon + $check_result = array( true => 'ok.png', false => 'error.png' ); - $graph->SetData( $data, 'pie', 'text-data-single' ); - $graph->SetGraphSize( 400, 230 ); - - $graph->Render(); + // Checks list + $check_list = array( array( 'check_cmd' => 'php-gettext', + 'check_label' => 'PHP - Gettext support', + 'check_descr' => 'If you want Bacula-web in your language, please compile PHP with Gettext support' ), + array( 'check_cmd' => 'pear-db', + 'check_label' => 'PEAR DB module', + 'check_descr' => 'PEAR DB support not found, please read the Bacula-web installation document'), + array( 'check_cmd' => 'php-gd', + 'check_label' => 'PHP - GD support', + 'check_descr' => 'This is required by phplot, please compile php with GD support'), + array( 'check_cmd' => 'php-mysql', + 'check_label' => 'PHP - MySQL support', + 'check_descr' => 'PHP MySQL support must be installed in order to run bacula-web with MySQL bacula catalog'), + array( 'check_cmd' => 'php-postgres', + 'check_label' => 'PHP - PostgreSQL support', + 'check_descr' => 'PHP PostgreSQL support must be installed in order to run bacula-web with PostgreSQL bacula catalog'), + array( 'check_cmd' => 'smarty-cache', + 'check_label' => 'Smarty cache folder write permission', + 'check_descr' => 'Smarty template engine need write permissions to templates_c folder') + ); - // Parse to template - $bw->tpl->assign( 'checks', $check_list ); - $bw->tpl->assign('graph_test', $graph->Get_Image_file() ); - $bw->tpl->display('test.tpl'); + // Doing all checks + foreach( $check_list as &$check ) { + switch( $check['check_cmd'] ) + { + case 'php-gettext': + $check['check_result'] = $check_result[ function_exists( 'gettext' ) ]; + break; + case 'php-gd': + $check['check_result'] = $check_result[ function_exists( 'gd_info') ]; + break; + case 'pear-db': + $check['check_result'] = $check_result[ class_exists('DB') ]; + break; + case 'php-mysql': + $check['check_result'] = $check_result[ function_exists('mysql_connect') ]; + break; + case 'php-postgres': + $check['check_result'] = $check_result[ function_exists('pg_connect') ]; + break; + case 'smarty-cache': + $check['check_result'] = $check_result[ is_writable( "./templates_c" ) ]; + break; + } + } + + // Generate test graph + $data = array( array('test', 100, 100, 200, 100), array('test1', 150, 100, 150, 100 ) ); + $graph = new BGraph( "graph3.png" ); + $graph->SetColors( array('green', 'red' ) ); + + $graph->SetData( $data, 'pie', 'text-data-single' ); + $graph->SetGraphSize( 400, 230 ); + + $graph->Render(); + + // Parse to template + $bw->tpl->assign( 'checks', $check_list ); + $bw->tpl->assign('graph_test', $graph->Get_Image_file() ); + $bw->tpl->display('test.tpl'); ?>