forked from symfony/symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed a circular reference in the definition of the templating and …
…Twig services * added a new TemplateNameConverter that parses a template name * removed the dependency between the Twig loader and the Templating engine
- Loading branch information
Showing
7 changed files
with
126 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 83 additions & 0 deletions
83
src/Symfony/Bundle/FrameworkBundle/Templating/TemplateNameConverter.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?php | ||
|
||
namespace Symfony\Bundle\FrameworkBundle\Templating; | ||
|
||
use Symfony\Component\DependencyInjection\ContainerInterface; | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
/** | ||
* TemplateNameConverter converts template name from the short notation | ||
* "bundle:section:template(.format).renderer" to a template name | ||
* and an array of options. | ||
* | ||
* @author Fabien Potencier <[email protected]> | ||
*/ | ||
class TemplateNameConverter | ||
{ | ||
protected $container; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param ContainerInterface $container The DI container | ||
*/ | ||
public function __construct(ContainerInterface $container) | ||
{ | ||
$this->container = $container; | ||
} | ||
|
||
/** | ||
* Converts a short template notation to a template name and an array of options. | ||
* | ||
* @param string $name A short template template | ||
* @param array $defaults An array of default options | ||
* | ||
* @return array An array composed of the template name and an array of options | ||
*/ | ||
public function fromShortNotation($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); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters