initial commit from rev. 632
This commit is contained in:
14
workflow/engine/plugins/openFlash/chart-data.php
Normal file
14
workflow/engine/plugins/openFlash/chart-data.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$chartType = isset ( $_GET['chart']) ? $_GET['chart'] : '1' ;
|
||||
|
||||
// use the chart class to build the chart:
|
||||
require_once ( "class.openFlash.php" );
|
||||
include_once( 'open-flash-chart.php' );
|
||||
$chartsObj = new openFlashClass();
|
||||
|
||||
if ( method_exists( $chartsObj, $chartType) ) {
|
||||
$chartsObj->{$chartType}();
|
||||
die;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user