Home
last modified time | relevance | path

Searched refs:Twig (Results 576 – 600 of 626) sorted by last modified time

1...<<212223242526

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
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 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 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;
H A DMacroTest.php12 use Twig\Node\Expression\ConstantExpression;
13 use Twig\Node\Expression\NameExpression;
14 use Twig\Node\MacroNode;
15 use Twig\Node\Node;
16 use Twig\Node\TextNode;
17 use Twig\Test\NodeTestCase;
H A DPrintTest.php12 use Twig\Node\Expression\ConstantExpression;
13 use Twig\Node\PrintNode;
14 use Twig\Test\NodeTestCase;
H A DSandboxTest.php12 use Twig\Node\SandboxNode;
13 use Twig\Node\TextNode;
14 use Twig\Test\NodeTestCase;
H A DSetTest.php12 use Twig\Node\Expression\AssignNameExpression;
13 use Twig\Node\Expression\ConstantExpression;
14 use Twig\Node\Expression\NameExpression;
15 use Twig\Node\Node;
16 use Twig\Node\PrintNode;
17 use Twig\Node\SetNode;
18 use Twig\Node\TextNode;
19 use Twig\Test\NodeTestCase;
H A DTextTest.php12 use Twig\Node\TextNode;
13 use Twig\Test\NodeTestCase;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/
H A DHtmlTest.php12 use Twig\Profiler\Dumper\HtmlDumper;
H A DTextTest.php12 use Twig\Profiler\Dumper\TextDumper;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Util/
H A DDeprecationCollectorTest.php12 use Twig\Environment;
13 use Twig\TwigFunction;
14 use Twig\Util\DeprecationCollector;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DescapingTest.php154 …$this->env = new \Twig\Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/
H A Dsandbox.test13 Twig\Sandbox\SecurityNotAllowedFilterError: Filter "e" is not allowed in "foo.twig" at line 4.
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Di18n.rst7 The ``i18n`` extension adds `gettext`_ support to Twig. It defines one tag,
137 If you use the Twig I18n extension, you will probably need to extract the
143 Poedit 2 has native support for extracting from Twig files and no extra
149 Unfortunately, the ``xgettext`` utility does not understand Twig templates
151 But there is a simple workaround: as Twig converts templates to
167 // configure Twig the way you want
185 Another workaround is to use `Twig Gettext Extractor`_ and extract the template
190 .. _`Twig Gettext Extractor`: https://github.com/umpirsky/Twig-Gettext-Extractor
H A Dtext.rst13 the extension to Twig::
/plugin/findologicxmlexport/vendor/twig/extensions/src/
H A DArrayExtension.php3 namespace Twig\Extensions;
H A DIntlExtension.php3 namespace Twig\Extensions;
/plugin/findologicxmlexport/vendor/twig/extensions/src/Node/
H A DTransNode.php3 namespace Twig\Extensions\Node;
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG29 * added the possibility to pass a TemplateWrapper to Twig\Environment::load()
35 * added Twig\Loader\ChainLoader::getLoaders()
123 * fixed edge case in the method cache for Twig attributes
178 * added support for the PHP 7 null coalescing operator for the ?? Twig implementation
222 * fixed Twig cache sharing when used with different versions of PHP
279 * changed template cache names to take into account the Twig C extension
318 * forbid access to the Twig environment from templates and internal parts of Twig_Template
506 * optimized the way Twig exceptions are managed (to make them faster)
618 * fixed Twig C extension
806 * removed the grammar and simple token parser (moved to the Twig Extensions repository)
[all …]
H A DLICENSE1 Copyright (c) 2009-2019 by the Twig Team.
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/
H A Dadvanced.rst1 Extending Twig
6 This section describes how to extend Twig as of **Twig 1.12**. If you are
23 When extending Twig without creating an extension, Twig won't be able to
161 {{ 'Twig'|rot13 }}
344 $test = new \Twig\TwigTest(
753 to the Twig environment::
877 As of Twig 1.32, Twig comes with a PSR-11 compatible runtime loader
999 ``\Twig\Test\NodeTestCase``. Examples can be found in the Twig repository
1000 `tests/Twig/Node`_ directory.
1003 .. _`tests/Twig/Fixtures`: https://github.com/twigphp/Twig/tree/master/test/Twig/Tests/Fixtures
[all …]
H A Dapi.rst1 Twig for Developers
57 ``\Twig\Template`` instance.
169 ``\Twig\Loader\FilesystemLoader``
224 ``\Twig\Loader\ArrayLoader``
248 ``\Twig\Loader\ChainLoader``
323 As of Twig 1.11.0, you can also implement ``\Twig\Loader\ExistsLoaderInterface``
329 Twig extensions are packages that add new features to Twig. Using an
344 * *Twig_Extension_Profiler*: Enabled the built-in Twig profiler (as of Twig
393 Twig 1.8):
424 {{ foo ? "Twig<br />" : "<br />Twig" }} {# won't be escaped #}
[all …]
H A Dcoding_standards.rst4 When writing Twig templates, we recommend you to follow these official coding
H A Ddeprecated.rst6 feature that was deprecated in Twig 1.x is removed in Twig 2.0).
11 As of Twig 1.21, Twig generates deprecation notices when a template uses
33 * As of Twig 1.27, ``\Twig\Parser::getEnvironment()`` is deprecated.
75 removed in Twig 3.x (use ``Twig_Filter`` instead). In Twig 2.x,
109 removed in Twig 3.x (use ``Twig_Test`` instead). In Twig 2.x,
129 Twig 2.x.
134 * As of Twig 1.27, the ``\Twig\Node\Node::getFilename()/\Twig\Node\Node::getLine()``
197 * As of Twig 1.x, ``\Twig\Environment::clearTemplateCache()``,
205 * As of Twig 1.x, ``\Twig\Template::getEnvironment()`` and
212 * As of Twig 1.27, ``\Twig\Error\Error::getTemplateFile()`` and
[all …]

1...<<212223242526