This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bridge/Twig/TwigEngine.php

131 lines
3.4 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bridge\Twig;
use Symfony\Component\Templating\EngineInterface;
use Symfony\Component\Templating\StreamingEngineInterface;
use Symfony\Component\Templating\TemplateNameParserInterface;
use Symfony\Component\Templating\TemplateReferenceInterface;
2017-05-30 11:15:38 +01:00
use Twig\Environment;
use Twig\Error\Error;
use Twig\Error\LoaderError;
use Twig\Loader\ExistsLoaderInterface;
use Twig\Template;
/**
* This engine knows how to render Twig templates.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class TwigEngine implements EngineInterface, StreamingEngineInterface
{
protected $environment;
protected $parser;
2017-05-30 11:15:38 +01:00
public function __construct(Environment $environment, TemplateNameParserInterface $parser)
{
$this->environment = $environment;
$this->parser = $parser;
}
/**
* {@inheritdoc}
*
2017-05-30 11:15:38 +01:00
* It also supports Template as name parameter.
*
2017-05-30 11:15:38 +01:00
* @throws Error if something went wrong like a thrown exception while rendering the template
*/
2019-01-16 09:39:14 +00:00
public function render($name, array $parameters = [])
{
return $this->load($name)->render($parameters);
}
/**
* {@inheritdoc}
*
2017-05-30 11:15:38 +01:00
* It also supports Template as name parameter.
*
2017-05-30 11:15:38 +01:00
* @throws Error if something went wrong like a thrown exception while rendering the template
*/
2019-01-16 09:39:14 +00:00
public function stream($name, array $parameters = [])
{
$this->load($name)->display($parameters);
}
/**
* {@inheritdoc}
*
2017-05-30 11:15:38 +01:00
* It also supports Template as name parameter.
*/
public function exists($name)
{
2017-05-30 11:15:38 +01:00
if ($name instanceof Template) {
return true;
}
$loader = $this->environment->getLoader();
2017-05-30 11:15:38 +01:00
if ($loader instanceof ExistsLoaderInterface || method_exists($loader, 'exists')) {
return $loader->exists((string) $name);
}
try {
// cast possible TemplateReferenceInterface to string because the
2017-05-30 11:15:38 +01:00
// EngineInterface supports them but LoaderInterface does not
$loader->getSourceContext((string) $name)->getCode();
2017-05-30 11:15:38 +01:00
} catch (LoaderError $e) {
return false;
}
return true;
}
/**
* {@inheritdoc}
*
2017-05-30 11:15:38 +01:00
* It also supports Template as name parameter.
*/
public function supports($name)
{
2017-05-30 11:15:38 +01:00
if ($name instanceof Template) {
return true;
}
$template = $this->parser->parse($name);
return 'twig' === $template->get('engine');
}
/**
* Loads the given template.
*
2017-05-30 11:15:38 +01:00
* @param string|TemplateReferenceInterface|Template $name A template name or an instance of
* TemplateReferenceInterface or Template
*
2017-05-30 11:15:38 +01:00
* @return Template
*
* @throws \InvalidArgumentException if the template does not exist
*/
protected function load($name)
{
2017-05-30 11:15:38 +01:00
if ($name instanceof Template) {
return $name;
}
try {
return $this->environment->loadTemplate((string) $name);
2017-05-30 11:15:38 +01:00
} catch (LoaderError $e) {
throw new \InvalidArgumentException($e->getMessage(), $e->getCode(), $e);
}
}
}