mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
<?php namespace Cms\Twig;
|
|
|
|
use Twig\Node\Node as TwigNode;
|
|
use Twig\Token as TwigToken;
|
|
use Twig\TokenParser\AbstractTokenParser as TwigTokenParser;
|
|
|
|
/**
|
|
* Parser for the {% flash %} Twig tag.
|
|
*
|
|
* @package winter\wn-cms-module
|
|
* @author Alexey Bobkov, Samuel Georges
|
|
*/
|
|
class FlashTokenParser extends TwigTokenParser
|
|
{
|
|
/**
|
|
* Parses a token and returns a node.
|
|
*
|
|
* @param TwigToken $token A TwigToken instance
|
|
*
|
|
* @return TwigNode A TwigNode instance
|
|
*/
|
|
public function parse(TwigToken $token)
|
|
{
|
|
$lineno = $token->getLine();
|
|
$stream = $this->parser->getStream();
|
|
|
|
if ($token = $stream->nextIf(TwigToken::NAME_TYPE)) {
|
|
$name = $token->getValue();
|
|
}
|
|
else {
|
|
$name = 'all';
|
|
}
|
|
$stream->expect(TwigToken::BLOCK_END_TYPE);
|
|
|
|
$body = $this->parser->subparse([$this, 'decideIfEnd'], true);
|
|
$stream->expect(TwigToken::BLOCK_END_TYPE);
|
|
|
|
return new FlashNode($name, $body, $lineno, $this->getTag());
|
|
}
|
|
|
|
public function decideIfEnd(TwigToken $token)
|
|
{
|
|
return $token->test(['endflash']);
|
|
}
|
|
|
|
/**
|
|
* Gets the tag name associated with this token parser.
|
|
*
|
|
* @return string The tag name
|
|
*/
|
|
public function getTag()
|
|
{
|
|
return 'flash';
|
|
}
|
|
}
|