| /template/writr/ |
| D | main.php | 123 $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 D | HandlebarsTest.php | 36 $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 D | contentlistitem.php | 164 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 D | related.php | 135 function render($format, Doku_Renderer $renderer, $data): bool function in syntax_plugin_combo_related 143 $renderer->doc .= RelatedTag::render($tagAttributes);
|
| H A D | variable.php | 44 return Template::create($string)->setProperties($contextData)->render(); 136 public function render($format, $renderer, $data): bool function in syntax_plugin_combo_variable
|
| H A D | analytics.php | 105 function render($format, Doku_Renderer $renderer, $data) function in syntax_plugin_combo_analytics
|
| H A D | xmlinlineemptytag.php | 79 function render($format, Doku_Renderer $renderer, $data): bool function in syntax_plugin_combo_xmlinlineemptytag
|
| H A D | xmlblockemptytag.php | 84 function render($format, Doku_Renderer $renderer, $data): bool function in syntax_plugin_combo_xmlblockemptytag
|
| H A D | brand.php | 233 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 D | Template.php | 116 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 D | Helpers.php | 238 $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 D | Handlebars.php | 172 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 D | SubscribeTag.php | 47 $success = TemplateForComponent::create($subscribeTag . "-success")->render([]); 59 $form = TemplateForComponent::create($subscribeTag . "-form")->render($data);
|
| /template/twigstarter/vendor/twig/twig/src/ |
| D | TemplateWrapper.php | 41 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 D | README.md | 115 # 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/ |
| D | TemplateController.php | 58 public function render($vars = []) function in dokuwiki\\template\\twigstarter\\TemplateController 80 echo $this->twig->render($this->view . '.twig', $data);
|
| D | main.php | 6 $TemplateController->render();
|
| D | detail.php | 6 $TemplateController->render();
|
| D | mediamanager.php | 6 $TemplateController->render();
|
| /template/notos/ |
| D | main.php | 6 $TemplateController->render();
|
| D | detail.php | 6 $TemplateController->render();
|
| /template/strap/ComboStrap/ |
| H A D | XmlTagProcessing.php | 250 $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 D | HrTag.php | 19 public static function render(TagAttributes $tagAttributes): string function in ComboStrap\\HrTag
|
| H A D | TemplateEngine.php | 224 return PageImageTag::render($tagAttributes,[]); 267 return $this->handleBarsForPage->render($template, $model); 272 return $this->handleBarsForComponents->render($template, $model);
|
| /template/strap/ComboStrap/Template/ |
| H A D | TemplateForComponent.php | 24 public function render(array $data): string function in ComboStrap\\Template\\TemplateForComponent
|