diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 22:43:56 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 22:43:56 +0200 |
commit | 8069e235fd2971675ee5fc05026ffa9bce5cbbb7 (patch) | |
tree | 872eaed228b5e1b031c21770fba1701106a52a39 /inc/3rdparty/Twig/Extensions/TokenParser | |
parent | 45161a64026cec35fcf07659508143a6f55ddf57 (diff) | |
download | wallabag-8069e235fd2971675ee5fc05026ffa9bce5cbbb7.tar.gz wallabag-8069e235fd2971675ee5fc05026ffa9bce5cbbb7.tar.zst wallabag-8069e235fd2971675ee5fc05026ffa9bce5cbbb7.zip |
move Twig in 3rdparty
Diffstat (limited to 'inc/3rdparty/Twig/Extensions/TokenParser')
-rw-r--r-- | inc/3rdparty/Twig/Extensions/TokenParser/Debug.php | 42 | ||||
-rw-r--r-- | inc/3rdparty/Twig/Extensions/TokenParser/Trans.php | 80 |
2 files changed, 122 insertions, 0 deletions
diff --git a/inc/3rdparty/Twig/Extensions/TokenParser/Debug.php b/inc/3rdparty/Twig/Extensions/TokenParser/Debug.php new file mode 100644 index 00000000..4a7dfcc0 --- /dev/null +++ b/inc/3rdparty/Twig/Extensions/TokenParser/Debug.php | |||
@@ -0,0 +1,42 @@ | |||
1 | <?php | ||
2 | |||
3 | /* | ||
4 | * This file is part of Twig. | ||
5 | * | ||
6 | * (c) 2009-2010 Fabien Potencier | ||
7 | * | ||
8 | * For the full copyright and license information, please view the LICENSE | ||
9 | * file that was distributed with this source code. | ||
10 | */ | ||
11 | class Twig_Extensions_TokenParser_Debug extends Twig_TokenParser | ||
12 | { | ||
13 | /** | ||
14 | * Parses a token and returns a node. | ||
15 | * | ||
16 | * @param Twig_Token $token A Twig_Token instance | ||
17 | * | ||
18 | * @return Twig_NodeInterface A Twig_NodeInterface instance | ||
19 | */ | ||
20 | public function parse(Twig_Token $token) | ||
21 | { | ||
22 | $lineno = $token->getLine(); | ||
23 | |||
24 | $expr = null; | ||
25 | if (!$this->parser->getStream()->test(Twig_Token::BLOCK_END_TYPE)) { | ||
26 | $expr = $this->parser->getExpressionParser()->parseExpression(); | ||
27 | } | ||
28 | $this->parser->getStream()->expect(Twig_Token::BLOCK_END_TYPE); | ||
29 | |||
30 | return new Twig_Extensions_Node_Debug($expr, $lineno, $this->getTag()); | ||
31 | } | ||
32 | |||
33 | /** | ||
34 | * Gets the tag name associated with this token parser. | ||
35 | * | ||
36 | * @param string The tag name | ||
37 | */ | ||
38 | public function getTag() | ||
39 | { | ||
40 | return 'debug'; | ||
41 | } | ||
42 | } | ||
diff --git a/inc/3rdparty/Twig/Extensions/TokenParser/Trans.php b/inc/3rdparty/Twig/Extensions/TokenParser/Trans.php new file mode 100644 index 00000000..5e2dc464 --- /dev/null +++ b/inc/3rdparty/Twig/Extensions/TokenParser/Trans.php | |||
@@ -0,0 +1,80 @@ | |||
1 | <?php | ||
2 | |||
3 | /* | ||
4 | * This file is part of Twig. | ||
5 | * | ||
6 | * (c) 2010 Fabien Potencier | ||
7 | * | ||
8 | * For the full copyright and license information, please view the LICENSE | ||
9 | * file that was distributed with this source code. | ||
10 | */ | ||
11 | class Twig_Extensions_TokenParser_Trans extends Twig_TokenParser | ||
12 | { | ||
13 | /** | ||
14 | * Parses a token and returns a node. | ||
15 | * | ||
16 | * @param Twig_Token $token A Twig_Token instance | ||
17 | * | ||
18 | * @return Twig_NodeInterface A Twig_NodeInterface instance | ||
19 | */ | ||
20 | public function parse(Twig_Token $token) | ||
21 | { | ||
22 | $lineno = $token->getLine(); | ||
23 | $stream = $this->parser->getStream(); | ||
24 | $count = null; | ||
25 | $plural = null; | ||
26 | |||
27 | if (!$stream->test(Twig_Token::BLOCK_END_TYPE)) { | ||
28 | $body = $this->parser->getExpressionParser()->parseExpression(); | ||
29 | } else { | ||
30 | $stream->expect(Twig_Token::BLOCK_END_TYPE); | ||
31 | $body = $this->parser->subparse(array($this, 'decideForFork')); | ||
32 | if ('plural' === $stream->next()->getValue()) { | ||
33 | $count = $this->parser->getExpressionParser()->parseExpression(); | ||
34 | $stream->expect(Twig_Token::BLOCK_END_TYPE); | ||
35 | $plural = $this->parser->subparse(array($this, 'decideForEnd'), true); | ||
36 | } | ||
37 | } | ||
38 | |||
39 | $stream->expect(Twig_Token::BLOCK_END_TYPE); | ||
40 | |||
41 | $this->checkTransString($body, $lineno); | ||
42 | |||
43 | return new Twig_Extensions_Node_Trans($body, $plural, $count, $lineno, $this->getTag()); | ||
44 | } | ||
45 | |||
46 | public function decideForFork(Twig_Token $token) | ||
47 | { | ||
48 | return $token->test(array('plural', 'endtrans')); | ||
49 | } | ||
50 | |||
51 | public function decideForEnd(Twig_Token $token) | ||
52 | { | ||
53 | return $token->test('endtrans'); | ||
54 | } | ||
55 | |||
56 | /** | ||
57 | * Gets the tag name associated with this token parser. | ||
58 | * | ||
59 | * @param string The tag name | ||
60 | */ | ||
61 | public function getTag() | ||
62 | { | ||
63 | return 'trans'; | ||
64 | } | ||
65 | |||
66 | protected function checkTransString(Twig_NodeInterface $body, $lineno) | ||
67 | { | ||
68 | foreach ($body as $i => $node) { | ||
69 | if ( | ||
70 | $node instanceof Twig_Node_Text | ||
71 | || | ||
72 | ($node instanceof Twig_Node_Print && $node->getNode('expr') instanceof Twig_Node_Expression_Name) | ||
73 | ) { | ||
74 | continue; | ||
75 | } | ||
76 | |||
77 | throw new Twig_Error_Syntax(sprintf('The text to be translated with "trans" can only contain references to simple variables'), $lineno); | ||
78 | } | ||
79 | } | ||
80 | } | ||