Files
luos/gulliver/bin/tasks/templates/pluginDrawChart.php.tpl

14 lines
327 B
Smarty
Raw Normal View History

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