1 | <?php |
||
23 | class TwigUserFuncController |
||
24 | { |
||
25 | /** |
||
26 | * @Inject("twig") |
||
27 | * |
||
28 | * @var \Twig_Environment |
||
29 | */ |
||
30 | protected $twig; |
||
31 | |||
32 | /** |
||
33 | * @Route("/twiguserfunc") |
||
34 | */ |
||
35 | public function index(Application $app) |
||
36 | { |
||
37 | return $this->twig |
||
38 | ->createTemplate("{{ eccube_block_hello({'name':'EC-CUBE'}) }}") |
||
39 | ->render([]); |
||
40 | } |
||
41 | } |
||
42 |