Home
last modified time | relevance | path

Searched refs:foo (Results 276 – 300 of 405) sorted by last modified time

1...<<11121314151617

/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dinclude.rst47 {% include 'template.html' with {'foo': 'bar'} %}
49 {% set vars = {'foo': 'bar'} %}
56 {# only the foo variable will be accessible #}
57 {% include 'template.html' with {'foo': 'bar'} only %}
100 {% include 'sidebar.html' ignore missing with {'foo': 'bar'} %}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Djoin.test4 {{ ["foo", "bar"]|join(', ') }}
5 {{ foo|join(', ') }}
8 {{ ["foo", "bar"]|join(', ', ' and ') }}
9 {{ foo|join(', ', ' and ') }}
21 return ['foo' => new TwigTestFoo(), 'bar' => new \ArrayObject([3, 4])]
23 foo, bar
27 foo and bar
H A Dreplace.test4 {{ "I liké %this% and %that%."|replace({'%this%': "foo", '%that%': "bar"}) }}
8 return ['traversable' => new \ArrayObject(['%this%' => 'foo', '%that%' => 'bar'])]
10 I liké foo and bar.
12 I like foo and bar.
H A Dreplace_invalid_arg.test4 {{ 'test %foo%'|replace(stdClass) }}
H A Dspaceless.test4 {{ " <div> <div> foo </div> </div>"|spaceless }}
8 <div><div> foo </div></div>
H A Dspecial_chars.test4 {{ 'foo'|§ }}
8 §foo§
H A Dsplit.test5 {{ foo|split(',')|join('-') }}
6 {{ foo|split(',', 3)|join('-') }}
10 {{ foo|split(',', -2)|join('-') }}
12 return ['foo' => "one,two,three,four,five", 'baz' => '12345',]
H A Dsplit_utf8.test7 {{ foo|split(',')|join('-') }}
8 {{ foo|split(',', 1)|join('-') }}
9 {{ foo|split(',', 2)|join('-') }}
10 {{ foo|split(',', 3)|join('-') }}
15 return ['foo' => 'Ä,é,Äほ', 'baz' => 'éÄßごa',]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dattribute.test11 return ['obj' => new TwigTestFoo(), 'method' => 'foo', 'array' => ['foo' => 'bar'], 'item' => 'foo'…
13 foo
H A Dblock.test7 {% block foo %}{{ block('bar') }}{% endblock %}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/
H A Dreserved_variables.test12 return ['this' => 'foo']
14 foo
H A Dvarargs.test14 {{ test1("foo", "bar", "foobar") }}
15 {{ test2("foo", "bar", "foobar") }}
19 foo: bar, foobar
21 foo, bar, foobar
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/
H A Dmulti_word_tests.test4 {{ 'foo' is multi word ? 'yes' : 'no' }}
5 {{ 'foo bar' is multi word ? 'yes' : 'no' }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dblocks.test5 {% block foo %}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/
H A Dbasic.test5 {% block title2 foo|lower %}
6 --TEMPLATE(foo.twig)--
9 return ['foo' => 'bar']
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/
H A Dbasic.test5 {% embed "foo.twig" %}
13 --TEMPLATE(foo.twig)--
H A Dcomplex_dynamic_parent.test5 {% embed foo ~ ".twig" %}
13 --TEMPLATE(foo.twig)--
24 return ['foo' => 'foo']
H A Ddynamic_parent.test5 {% embed foo %}
13 --TEMPLATE(foo.twig)--
24 return ['foo' => 'foo.twig']
H A Derror_line.test5 {% embed "foo.twig" %}
11 --TEMPLATE(foo.twig)--
H A Dnested.test4 {% embed "foo.twig" %}
7 {% embed "foo.twig" %}
16 --TEMPLATE(foo.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/
H A Dobjects.test21 protected $values = ['foo' => 'bar', 'bar' => 'foo'];
34 * foo
39 * foo/bar
40 * bar/foo
42 * foo
H A Dobjects_countable.test22 protected $values = ['foo' => 'bar', 'bar' => 'foo'];
37 * foo
43 * foo/bar
44 * bar/foo
46 * foo
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/
H A Dbasic.test5 {% include "foo.twig" %}
8 --TEMPLATE(foo.twig)--
H A Dexpression.test5 {% include foo %}
8 --TEMPLATE(foo.twig)--
11 return ['foo' => 'foo.twig']
H A Dignore_missing.test4 {% include ["foo.twig", "bar.twig"] ignore missing %}
5 {% include "foo.twig" ignore missing %}
6 {% include "foo.twig" ignore missing with {} %}
7 {% include "foo.twig" ignore missing with {} only %}

1...<<11121314151617