Home
last modified time | relevance | path

Searched refs:render (Results 1 – 25 of 121) sorted by relevance

12345

/template/writr/
Dmain.php123 $render = p_render('xhtml',$instructions,$info); variable
129 .$render
138 $render = $starred->tpl_starred(false,false); variable
139 echo '<li>'.$render.'</li>';
145 $render = $translation->showTranslations(false); variable
151 .$render
/template/strap/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php36 $this->assertEquals($result, $engine->render($src, $data));
83 $this->assertEquals($result, $engine->render($src, $data));
234 $this->assertEquals($result, $engine->render($src, $data));
252 $this->assertEquals('apple, banana, 0, zucchini', $engine->render($template, $data));
421 $this->assertEquals('Test helper is called', $engine->render('{{#test}}', []));
455 $engine->render('test', array());
/template/strap/syntax/
H A Dcontentlistitem.php164 function render($format, Doku_Renderer $renderer, $data) function in syntax_plugin_combo_contentlistitem
187 $render = PluginUtility::renderUnmatched($data);
188 if (!empty($render)) {
189 $renderer->doc .= "<span>" . $render . '</span>';
H A Drelated.php135 function render($format, Doku_Renderer $renderer, $data): bool function in syntax_plugin_combo_related
143 $renderer->doc .= RelatedTag::render($tagAttributes);
H A Dvariable.php44 return Template::create($string)->setProperties($contextData)->render();
136 public function render($format, $renderer, $data): bool function in syntax_plugin_combo_variable
H A Danalytics.php105 function render($format, Doku_Renderer $renderer, $data) function in syntax_plugin_combo_analytics
H A Dxmlinlineemptytag.php79 function render($format, Doku_Renderer $renderer, $data): bool function in syntax_plugin_combo_xmlinlineemptytag
H A Dxmlblockemptytag.php84 function render($format, Doku_Renderer $renderer, $data): bool function in syntax_plugin_combo_xmlblockemptytag
H A Dbrand.php233 function render($format, Doku_Renderer $renderer, $data): bool function in syntax_plugin_combo_brand
242 $renderer->doc .= BrandTag::render($tagAttributes, $state, $data);;
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTemplate.php116 public function render($context) function in Handlebars\\Template
249 return $this->handlebars->loadString($return)->render($context);
268 $buffer .= $this->render($context);
275 $buffer = $this->render($context);
278 $buffer = $this->render($context);
302 return $this->render($context);
325 return $partial->render($context);
H A DHelpers.php238 $buffer = $template->render($context);
261 $buffer = $template->render($context);
341 $buffer .= $tpl->render($context);
372 return $template->render($context);
396 $buffer = $template->render($context);
422 $buffer = $template->render($context);
676 $buffer = $template->render($context);
735 return $this->tpl["DEFINE"][$args]->render($context);
H A DHandlebars.php172 public function render($template, $data) function in Handlebars\\Handlebars
174 return $this->loadTemplate($template)->render($data);
185 return $this->render($template, $data);
/template/strap/ComboStrap/Tag/
H A DSubscribeTag.php47 $success = TemplateForComponent::create($subscribeTag . "-success")->render([]);
59 $form = TemplateForComponent::create($subscribeTag . "-form")->render($data);
/template/twigstarter/vendor/twig/twig/src/
DTemplateWrapper.php41 public function render(array $context = []): string function in Twig\\TemplateWrapper
45 return $this->template->render($context, \func_get_args()[1] ?? []);
/template/strap/vendor/salesforce/handlebars-php/
H A DREADME.md115 # Will render the model to the templates/main.tpl template
117 echo $handlebars->render("main", $model);
151 Use the method `Handlebars\Handlebars::render($template, $model)` to render you template once every…
157 The code below will render the model to the *templates/main.tpl* template
160 echo $handlebars->render("main", $model);
164 Alternatively you can use $handlebars itself without invoking the render method
268 …elper to conditionally render a block. If its argument returns false, null, "" or [] (a "falsy" va…
290 echo $handlebars->render($template, $model);
361 echo $engine->render($template, $model);
751 $engine->render($template, $data)
/template/twigstarter/
DTemplateController.php58 public function render($vars = []) function in dokuwiki\\template\\twigstarter\\TemplateController
80 echo $this->twig->render($this->view . '.twig', $data);
Dmain.php6 $TemplateController->render();
Ddetail.php6 $TemplateController->render();
Dmediamanager.php6 $TemplateController->render();
/template/notos/
Dmain.php6 $TemplateController->render();
Ddetail.php6 $TemplateController->render();
/template/strap/ComboStrap/
H A DXmlTagProcessing.php250 $renderer->doc .= HrTag::render($tagAttributes);
274 $renderer->doc .= RelatedTag::render($tagAttributes);
820 $renderer->doc .= HrTag::render($tagAttributes);
823 $renderer->doc .= SearchTag::render($tagAttributes);
829 $renderer->doc .= BreadcrumbTag::render($tagAttributes);
832 $renderer->doc .= PageImageTag::render($tagAttributes, $data);
838 $renderer->doc .= BrandListTag::render($tagAttributes);
841 $renderer->doc .= BrandTag::render($tagAttributes, $state, $data);
869 $renderer->doc .= AdTag::render($tagAttributes);
872 $renderer->doc .= RelatedTag::render($tagAttributes);
H A DHrTag.php19 public static function render(TagAttributes $tagAttributes): string function in ComboStrap\\HrTag
H A DTemplateEngine.php224 return PageImageTag::render($tagAttributes,[]);
267 return $this->handleBarsForPage->render($template, $model);
272 return $this->handleBarsForComponents->render($template, $model);
/template/strap/ComboStrap/Template/
H A DTemplateForComponent.php24 public function render(array $data): string function in ComboStrap\\Template\\TemplateForComponent

12345