Searched refs:templateName (Results 1 – 5 of 5) sorted by relevance
12 private string $templateName; variable in ComboStrap\\Template\\TemplateForComponent14 public function __construct(string $templateName) argument16 $this->templateName = $templateName;19 public static function create(string $templateName): TemplateForComponent argument21 return new TemplateForComponent($templateName);27 ->renderWebComponent($this->templateName,$data);
217 $templateName = "$templatePrefix-index";218 if ($pageTemplateEngine->templateExists($templateName)) {219 return $templateName;229 $templateName = "$templatePrefix-item";230 if ($pageTemplateEngine->templateExists($templateName)) {231 return $templateName;
288 public function templateExists(string $templateName): bool argument291 $this->handleBarsForPage->getLoader()->load($templateName);301 * @param string $templateName - the name (without extension)305 …public function createTemplate(string $templateName, string $templateContent = null): TemplateEngi… argument313 $templateFile = $theme->resolve($templateName . "." . self::EXTENSION_HBS);
56 private string $templateName; variable in ComboStrap\\TemplateForWebPage102 …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 argument1003 $this->templateName = $templateName;
313 protected function loadTemplate($template, $templateName = null, $line = null, $index = null) argument336 … $e->setSourceContext($templateName ? new Source('', $templateName) : $this->getSourceContext());