Skip to content

Commit

Permalink
Updates for 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
reportico-web committed Aug 13, 2014
1 parent 48324fb commit 9760ea3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/Reportico/Reportico/fpdf/fpdf.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php namespace Reportico\Reportico;
/******************************************************************************
* Software: FPDF *
* @version 1.52 *
Expand All @@ -7,7 +7,7 @@
* @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL *
******************************************************************************/

if(!class_exists('FPDF', false))
if(!class_exists('Reportico\Reportico\FPDF', false))
{
define('FPDF_VERSION','1.52');

Expand Down
4 changes: 2 additions & 2 deletions src/Reportico/Reportico/fpdf/ufpdf.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php namespace Reportico\Reportico;
/*******************************************************************************
* Software: UFPDF, Unicode Free PDF generator *
* Version: 0.1 *
Expand All @@ -15,7 +15,7 @@
{
define('UFPDF_VERSION','0.1');

if ( !class_exists('FPDF', false) )
if ( !class_exists('Reportico\Reportico\FPDF', false) )
require_once 'fpdf/fpdf.php';

class UFPDF extends FPDF
Expand Down
1 change: 1 addition & 0 deletions src/Reportico/Reportico/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
Route::get('/reportico', 'ReporticoController@reportico');
Route::get('/reportico/graph', 'ReporticoController@graph');
Route::get('/reportico/dbimage', 'ReporticoController@dbimage');
Route::get('/reportico/ajax', 'ReporticoController@ajax');
?>
10 changes: 5 additions & 5 deletions src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
'show_hide_navigation_menu' => "show",
'show_hide_dropdown_menu' => "show",
'show_hide_report_output_title' => "show",
'show_hide_prepare_section_boxes' => "hide",
'show_hide_prepare_pdf_button' => "hide",
'show_hide_prepare_html_button' => "hide",
'show_hide_prepare_section_boxes' => "show",
'show_hide_prepare_pdf_button' => "show",
'show_hide_prepare_html_button' => "show",
'show_hide_prepare_print_html_button' => "show",
'show_hide_prepare_csv_button' => "hide",
'show_hide_prepare_page_style' => "hide",
'show_hide_prepare_csv_button' => "show",
'show_hide_prepare_page_style' => "show",

// Static Menu definition
// ======================
Expand Down

0 comments on commit 9760ea3

Please sign in to comment.