Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I render a template inside an EventListener in Symfony 2?

class RequestListener
{
    public function __construct() { }

    public function onKernelRequest(GetResponseEvent $event)
    {
        $request  = $event->getRequest();

        // Here I want to render a particular twig template
        $response = new Response('Forbidden', 401);

        // replacing the response...
        $event->setResponse($response);
    }
}

Could you help me with that?

share|improve this question

1 Answer

up vote 15 down vote accepted

When you call $this->render() in a Controller, it's really just a shortcut for $this->container->get('templating')->renderResponse(). If you pass @templating as a constructor argument to your EventListener in your configuration file, you'll be able to do whatever you'd like with the templating engine.

For reference, if you'd like to look at the code of the templating engine, the command ./app/console container:debug says that templating is an instance of Symfony\Bundle\TwigBundle\TwigEngine.

share|improve this answer
It works, thank you! – dmirkitanov Jul 29 '11 at 14:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.