vendor/symfony/twig-bundle/TwigEngine.php line 45

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\TwigBundle;
  11. use Symfony\Bridge\Twig\TwigEngine as BaseEngine;
  12. use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;
  13. use Symfony\Bundle\FrameworkBundle\Templating\TemplateReference;
  14. use Symfony\Component\Config\FileLocatorInterface;
  15. use Symfony\Component\HttpFoundation\Response;
  16. use Symfony\Component\Templating\TemplateNameParserInterface;
  17. use Twig\Environment;
  18. use Twig\Error\Error;
  19. /**
  20.  * This engine renders Twig templates.
  21.  *
  22.  * @author Fabien Potencier <fabien@symfony.com>
  23.  */
  24. class TwigEngine extends BaseEngine implements EngineInterface
  25. {
  26.     protected $locator;
  27.     public function __construct(Environment $environmentTemplateNameParserInterface $parserFileLocatorInterface $locator)
  28.     {
  29.         parent::__construct($environment$parser);
  30.         $this->locator $locator;
  31.     }
  32.     /**
  33.      * {@inheritdoc}
  34.      */
  35.     public function render($name, array $parameters = [])
  36.     {
  37.         try {
  38.             return parent::render($name$parameters);
  39.         } catch (Error $e) {
  40.             if ($name instanceof TemplateReference && !method_exists($e'setSourceContext')) {
  41.                 try {
  42.                     // try to get the real name of the template where the error occurred
  43.                     $name $e->getTemplateName();
  44.                     $path = (string) $this->locator->locate($this->parser->parse($name));
  45.                     $e->setTemplateName($path);
  46.                 } catch (\Exception $e2) {
  47.                 }
  48.             }
  49.             throw $e;
  50.         }
  51.     }
  52.     /**
  53.      * {@inheritdoc}
  54.      *
  55.      * @throws Error if something went wrong like a thrown exception while rendering the template
  56.      */
  57.     public function renderResponse($view, array $parameters = [], Response $response null)
  58.     {
  59.         if (null === $response) {
  60.             $response = new Response();
  61.         }
  62.         $response->setContent($this->render($view$parameters));
  63.         return $response;
  64.     }
  65. }