Home
last modified time | relevance | path

Searched refs:extends (Results 1 – 25 of 215) sorted by relevance

123456789

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DModuleTest.php50 $extends = null;
56 $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source);
119 $extends = new ConstantExpression('layout.twig', 1);
121 $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source);
195 $extends = new ConditionalExpression(
203 $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source);
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dblock.rst6 :doc:`extends<../tags/extends>` tag.
11 …ock>`, :doc:`parent<../functions/parent>`, :doc:`use<../tags/use>`, :doc:`extends<../tags/extends>`
H A Duse.rst20 {% extends "base.html" %}
30 {% extends "base.html" %}
52 {% extends "base.html" %}
75 {% extends "base.html" %}
92 {% extends "base.html" %}
113 {% extends "base.html" %}
H A Dextends.rst1 ``extends``
4 The ``extends`` tag can be used to extend a template from another one.
9 one extends tag called per rendering. However, Twig supports horizontal
48 {% extends "base.html" %}
64 The ``extends`` tag is the key here. It tells the template engine that this
65 template "extends" another template. When the template system evaluates this
154 {% extends some_var %}
159 // {% extends layout %}
177 {% extends ['layout.html', 'base_layout.html'] %}
187 {% extends standalone ? "minimum.html" : "base.html" %}
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/
H A Dnested_inheritance.test2 "extends" tag
4 {% extends "layout.twig" %}
7 {% extends "base.twig" %}
H A Dmultiple.test2 "extends" tag
4 {% extends "layout.twig" %}{% block content %}{{ parent() }}index {% endblock %}
6 {% extends "base.twig" %}{% block content %}{{ parent() }}layout {% endblock %}
H A Dparent_isolation.test2 "extends" tag
4 {% extends "base.twig" %}
9 {% extends "base.twig" %}
H A Dempty.test2 "extends" tag
4 {% extends "foo.twig" %}
H A Dextends_as_array_with_empty_name.test2 "extends" tag
4 {% extends ["", "bar.twig"] %}
H A Dextends_as_array_with_null_name.test2 "extends" tag
4 {% extends [null, "bar.twig"] %}
H A Dextends_as_array.test2 "extends" tag
4 {% extends ["foo.twig", "bar.twig"] %}
H A Dbasic.test2 "extends" tag
4 {% extends "foo.twig" %}
H A Ddynamic.test2 "extends" tag
4 {% extends foo %}
H A Dparent_in_a_block.test2 "extends" tag
5 {% extends "foo.twig" %}
H A Dparent.test2 "extends" tag
4 {% extends "foo.twig" %}
H A Dparent_change.test2 "extends" tag
4 {% extends foo ? 'foo.twig' : 'bar.twig' %}
H A Dtemplate_instance.test2 "extends" tag accepts Twig_Template instance
4 {% extends foo %}
H A Dparent_as_template_wrapper.test2 "extends" tag with a parent as a Twig_TemplateWrapper instance
4 {% extends foo %}
H A Dparent_nested.test2 "extends" tag
4 {% extends "foo.twig" %}
H A Dconditional.test2 "extends" tag
4 {% extends standalone ? foo : 'bar.twig' %}
H A Dmultiple_dynamic.test2 "extends" tag
10 {% extends foo~'_parent.twig' %}{% block content %}{{ parent() }} parent{% endblock %}
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DREADME.md74 `getIterator` method. It extends
86 extends [`OuterIterator`](http://php.net/outeriterator).
90 `Hoa\Iterator\Mock` represents an empty iterator. It extends
100 `Hoa\Iterator\Map` allows to iterate an array. It extends
119 content of an iterator. It extends
230 extends [`AppendIterator`](http://php.net/appenditerator).
448 * `Hoa\Iterator\Recursive\CallbackFilter` (it extends
450 * `Hoa\Iterator\Recursive\Directory` (it extends
452 * `Hoa\Iterator\Recursive\Filter` (it extends
454 * `Hoa\Iterator\Recursive\Iterator` (it extends
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dparent.rst9 {% extends "base.html" %}
20 .. seealso:: :doc:`extends<../tags/extends>`, :doc:`block<../functions/block>`, :doc:`block<../tags…
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DEditorActions.java.bak221 public static class ExitAction extends AbstractAction {
311 public static class GridStyleAction extends AbstractAction {
342 public static class GridColorAction extends AbstractAction {
368 public static class ScaleAction extends AbstractAction {
440 public static class PrintAction extends AbstractAction {
482 public static class SaveAction extends AbstractAction {
1300 public static class NewAction extends AbstractAction {
1327 public static class OpenAction extends AbstractAction {
1383 public static class ToggleAction extends AbstractAction {
1644 public static class ColorAction extends AbstractAction {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Drecursive_block_with_inheritance.test4 {% extends "ordered_menu.twig" %}
8 {% extends "menu.twig" %}
11 {% extends "base.twig" %}

123456789