Home
last modified time | relevance | path

Searched refs:Template (Results 1 – 25 of 132) sorted by relevance

123456

/plugin/combo/ComboStrap/
H A DTemplate.php8 * Class Template
12 class Template class
19 public const CAPTURE_PATTERN_SHORT = Template::DOLLAR_ESCAPE . Template::DOLLAR_VARIABLE_PREFIX . self::VARIABLE_NAME_EXPRESSION;
20 public const CAPTURE_PATTERN_LONG = Template::DOLLAR_ESCAPE . Template::LONG_PREFIX . "[^}\r\n]+" . self::LONG_EXIT;
41 * @return Template
43 public static function create($string): Template
45 return new Template($string);
53 public function setProperty($key, $value): Template
[all...]
/plugin/combo/syntax/
H A Dvariable.php9 use ComboStrap\Template; alias
28 return substr($ref, 0, 1) === Template::DOLLAR_VARIABLE_PREFIX;
32 * Template rendering will be context based
44 return Template::create($string)->setProperties($contextData)->render();
94 $this->Lexer->addSpecialPattern(Template::CAPTURE_PATTERN_SHORT, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
95 $this->Lexer->addSpecialPattern(Template::CAPTURE_PATTERN_LONG, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
116 $lengthLongPrefix = strlen(Template::LONG_PREFIX);
120 if (substr($match, 0, $lengthLongPrefix) === Template::LONG_PREFIX) {
/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);
/plugin/loadskin/lang/de/
H A Dintro.txt1 ====== Template Manager ======
3 …i ist zu beachten, dass die Auswahl eines Templates über den optionalen Template-Switcher durch de…
5 …eiten innerhalb eines Namensraumes, für den ein Template ausgewählt wurde, zunächst das gleiche Te…
/plugin/s5reloaded/ui/effects_support/
H A Dsound.js14 …new Template('<embed style="height:0" id="sound_#{track}_#{id}" src="#{url}" loop="false" autostar…
52 …Sound.template = new Template('<object id="sound_#{track}_#{id}" width="0" height="0" type="audio/…
54 …Sound.template = new Template('<object id="sound_#{track}_#{id}" type="application/x-mplayer2" dat…
56 …Sound.template = new Template('<embed type="audio/x-pn-realaudio-plugin" style="height:0" id="soun…
/plugin/ckgedit/lang/de/
H A Dstyle.txt1 **Aktuelles Template Template** \\
3 …ungsfenster des CKEditors anlegen, das auf Ihrem Template basiert. Das Stylesheet wird in Ihrem Te…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DTemplateTest.php22 use Twig\Template; alias
148 … $this->assertFalse($template->getAttribute($template1, 'env', [], Template::ANY_CALL, true));
149 …$this->assertFalse($template->getAttribute($template1, 'environment', [], Template::ANY_CALL, true…
150 …$this->assertFalse($template->getAttribute($template1, 'getEnvironment', [], Template::METHOD_CALL…
211 … $this->assertFalse($template->getAttribute($template1, 'env', [], Template::ANY_CALL, true));
212 …$this->assertFalse($template->getAttribute($template1, 'environment', [], Template::ANY_CALL, true…
213 …$this->assertFalse($template->getAttribute($template1, 'getEnvironment', [], Template::METHOD_CALL…
341 $anyType = Template::ANY_CALL;
342 $methodType = Template::METHOD_CALL;
343 $arrayType = Template::ARRAY_CALL;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/
H A DTemplate.php3 use Twig\Template; alias
8 class Twig_Template extends Template
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHandlebars.php452 * @return Template
458 return new Template($this, $tree, $source);
466 * @return Template
475 return new Template($this, $tree, $source);
507 * @return Template
512 return new Template($this, $tree, $source);
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DStringLoaderExtension.php38 use Twig\Template; alias
47 * @return Template
H A DDebugExtension.php48 use Twig\Template; alias
62 if (!$value instanceof Template && !$value instanceof TemplateWrapper) {
/plugin/html2pdf/snorriheim/
H A DREADME5 Dokubook Template for DokuWiki
7 All documentation for the Dokubook Template is available online at:
H A Ddokubook_print.css2 * Print - additional CSS for the DokuBook Template
/plugin/pagetemplater/
H A DREADME.md13 ## Template Prequisites
18 ## Some more Template Functionality
22 Template Page Example:
/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.
/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/simplewikipagetree/
H A DREADME.md1 # Template
/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.
/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.
/plugin/geonav/tpl/startermap/
H A Dtemplate.info.txt5 name Starter Template
/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.
/plugin/combo/ComboStrap/Template/
H A DTemplateForComponent.php3 namespace ComboStrap\Template;
/plugin/datatemplate/
H A Dplugin.info.txt4 name Data Template Plugin
/plugin/regex_template/
H A Dinfo.txt6 name Regex Template
/plugin/structtemplate/
H A Dplugin.info.txt5 name Struct Template

123456