Lines Matching refs:contextPath
44 private WikiPath $contextPath; variable in ComboStrap\\TemplateSlot
52 public function __construct(string $elementId, WikiPath $contextPath) argument
59 $this->contextPath = $contextPath;
64 …public static function createFromElementId(string $elementId, WikiPath $contextPath = null): Templ… argument
67 if ($contextPath === null) {
68 $contextPath = ExecutionContext::getActualOrCreateFromEnv()
72 return new TemplateSlot($elementId, $contextPath);
156 return "Slot {$this->getElementId()} for {$this->contextPath}";
168 $requestedPath = $this->contextPath;
210 $contextPath = $this->contextPath;
212 …is->fetcherFragment = FetcherMarkup::createXhtmlMarkupFetcherFromPath($fragmentPath, $contextPath);