Home
last modified time | relevance | path

Searched refs:twig (Results 26 – 50 of 196) sorted by relevance

12345678

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/
H A Dparent_isolation.test4 {% extends "base.twig" %}
5 {% block content %}{% include "included.twig" %}{% endblock %}
8 --TEMPLATE(included.twig)--
9 {% extends "base.twig" %}
11 --TEMPLATE(base.twig)--
H A Dparent_change.test4 {% extends foo ? 'foo.twig' : 'bar.twig' %}
5 --TEMPLATE(foo.twig)--
7 --TEMPLATE(bar.twig)--
H A Dnested_inheritance.test4 {% extends "layout.twig" %}
6 --TEMPLATE(layout.twig)--
7 {% extends "base.twig" %}
11 --TEMPLATE(base.twig)--
H A Dmultiple.test4 {% extends "layout.twig" %}{% block content %}{{ parent() }}index {% endblock %}
5 --TEMPLATE(layout.twig)--
6 {% extends "base.twig" %}{% block content %}{{ parent() }}layout {% endblock %}
7 --TEMPLATE(base.twig)--
H A Dconditional.test4 {% extends standalone ? foo : 'bar.twig' %}
7 --TEMPLATE(foo.twig)--
9 --TEMPLATE(bar.twig)--
12 return ['foo' => 'foo.twig', 'standalone' => true]
H A Dblock_expr2.test4 {% extends "base2.twig" %}
10 --TEMPLATE(base2.twig)--
11 {% extends "base.twig" %}
12 --TEMPLATE(base.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/
H A Dwith_context.test4 {{ include("foo.twig") }}
5 {{- include("foo.twig", with_context = false) }}
6 {{- include("foo.twig", {'foo1': 'bar'}) }}
7 {{- include("foo.twig", {'foo1': 'bar'}, with_context = false) }}
8 --TEMPLATE(foo.twig)--
H A Dsandbox_disabling.test4 {{ include("foo.twig", sandboxed = true) }}
5 {{ include("bar.twig") }}
6 --TEMPLATE(foo.twig)--
8 --TEMPLATE(bar.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/
H A Ddeep_empty.test4 {% use "foo.twig" %}
5 --TEMPLATE(foo.twig)--
6 {% use "bar.twig" %}
7 --TEMPLATE(bar.twig)--
H A Ddeep.test4 {% use "foo.twig" %}
9 --TEMPLATE(foo.twig)--
10 {% use "bar.twig" %}
14 --TEMPLATE(bar.twig)--
H A Dmultiple.test4 {% use "foo.twig" %}
5 {% use "bar.twig" %}
10 --TEMPLATE(foo.twig)--
13 --TEMPLATE(bar.twig)--
H A Duse_with_parent.test4 {% extends "parent.twig" %}
6 {% use 'blocks.twig' %}
13 --TEMPLATE(parent.twig)--
17 --TEMPLATE(blocks.twig)--
H A Dmultiple_aliases.test4 {% use "foo.twig" with content as foo_content %}
5 {% use "bar.twig" %}
11 --TEMPLATE(foo.twig)--
14 --TEMPLATE(bar.twig)--
H A Dparent_block3.test4 {% use 'file2.html.twig' %}
5 {% use 'file1.html.twig' with foo %}
14 --TEMPLATE(file2.html.twig)--
15 {% use 'file1.html.twig' %}
24 --TEMPLATE(file1.html.twig)--
H A Dinheritance.test4 {% use "parent.twig" %}
7 --TEMPLATE(parent.twig)--
8 {% use "ancestor.twig" %}
13 --TEMPLATE(ancestor.twig)--
H A Dinheritance2.test4 {% use "ancestor.twig" %}
5 {% use "parent.twig" %}
8 --TEMPLATE(parent.twig)--
12 --TEMPLATE(ancestor.twig)--
H A Dparent_block2.test4 {% use 'file2.html.twig'%}
9 --TEMPLATE(file2.html.twig)--
10 {% use 'file1.html.twig' %}
15 --TEMPLATE(file1.html.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Drecursive_block_with_inheritance.test4 {% extends "ordered_menu.twig" %}
7 --TEMPLATE(ordered_menu.twig)--
8 {% extends "menu.twig" %}
10 --TEMPLATE(menu.twig)--
11 {% extends "base.twig" %}
16 --TEMPLATE(base.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/deprecated/
H A Dtemplate.legacy.test4 {% extends 'greeting.twig' %}
6 {% deprecated 'The "index.twig" template is deprecated, use "greeting.twig" instead.' %}
7 --TEMPLATE(greeting.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/sandbox/
H A Dnot_valid2.test5 {%- include "foo.twig" %}
8 {%- include "foo.twig" %}
11 --TEMPLATE(foo.twig)--
14 Twig\Error\SyntaxError: Only "include" tags are allowed within a "sandbox" section in "index.twig" …
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/
H A Derror_line.test3 --TEMPLATE(index.twig)--
5 {% embed "foo.twig" %}
11 --TEMPLATE(foo.twig)--
16 Twig\Error\RuntimeError: Variable "nothing" does not exist in "index.twig" at line 5.
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D65.65.js.map1twig/twig.js"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACO;AACP,gEAAg…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/LegacyFixtures/autoescape/
H A Dfilename.legacy.test5 {{ include('index.html.twig') -}}
6 {{ include('index.txt.twig') -}}
7 --TEMPLATE(index.html.twig)--
9 --TEMPLATE(index.txt.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/
H A Dwith_variables.test4 {% include "foo.twig" with {'foo': 'bar'} %}
5 {% include "foo.twig" with vars1 %}
6 {% include "foo.twig" with vars2 %}
7 --TEMPLATE(foo.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dinstallation.rst16 composer require twig/twig:~1.0
43 pear channel-discover pear.twig-project.org
44 pear install twig/Twig
65 cd ext/twig
79 pear channel-discover pear.twig-project.org
80 pear install twig/CTwig
85 …ut Twig's C extension source code into ``C:\php-sdk\phpdev\vcXX\x86\php-source-directory\ext\twig``
86 3. Use the ``configure --disable-all --enable-cli --enable-twig=shared`` command instead of step 14
96 --enable-twig=shared`` to be able to build the twig C extension for
106 extension=twig.so #For Unix systems

12345678