Files
luos/gulliver/bin/tasks/templates/pluginDrawChart.php.tpl
2010-12-02 23:34:41 +00:00

14 lines
340 B
Smarty
Executable File

<?php
//header("Content-type: image/png");
$chartType = isset ( $_GET['chart']) ? $_GET['chart'] : '1' ;
// use the chart class to build the chart:
include_once ( "class.{className}.php" );
$chartsObj = new {className}Class();
if ( method_exists( $chartsObj, $chartType) ) {
$chartsObj->{ $chartType }();
die;
}