|
@@ -1,164 +0,0 @@
|
|
|
-<?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\Bundle\TwigBundle\Extension;
|
|
|
-
|
|
|
-use Symfony\Component\DependencyInjection\ContainerInterface;
|
|
|
-use Symfony\Bundle\TwigBundle\TokenParser\RenderTokenParser;
|
|
|
-
|
|
|
-/**
|
|
|
- *
|
|
|
- * @author Fabien Potencier <fabien@symfony.com>
|
|
|
- */
|
|
|
-class TemplatingExtension extends \Twig_Extension
|
|
|
-{
|
|
|
- protected $container;
|
|
|
-
|
|
|
- public function __construct(ContainerInterface $container)
|
|
|
- {
|
|
|
- $this->container = $container;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * {@inheritdoc}
|
|
|
- */
|
|
|
- public function getFilters()
|
|
|
- {
|
|
|
- return array(
|
|
|
- 'abbr_class' => new \Twig_Filter_Method($this, 'abbrClass', array('is_safe' => array('html'))),
|
|
|
- 'abbr_method' => new \Twig_Filter_Method($this, 'abbrMethod', array('is_safe' => array('html'))),
|
|
|
- 'format_args' => new \Twig_Filter_Method($this, 'formatArgs', array('is_safe' => array('html'))),
|
|
|
- 'format_args_as_text' => new \Twig_Filter_Method($this, 'formatArgsAsText'),
|
|
|
- 'file_excerpt' => new \Twig_Filter_Method($this, 'fileExcerpt', array('is_safe' => array('html'))),
|
|
|
- 'format_file' => new \Twig_Filter_Method($this, 'formatFile', array('is_safe' => array('html'))),
|
|
|
- 'format_file_from_text' => new \Twig_Filter_Method($this, 'formatFileFromText', array('is_safe' => array('html'))),
|
|
|
- 'file_link' => new \Twig_Filter_Method($this, 'getFileLink', array('is_safe' => array('html'))),
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Returns a list of functions to add to the existing list.
|
|
|
- *
|
|
|
- * @return array An array of functions
|
|
|
- */
|
|
|
- public function getFunctions()
|
|
|
- {
|
|
|
- return array(
|
|
|
- 'asset' => new \Twig_Function_Method($this, 'getAssetUrl'),
|
|
|
- 'assets_version' => new \Twig_Function_Method($this, 'getAssetsVersion'),
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Returns the public path of an asset
|
|
|
- *
|
|
|
- * Absolute paths (i.e. http://...) are returned unmodified.
|
|
|
- *
|
|
|
- * @param string $path A public path
|
|
|
- * @param string $packageName The name of the asset package to use
|
|
|
- *
|
|
|
- * @return string A public path which takes into account the base path and URL path
|
|
|
- */
|
|
|
- public function getAssetUrl($path, $packageName = null)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.assets')->getUrl($path, $packageName);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Returns the version of the assets in a package
|
|
|
- *
|
|
|
- * @param string $packageName
|
|
|
- * @return int
|
|
|
- */
|
|
|
- public function getAssetsVersion($packageName = null)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.assets')->getVersion($packageName);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Returns the Response content for a given controller or URI.
|
|
|
- *
|
|
|
- * @param string $controller A controller name to execute (a string like BlogBundle:Post:index), or a relative URI
|
|
|
- * @param array $attributes An array of request attributes
|
|
|
- * @param array $options An array of options
|
|
|
- *
|
|
|
- * @see Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver::render()
|
|
|
- */
|
|
|
- public function renderAction($controller, array $attributes = array(), array $options = array())
|
|
|
- {
|
|
|
- $options['attributes'] = $attributes;
|
|
|
-
|
|
|
- return $this->container->get('http_kernel')->render($controller, $options);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Returns the token parser instance to add to the existing list.
|
|
|
- *
|
|
|
- * @return array An array of Twig_TokenParser instances
|
|
|
- */
|
|
|
- public function getTokenParsers()
|
|
|
- {
|
|
|
- return array(
|
|
|
- // {% render 'BlogBundle:Post:list' with { 'limit': 2 }, { 'alt': 'BlogBundle:Post:error' } %}
|
|
|
- new RenderTokenParser(),
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- public function abbrClass($class)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->abbrClass($class);
|
|
|
- }
|
|
|
-
|
|
|
- public function abbrMethod($method)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->abbrMethod($method);
|
|
|
- }
|
|
|
-
|
|
|
- public function formatArgs($args)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->formatArgs($args);
|
|
|
- }
|
|
|
-
|
|
|
- public function formatArgsAsText($args)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->formatArgsAsText($args);
|
|
|
- }
|
|
|
-
|
|
|
- public function fileExcerpt($file, $line)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->fileExcerpt($file, $line);
|
|
|
- }
|
|
|
-
|
|
|
- public function formatFile($file, $line, $text = null)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->formatFile($file, $line, $text);
|
|
|
- }
|
|
|
-
|
|
|
- public function getFileLink($file, $line)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->getFileLink($file, $line);
|
|
|
- }
|
|
|
-
|
|
|
- public function formatFileFromText($text)
|
|
|
- {
|
|
|
- return $this->container->get('templating.helper.code')->formatFileFromText($text);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Returns the name of the extension.
|
|
|
- *
|
|
|
- * @return string The extension name
|
|
|
- */
|
|
|
- public function getName()
|
|
|
- {
|
|
|
- return 'templating';
|
|
|
- }
|
|
|
-}
|