Home
last modified time | relevance | path

Searched refs:template (Results 351 – 375 of 695) sorted by path

1...<<11121314151617181920>>...28

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DEnvironmentTest.php136 $template = $twig->load('index');
137 $this->assertEquals('bar', $template->render([]));
H A DErrorTest.php53 $template = $twig->load('index.html');
55 $template->render([]);
81 $template = $twig->load('index.html');
83 $template->render(['foo' => new Twig_Tests_ErrorTest_Foo()]);
98 $template = $twig->load('index.html');
100 $template->render([]);
117 $template = $twig->load('index.html');
119 $template->render(['foo' => new Twig_Tests_ErrorTest_Foo()]);
139 $template = $twig->load('index');
142 $template->render([]);
[all …]
H A DExpressionParserTest.php26 public function testCanOnlyAssignToNames($template) argument
31 $parser->parse($env->tokenize(new Source($template, 'index')));
55 public function testArrayExpression($template, $expected) argument
58 $stream = $env->tokenize(new Source($template, ''));
68 public function testArraySyntaxError($template) argument
73 $parser->parse($env->tokenize(new Source($template, 'index')));
175 public function testStringExpression($template, $expected) argument
178 $stream = $env->tokenize(new Source($template, ''));
275 $parser->parse($env->tokenize(new Source($template, 'index')));
289 public function testMacroDefinitionSupportsConstantDefaultValues($template) argument
[all …]
H A DLexerTest.php32 $template = '{% § %}';
43 $template = '{{ §() }}';
54 $template = '{{ {"a":{"b":"c"}} }}';
80 $template = "foo\n"
102 $template = "foo\n"
218 $template = '{{ "bar \#{baz+1}" }}';
233 $template = '{{ "bar # baz" }}';
252 $template = '{{ "bar #{x" }}';
303 $template = "{{ 1 and\n0}}";
322 $template = '
[all …]
H A DTemplateTest.php40 $templates = ['index' => $template];
42 $template = $env->load('index');
55 $template->render($context);
93 $template = new Twig_TemplateTest($twig);
199 $template->getAttribute($template, 'renderBlock', ['name', [], $blocks]);
200 $template->getAttribute($template, 'displayBlock', ['name', [], $blocks]);
201 $template->getAttribute($template, 'hasBlock', ['name', []]);
202 $template->getAttribute($template, 'render', [[]]);
203 $template->getAttribute($template, 'display', [[]]);
227 $template->renderBlock('unknown', []);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DSandboxTest.php117 public function testSandboxUnallowedToString($template) argument
119 …$twig = $this->getEnvironment(true, [], ['index' => $template], [], ['upper'], ['FooObject' => 'ge…
152 public function testSandboxAllowedToString($template, $output) argument
154 …$twig = $this->getEnvironment(true, [], ['index' => $template], ['set'], [], ['FooObject' => ['foo…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/autoescape/
H A Dblock.test5 {{ include('template.html.twig') -}}
8 --TEMPLATE(template.html.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/
H A Dchild_contents_outside_blocks.test15 Twig\Error\SyntaxError: A template that extends another one cannot include content outside Twig blo…
H A Dmultiline_function_with_unknown_argument.test9 Twig\Error\SyntaxError: Unknown argument "invalid" for function "include(template, variables, with_…
H A Dsyntax_error_in_reused_template.test2 Exception for syntax error in reused template
H A Dundefined_template_in_child_template.test2 Exception for an undefined template in a child template
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A D_self.test2 _self returns the template name
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dblock_with_template.test2 "block" function with a template argument
H A Drecursive_block_with_inheritance.test2 "block" function recursively called in a parent template
H A Dtemplate_from_string.test4 {% include template_from_string(template) %}
11 return ['name' => 'Fabien', 'template' => "Hello {{ name }}"]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/
H A Dexpression.test2 "include" function allows expressions for the template to include
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/
H A Dblock_names_unicity.test2 Block names are unique per template
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/deprecated/
H A Dtemplate.legacy.test2 Deprecating a template with "deprecated" tag
6 {% deprecated 'The "index.twig" template is deprecated, use "greeting.twig" instead.' %}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/
H A Dexpression.test2 "include" tag allows expressions for the template to include
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/
H A Dparent_without_extends.test8 Twig\Error\SyntaxError: Calling "parent" on a template that does not extend nor "use" another templ…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Ddefined_for_blocks_with_template.test2 "defined" support for blocks with a template argument
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/
H A DFilesystemTest.php29 public function testSecurity($template) argument
34 $loader->getCacheKey($template);
185 $template = $twig->load('blocks.html.twig');
186 $this->assertSame('block from theme 1', $template->renderBlock('b1', []));
188 $template = $twig->load('blocks.html.twig');
189 $this->assertSame('block from theme 2', $template->renderBlock('b2', []));
214 $template = $twig->load($templateName);
215 $this->assertSame('VALID Child', $template->renderBlock('body', []));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/NodeVisitor/
H A DOptimizerTest.php60 public function testForOptimizer($template, $expected) argument
64 $stream = $env->parse($env->tokenize(new Source($template, 'index')));
/plugin/firenews/HTMLTemplates/author/
H A Dauthor.css12 .container-template {
/plugin/flashplayer/
H A Dreadme-de.txt88 Script nicht mehr manuell im DokuWiki template eingebunden

1...<<11121314151617181920>>...28