Searched refs:extends (Results 1 – 25 of 252) sorted by relevance
1234567891011
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/ |
| D | ModuleTest.php | 50 $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/ |
| D | block.rst | 6 :doc:`extends<../tags/extends>` tag. 11 …ock>`, :doc:`parent<../functions/parent>`, :doc:`use<../tags/use>`, :doc:`extends<../tags/extends>`
|
| D | extends.rst | 1 ``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 66 template, first it locates the parent. The extends tag should be the first tag 154 {% extends some_var %} 159 // {% extends layout %} 177 {% extends ['layout.html', 'base_layout.html'] %} [all …]
|
| D | use.rst | 20 {% extends "base.html" %} 30 {% extends "base.html" %} 52 {% extends "base.html" %} 75 {% extends "base.html" %} 92 {% extends "base.html" %} 113 {% extends "base.html" %}
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/ |
| D | nested_inheritance.test | 2 "extends" tag 4 {% extends "layout.twig" %} 7 {% extends "base.twig" %}
|
| D | multiple.test | 2 "extends" tag 4 {% extends "layout.twig" %}{% block content %}{{ parent() }}index {% endblock %} 6 {% extends "base.twig" %}{% block content %}{{ parent() }}layout {% endblock %}
|
| D | parent_isolation.test | 2 "extends" tag 4 {% extends "base.twig" %} 9 {% extends "base.twig" %}
|
| D | extends_as_array_with_empty_name.test | 2 "extends" tag 4 {% extends ["", "bar.twig"] %}
|
| D | empty.test | 2 "extends" tag 4 {% extends "foo.twig" %}
|
| D | extends_as_array_with_null_name.test | 2 "extends" tag 4 {% extends [null, "bar.twig"] %}
|
| D | extends_as_array.test | 2 "extends" tag 4 {% extends ["foo.twig", "bar.twig"] %}
|
| D | basic.test | 2 "extends" tag 4 {% extends "foo.twig" %}
|
| D | dynamic.test | 2 "extends" tag 4 {% extends foo %}
|
| D | parent.test | 2 "extends" tag 4 {% extends "foo.twig" %}
|
| D | parent_in_a_block.test | 2 "extends" tag 5 {% extends "foo.twig" %}
|
| D | template_instance.test | 2 "extends" tag accepts Twig_Template instance 4 {% extends foo %}
|
| D | parent_change.test | 2 "extends" tag 4 {% extends foo ? 'foo.twig' : 'bar.twig' %}
|
| D | parent_as_template_wrapper.test | 2 "extends" tag with a parent as a Twig_TemplateWrapper instance 4 {% extends foo %}
|
| D | parent_nested.test | 2 "extends" tag 4 {% extends "foo.twig" %}
|
| D | conditional.test | 2 "extends" tag 4 {% extends standalone ? foo : 'bar.twig' %}
|
| D | multiple_dynamic.test | 2 "extends" tag 10 {% extends foo~'_parent.twig' %}{% block content %}{{ parent() }} parent{% endblock %}
|
| /plugin/findologicxmlexport/vendor/hoa/iterator/ |
| D | README.md | 68 `Hoa\Iterator\Iterator` defines the basis of an iterator. It extends 74 `getIterator` method. It extends 80 [traversable](http://php.net/traversable) into an iterator. It extends 86 extends [`OuterIterator`](http://php.net/outeriterator). 90 `Hoa\Iterator\Mock` represents an empty iterator. It extends 95 `Hoa\Iterator\Seekable` represents an iterator that can be seeked. It extends 100 `Hoa\Iterator\Map` allows to iterate an array. It extends 119 content of an iterator. It extends 147 a specific offset. It extends [`LimitIterator`](http://php.net/limititerator). 165 It extends [`InfiniteIterator`](http://php.net/infiniteiterator). [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/functions/ |
| D | parent.rst | 9 {% extends "base.html" %} 20 .. seealso:: :doc:`extends<../tags/extends>`, :doc:`block<../functions/block>`, :doc:`block<../tags…
|
| /plugin/jdraw/src/com/mxgraph/examples/swing/editor/ |
| D | EditorActions.java.bak | 106 public static class ToggleRulersItem extends JCheckBoxMenuItem { 143 public static class ToggleGridItem extends JCheckBoxMenuItem { 174 public static class ToggleOutlineItem extends JCheckBoxMenuItem { 221 public static class ExitAction extends AbstractAction { 240 public static class StylesheetAction extends AbstractAction { 280 public static class ZoomPolicyAction extends AbstractAction { 311 public static class GridStyleAction extends AbstractAction { 342 public static class GridColorAction extends AbstractAction { 368 public static class ScaleAction extends AbstractAction { 414 public static class PageSetupAction extends AbstractAction { [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/ |
| D | recursive_block_with_inheritance.test | 4 {% extends "ordered_menu.twig" %} 8 {% extends "menu.twig" %} 11 {% extends "base.twig" %}
|
1234567891011