-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TwigBundle] split the route tag to 2 tags: path and url
- Loading branch information
Showing
4 changed files
with
151 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
namespace Symfony\Bundle\TwigBundle\Node; | ||
|
||
/* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* | ||
* | ||
* @author Fabien Potencier <fabien.potencier@symfony-project.com> | ||
*/ | ||
class RouteNode extends \Twig_Node | ||
{ | ||
public function __construct(\Twig_NodeInterface $route, \Twig_Node_Expression $attributes = null, $absolute, $lineno, $tag = null) | ||
{ | ||
parent::__construct(array('route' => $route, 'route_attributes' => $attributes), array('absolute' => $absolute), $lineno, $tag); | ||
} | ||
|
||
/** | ||
* Compiles the node to PHP. | ||
* | ||
* @param \Twig_Compiler A Twig_Compiler instance | ||
*/ | ||
public function compile($compiler) | ||
{ | ||
$compiler | ||
->addDebugInfo($this) | ||
->write('echo $this->env->getExtension(\'templating\')->getContainer()->get(\'router\')->generate(') | ||
->subcompile($this->getNode('route')) | ||
->raw(', ') | ||
->subcompile($this->getNode('route_attributes')) | ||
->raw(', ') | ||
->raw($this->getAttribute('absolute') ? 'true' : 'false') | ||
->raw(");") | ||
; | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
src/Symfony/Bundle/TwigBundle/TokenParser/PathTokenParser.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,62 @@ | ||
<?php | ||
|
||
namespace Symfony\Bundle\TwigBundle\TokenParser; | ||
|
||
use Symfony\Bundle\TwigBundle\Node\RouteNode; | ||
|
||
/* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* | ||
* | ||
* @author Fabien Potencier <fabien.potencier@symfony-project.com> | ||
*/ | ||
class PathTokenParser extends \Twig_TokenParser | ||
{ | ||
/** | ||
* Parses a token and returns a node. | ||
* | ||
* @param \Twig_Token $token A Twig_Token instance | ||
* | ||
* @return \Twig_NodeInterface A Twig_NodeInterface instance | ||
*/ | ||
public function parse(\Twig_Token $token) | ||
{ | ||
$lineno = $token->getLine(); | ||
$stream = $this->parser->getStream(); | ||
|
||
$route = $this->parser->getExpressionParser()->parseExpression(); | ||
|
||
$attributes = null; | ||
if ($stream->test('with')) { | ||
$stream->next(); | ||
$attributes = $this->parser->getExpressionParser()->parseExpression(); | ||
} | ||
|
||
$stream->expect(\Twig_Token::BLOCK_END_TYPE); | ||
|
||
return new RouteNode($route, $attributes, $this->isAbsolute(), $lineno, $this->getTag()); | ||
} | ||
|
||
protected function isAbsolute() | ||
{ | ||
return false; | ||
} | ||
|
||
/** | ||
* Gets the tag name associated with this token parser. | ||
* | ||
* @param string The tag name | ||
*/ | ||
public function getTag() | ||
{ | ||
return 'path'; | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
src/Symfony/Bundle/TwigBundle/TokenParser/UrlTokenParser.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,37 @@ | ||
<?php | ||
|
||
namespace Symfony\Bundle\TwigBundle\TokenParser; | ||
|
||
use Symfony\Bundle\TwigBundle\Node\RouteNode; | ||
|
||
/* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* | ||
* | ||
* @author Fabien Potencier <fabien.potencier@symfony-project.com> | ||
*/ | ||
class UrlTokenParser extends PathTokenParser | ||
{ | ||
protected function isAbsolute() | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* Gets the tag name associated with this token parser. | ||
* | ||
* @param string The tag name | ||
*/ | ||
public function getTag() | ||
{ | ||
return 'url'; | ||
} | ||
} |