Home
last modified time | relevance | path

Searched refs:templateName (Results 1 – 5 of 5) sorted by relevance

/template/strap/ComboStrap/Template/
H A DTemplateForComponent.php12 private string $templateName; variable in ComboStrap\\Template\\TemplateForComponent
14 public function __construct(string $templateName) argument
16 $this->templateName = $templateName;
19 public static function create(string $templateName): TemplateForComponent argument
21 return new TemplateForComponent($templateName);
27 ->renderWebComponent($this->templateName,$data);
/template/strap/ComboStrap/Meta/Field/
H A DPageTemplateName.php217 $templateName = "$templatePrefix-index";
218 if ($pageTemplateEngine->templateExists($templateName)) {
219 return $templateName;
229 $templateName = "$templatePrefix-item";
230 if ($pageTemplateEngine->templateExists($templateName)) {
231 return $templateName;
/template/strap/ComboStrap/
H A DTemplateEngine.php288 public function templateExists(string $templateName): bool argument
291 $this->handleBarsForPage->getLoader()->load($templateName);
301 * @param string $templateName - the name (without extension)
305 …public function createTemplate(string $templateName, string $templateContent = null): TemplateEngi… argument
313 $templateFile = $theme->resolve($templateName . "." . self::EXTENSION_HBS);
H A DTemplateForWebPage.php56 private string $templateName; variable in ComboStrap\\TemplateForWebPage
102 …return $this->getEngine()->searchTemplateByName($this->templateName . "." . TemplateEngine::EXTENS…
208 if (isset($this->templateName)) {
209 return $this->templateName;
226 return $this->templateName;
234 return $this->getEngine()->searchTemplateByName("$this->templateName.css");
242 $jsPath = $this->getEngine()->searchTemplateByName("$this->templateName.js");
1001 function setRequestedTemplateName(string $templateName): TemplateForWebPage argument
1003 $this->templateName = $templateName;
/template/twigstarter/vendor/twig/twig/src/
DTemplate.php313 protected function loadTemplate($template, $templateName = null, $line = null, $index = null) argument
336 … $e->setSourceContext($templateName ? new Source('', $templateName) : $this->getSourceContext());