Home
last modified time | relevance | path

Searched refs:template (Results 876 – 900 of 989) sorted by path

1...<<31323334353637383940

/template/tripillar/
H A Dstyle.ini5 ; a local conf/tpl/<template-folder-name>/style.ini file to prevent losing
10 ; Define the stylesheets your template uses here. The second value
52 ;-- specific for this template
54 ;for more colour themes see the template web page on dokuwiki.org
H A Dtemplate.info.txt6 desc A simple yet not minimal three column template
7 url https://www.dokuwiki.org/template:tripillar
/template/twentyfifteen/
H A DREADME8 RTL is supported by this template, but not fully checked.
H A Dstyle.ini5 ; a local conf/tpl/<template-folder-name>/style.ini file to prevent losing
10 ; Define the stylesheets your template uses here. The second value
H A Dtemplate.info.txt7 url https://www.dokuwiki.org/template:twentyfifteen
/template/twentyfifteen/css/
H A Dnormalize.less414 template {
/template/twigstarter/
H A DCustomControllerInterface.php3 namespace dokuwiki\template\twigstarter;
H A DTemplateController.php3 namespace dokuwiki\template\twigstarter;
H A DTwigStarterLoader.php3 namespace dokuwiki\template\twigstarter;
H A Dcomposer.lock309 "description": "Twig, the flexible, fast, and secure template language for PHP",
H A Ddetail.php3 use dokuwiki\template\twigstarter\TemplateController;
H A Dmain.php3 use dokuwiki\template\twigstarter\TemplateController;
H A Dmediamanager.php3 use dokuwiki\template\twigstarter\TemplateController;
H A Dtemplate.info.txt7 url https://www.dokuwiki.org/template:twigstarter
/template/twigstarter/vendor/twig/twig/
H A DCHANGELOG41 …* Throw a proper exception when a template name is an absolute path (as it has never been supporte…
132 * fixed macro auto-import when a template contains only macros
148 * macros are now auto-imported in the template they are defined (under the ``_self`` variable)
155 * fixed a PHP fatal error when calling a macro imported in the template in another macro
173 * fixed "import" when macros are stored in a template string
175 * added template line number to twig_get_attribute()
191 * fixed "include" with "ignore missing" when an error loading occurs in the included template
269 * deprecated using the spaceless tag at the root level of a child template (noop anyway)
270 * deprecated the possibility to define a block in a non-capturing block in a child template
330 * fixed template name generation in Twig_Environment::createTemplate()
[all …]
H A DREADME.rst1 Twig, the flexible, fast, and secure template language for PHP
4 Twig is a template language for PHP.
6 Twig uses a syntax similar to the Django and Jinja template languages which
/template/twigstarter/vendor/twig/twig/src/
H A DEnvironment.php438 * @param string $template The template source
446 public function createTemplate($template, string $name = null) argument
448 $hash = hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $template, false);
456 new ArrayLoader([$name => $template]),
H A DParser.php267 public function embedTemplate(ModuleNode $template) argument
269 $template->setIndex(mt_rand());
271 $this->embeddedTemplates[] = $template;
/template/twigstarter/vendor/twig/twig/src/Error/
H A DError.php196 $template = null;
205 $template = $trace['object'];
212 if (null !== $template && null === $this->name) {
213 $this->name = $template->getTemplateName();
217 if (null !== $template && null === $this->sourcePath) {
218 $src = $template->getSourceContext();
223 if (null === $template || $this->lineno > -1) {
227 $r = new \ReflectionObject($template);
244 foreach ($template->getDebugInfo() as $codeLine => $templateLine) {
/template/twigstarter/vendor/twig/twig/src/Extension/
H A DCoreExtension.php1156 function twig_call_macro(Template $template, string $method, array $args, int $lineno, array $conte… argument
1158 if (!method_exists($template, $method)) {
1159 $parent = $template;
1166 …is not defined in template "%s".', substr($method, \strlen('macro_')), $template->getTemplateName(…
1169 return $template->$method(...$args);
1250 …* @param string|array $template The template to render or an array of templates to try consec…
1258 function twig_include(Environment $env, $context, $template, $variables = [], $withContext = true, … argument
1272 foreach ((\is_array($template) ? $template : [$template]) as $name) {
1283 $loaded = $env->resolveTemplate($template);
H A DStringLoaderExtension.php37 * @param string $template A template as a string or object implementing __toString()
42 function twig_template_from_string(Environment $env, $template, string $name = null) argument
44 return $env->createTemplate((string) $template, $name);
/template/twigstarter/vendor/twig/twig/src/Loader/
H A DArrayLoader.php45 * @param string $template The template source
47 public function setTemplate($name, $template) argument
49 $this->templates[$name] = $template;
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DBlockReferenceExpression.php25 public function __construct(Node $name, ?Node $template, int $lineno, string $tag = null) argument
28 if (null !== $template) {
29 $nodes['template'] = $template;
/template/twigstarter/vendor/twig/twig/src/Node/
H A DIncludeNode.php40 $template = $compiler->getVarName();
43 ->write(sprintf("$%s = null;\n", $template))
46 ->write(sprintf('$%s = ', $template))
59 ->write(sprintf("if ($%s) {\n", $template))
61 ->write(sprintf('$%s->display(', $template))
H A DModuleNode.php73 foreach ($this->getAttribute('embedded_templates') as $template) {
74 $compiler->subcompile($template);

1...<<31323334353637383940