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/Bundle/FrameworkBundle/Templating/TemplateNameParser.php
Fabien Potencier 055b6e4d6e made a big refactoring of the templating sub-framework
* better separation of concerns
 * made TwigBundle independant of the PHP Engine from FrameworkBundle (WIP)
 * removed one layer of abstraction in the Templating component (renderers)
 * made it easier to create a new Engine for any templating library
 * made engines lazy-loaded (PHP engine for instance is not started if you only use Twig)
 * reduces memory footprint (if you only use one engine)
 * reduces size of compiled classes.php cache file
2011-01-15 07:43:05 +01:00

85 lines
2.5 KiB
PHP

<?php
namespace Symfony\Bundle\FrameworkBundle\Templating;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Templating\TemplateNameParser as BaseTemplateNameParser;
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* TemplateNameParser parsers template name from the short notation
* "bundle:section:template(.format).renderer" to a template name
* and an array of options.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class TemplateNameParser extends BaseTemplateNameParser
{
protected $container;
/**
* Constructor.
*
* @param ContainerInterface $container The DI container
*/
public function __construct(ContainerInterface $container)
{
$this->container = $container;
}
/**
* Parses a template to a template name and an array of options.
*
* @param string $name A template name
* @param array $defaults An array of default options
*
* @return array An array composed of the template name and an array of options
*/
public function parse($name, array $defaults = array())
{
$parts = explode(':', $name);
if (3 !== count($parts)) {
throw new \InvalidArgumentException(sprintf('Template name "%s" is not valid.', $name));
}
$options = array_replace(
array(
'format' => '',
),
$defaults,
array(
'bundle' => str_replace('\\', '/', $parts[0]),
'controller' => $parts[1],
)
);
$elements = explode('.', $parts[2]);
if (3 === count($elements)) {
$parts[2] = $elements[0];
if ('html' !== $elements[1]) {
$options['format'] = '.'.$elements[1];
}
$options['renderer'] = $elements[2];
} elseif (2 === count($elements)) {
$parts[2] = $elements[0];
$options['renderer'] = $elements[1];
$format = $this->container->get('request')->getRequestFormat();
if (null !== $format && 'html' !== $format) {
$options['format'] = '.'.$format;
}
} else {
throw new \InvalidArgumentException(sprintf('Template name "%s" is not valid.', $name));
}
return array($parts[2], $options);
}
}