Files
luos/gulliver/bin/tasks/templates/pluginDrawChart.php.tpl
2011-12-07 09:34:43 -04:00

14 lines
327 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;
}