Home
last modified time | relevance | path

Searched refs:Template (Results 76 – 100 of 132) sorted by path

123456

/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Ddeprecated.rst150 * ``Twig_TemplateInterface`` (use ``\Twig\Template`` instead, and use
151 those constants \Twig\Template::ANY_CALL, \Twig\Template::ARRAY_CALL,
152 \Twig\Template::METHOD_CALL)
188 current ``\Twig\Template`` instance is deprecated; most usages only need the
191 ``\Twig\Template`` instance. If you are using ``{{ _self.templateName }}``,
205 * As of Twig 1.x, ``\Twig\Template::getEnvironment()`` and
217 * As of Twig 1.27, ``\Twig\Template::getSource()`` is deprecated. Use
218 ``\Twig\Template::getSourceContext()`` instead.
H A Dinstallation.rst112 ``\Twig\Template::getAttribute()`` method.
H A Dinternals.rst125 class __TwigTemplate_1121b6f109fe93ebe8c6e22e3712bceb extends \Twig\Template
H A Drecipes.rst98 Overriding a Template that also extends itself
300 Validating the Template Syntax
432 throw new \Twig\Error\LoaderError(sprintf('Template "%s" does not exist.', $name));
442 throw new \Twig\Error\LoaderError(sprintf('Template "%s" does not exist.', $name));
484 Using different Template Sources
511 Loading a Template from a String
H A Dtemplates.rst1 Twig for Template Designers
328 Template Inheritance
331 The most powerful part of Twig is template inheritance. Template inheritance
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dinclude.rst40 And if the expression evaluates to a ``\Twig\Template`` or a
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dextends.rst41 Child Template
156 If the variable evaluates to a ``\Twig\Template`` or a ``\Twig\TemplateWrapper``
H A Dinclude.rst77 And if the expression evaluates to a ``\Twig\Template`` or a
H A Duse.rst13 Template inheritance is one of the most powerful features of Twig but it is
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/
H A DTemplate.php3 use Twig\Template; alias
8 class Twig_Template extends Template
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DEnvironment.php420 if ($name instanceof Template) {
598 …* @param string|Template|\Twig\TemplateWrapper|array $names A template or an array of templates to…
600 * @return TemplateWrapper|Template
612 if ($name instanceof Template) {
H A DExpressionParser.php383 …de(0), $args->getNode(1), \count($args) > 2 ? $args->getNode(2) : null, Template::ANY_CALL, $line);
410 $type = Template::ANY_CALL;
423 $type = Template::METHOD_CALL;
449 $type = Template::ARRAY_CALL;
H A DTemplate.php30 abstract class Template implements \Twig_TemplateInterface class
H A DTemplateWrapper.php30 public function __construct(Environment $env, Template $template)
/plugin/findologicxmlexport/vendor/twig/twig/src/Error/
H A DError.php15 use Twig\Template; alias
281 …if (isset($trace['object']) && $trace['object'] instanceof Template && 'Twig_Template' !== \get_cl…
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DDebugExtension.php48 use Twig\Template; alias
62 if (!$value instanceof Template && !$value instanceof TemplateWrapper) {
H A DStringLoaderExtension.php38 use Twig\Template; alias
47 * @return Template
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DGetAttrExpression.php16 use Twig\Template; alias
53 $needSecond = $needThird || Template::ANY_CALL !== $this->getAttribute('type');
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/
H A Dundefined_parent.test8 Twig\Error\LoaderError: Template "foo.html" is not defined in "index.twig" at line 2.
H A Dundefined_template_in_child_template.test15 Twig\Error\LoaderError: Template "include.twig" is not defined in "index.twig" at line 5.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/
H A Dmissing.test8 Twig\Error\LoaderError: Template "foo.twig" is not defined in "index.twig" at line 2.
H A Dmissing_nested.test16 Twig\Error\LoaderError: Template "foo.twig" is not defined in "base.twig" at line 3.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/
H A Dmissing.test8 Twig\Error\LoaderError: Template "foo.twig" is not defined in "index.twig" at line 2.
H A Dmissing_nested.test16 Twig\Error\LoaderError: Template "foo.twig" is not defined in "base.twig" at line 3.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DGetAttrTest.php16 use Twig\Template; alias
28 $node = new GetAttrExpression($expr, $attr, $args, Template::ARRAY_CALL, 1);
33 $this->assertEquals(Template::ARRAY_CALL, $node->getAttribute('type'));
43 $node = new GetAttrExpression($expr, $attr, $args, Template::ANY_CALL, 1);
46 $node = new GetAttrExpression($expr, $attr, $args, Template::ARRAY_CALL, 1);
52 $node = new GetAttrExpression($expr, $attr, $args, Template::METHOD_CALL, 1);

123456