1 | <?php |
||
6 | class HighchartsExtension extends \Twig_Extension |
||
7 | { |
||
8 | public function getFunctions() |
||
9 | { |
||
10 | return array( |
||
11 | new \Twig_SimpleFunction('chart', array($this, 'chart'), array('is_safe' => array('html'))), |
||
12 | ); |
||
13 | } |
||
14 | |||
15 | 1 | public function chart(ChartInterface $chart, $engine = 'jquery') |
|
19 | |||
20 | 1 | public function getName() |
|
24 | } |
||
25 |