Home
last modified time | relevance | path

Searched refs:Twig (Results 51 – 75 of 626) sorted by relevance

12345678910>>...26

/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DMacroTokenParser.php12 namespace Twig\TokenParser;
14 use Twig\Error\SyntaxError;
15 use Twig\Node\BodyNode;
16 use Twig\Node\MacroNode;
17 use Twig\Token;
H A DIfTokenParser.php13 namespace Twig\TokenParser;
15 use Twig\Error\SyntaxError;
16 use Twig\Node\IfNode;
17 use Twig\Node\Node;
18 use Twig\Token;
H A DImportTokenParser.php12 namespace Twig\TokenParser;
14 use Twig\Node\Expression\AssignNameExpression;
15 use Twig\Node\ImportNode;
16 use Twig\Token;
H A DEmbedTokenParser.php12 namespace Twig\TokenParser;
14 use Twig\Node\EmbedNode;
15 use Twig\Node\Expression\ConstantExpression;
16 use Twig\Node\Expression\NameExpression;
17 use Twig\Token;
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DSandboxedPrintNode.php12 namespace Twig\Node;
14 use Twig\Compiler;
15 use Twig\Node\Expression\ConstantExpression;
16 use Twig\Node\Expression\FilterExpression;
H A DDeprecatedNode.php12 namespace Twig\Node;
14 use Twig\Compiler;
15 use Twig\Node\Expression\AbstractExpression;
16 use Twig\Node\Expression\ConstantExpression;
H A DImportNode.php12 namespace Twig\Node;
14 use Twig\Compiler;
15 use Twig\Node\Expression\AbstractExpression;
16 use Twig\Node\Expression\NameExpression;
H A DEmbedNode.php12 namespace Twig\Node;
14 use Twig\Compiler;
15 use Twig\Node\Expression\AbstractExpression;
16 use Twig\Node\Expression\ConstantExpression;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DImportTest.php12 use Twig\Node\Expression\AssignNameExpression;
13 use Twig\Node\Expression\ConstantExpression;
14 use Twig\Node\ImportNode;
15 use Twig\Test\NodeTestCase;
H A DForTest.php12 use Twig\Node\Expression\AssignNameExpression;
13 use Twig\Node\Expression\ConstantExpression;
14 use Twig\Node\Expression\NameExpression;
15 use Twig\Node\ForNode;
16 use Twig\Node\Node;
17 use Twig\Node\PrintNode;
18 use Twig\Test\NodeTestCase;
H A DIncludeTest.php12 use Twig\Node\Expression\ArrayExpression;
13 use Twig\Node\Expression\ConditionalExpression;
14 use Twig\Node\Expression\ConstantExpression;
15 use Twig\Node\IncludeNode;
16 use Twig\Test\NodeTestCase;
/plugin/findologicxmlexport/vendor/twig/twig/
H A DREADME.rst1 Twig, the flexible, fast, and secure template language for PHP
4 Twig is a template language for PHP, released under the new BSD license (code
7 Twig uses a syntax similar to the Django and Jinja template languages which
8 inspired the Twig runtime environment.
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dnumber_format.rst5 The ``number_format`` filter was added in Twig 1.5
22 Twig's :ref:`precedence of operators <twig-expressions>`:
29 If no formatting options are provided then Twig will use the default formatting
40 $twig = new \Twig\Environment($loader);
41 $twig->getExtension('\Twig\Extension\CoreExtension')->setNumberFormat(3, '.', ',');
43 // before Twig 1.26
H A Durl_encode.rst5 Support for encoding an array as query string was added in Twig 1.12.3.
8 The ``raw`` argument was removed in Twig 1.16.0. Twig now always encodes
27 Internally, Twig uses the PHP `urlencode`_ (or `rawurlencode`_ if you pass
29 that as of Twig 1.16.0, ``urlencode`` **always** uses ``rawurlencode`` (the
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DFunctionTest.php12 use Twig\Environment;
13 use Twig\Node\Expression\ConstantExpression;
14 use Twig\Node\Expression\FunctionExpression;
15 use Twig\Node\Node;
16 use Twig\Test\NodeTestCase;
17 use Twig\TwigFunction;
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DEscaperExtension.php12 namespace Twig\Extension {
13 use Twig\NodeVisitor\EscaperNodeVisitor;
14 use Twig\TokenParser\AutoEscapeTokenParser;
15 use Twig\TwigFilter;
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dinclude.rst15 As of Twig 1.12, it is recommended to use the
67 sandboxing it. More information in the :doc:`Twig for Developers<../api>`
70 The template name can be any valid Twig expression:
77 And if the expression evaluates to a ``\Twig\Template`` or a
78 ``\Twig\TemplateWrapper`` instance, Twig will use it directly::
82 // deprecated as of Twig 1.28
85 // as of Twig 1.28
91 The ``ignore missing`` feature has been added in Twig 1.2.
93 You can mark an include with ``ignore missing`` in which case Twig will ignore
104 The possibility to pass an array of templates has been added in Twig 1.2.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/
H A DFilterInclude.php3 $env = new \Twig\Environment(new \Twig\Loader\ArrayLoader([]));
4 $env->addFilter(new \Twig\TwigFilter('anonymous', function () {}));
H A DFunctionInclude.php3 $env = new \Twig\Environment(new \Twig\Loader\ArrayLoader([]));
4 $env->addFunction(new \Twig\TwigFunction('anonymous', function () {}));
H A DTestInclude.php3 $env = new \Twig\Environment(new \Twig\Loader\ArrayLoader([]));
4 $env->addTest(new \Twig\TwigTest('anonymous', function () {}));
/plugin/findologicxmlexport/vendor/twig/twig/src/Util/
H A DDeprecationCollector.php12 namespace Twig\Util;
14 use Twig\Environment;
15 use Twig\Error\SyntaxError;
16 use Twig\Source;
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/
H A DParserInterface.php12 use Twig\Error\SyntaxError;
13 use Twig\Node\ModuleNode;
14 use Twig\TokenStream;
H A DLexerInterface.php12 use Twig\Error\SyntaxError;
13 use Twig\Source;
14 use Twig\TokenStream;
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
H A DSourceContextLoaderInterface.php12 namespace Twig\Loader;
14 use Twig\Error\LoaderError;
15 use Twig\Source;
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Test/
H A DNullTest.php12 namespace Twig\Node\Expression\Test;
14 use Twig\Compiler;
15 use Twig\Node\Expression\TestExpression;

12345678910>>...26