Home
last modified time | relevance | path

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

/template/strap/ComboStrap/
H A DSnippetSystem.php152 function &attachCssInternalStyleSheet($componentId, string $script = null): Snippet argument
154 $snippet = Snippet::getOrCreateFromComponentId($componentId, Snippet::EXTENSION_CSS);
167 public function attachJavascriptFromComponentId($componentId, string $script = null): Snippet argument
169 $snippet = Snippet::getOrCreateFromComponentId($componentId, Snippet::EXTENSION_JS);
183 function attachInternalJavascriptFromPathForRequest($componentId, Path $path): Snippet argument
187 ->setComponentId($componentId);
195 public function getSnippetsForComponent($componentId): array argument
200 if ($snippet->getComponentId() === $componentId) {
216 public function hasSnippetsForComponent($componentId): bool argument
218 return count($this->getSnippetsForComponent($componentId)) > 0;
[all …]
H A DSnippet.php151 private string $componentId; variable in ComboStrap\\Snippet
178 public static function createCssSnippetFromComponentId($componentId): Snippet argument
180 return Snippet::createSnippetFromComponentId($componentId, self::EXTENSION_CSS);
186 public static function createSnippetFromComponentId($componentId, $type): Snippet argument
188 $path = self::getInternalPathFromNameAndExtension($componentId, $type);
190 ->setComponentId($componentId);
197 …* @param string $componentId - the component id is a short id that you will found in the class (fo…
201 … public static function getOrCreateFromComponentId(string $componentId, string $extension): Snippet argument
204 $snippetPath = self::getInternalPathFromNameAndExtension($componentId, $extension);
206 ->setComponentId($componentId);
[all …]
H A DIdManager.php46 …public function generateNewHtmlIdForComponent(string $componentId, Path $executingPath = null): st… argument
61 $idScope = $componentId;
H A DIdentityFormsHelper.php157 public static function getHtmlStyleTag(string $componentId): string argument
159 $loginCss = Snippet::createCssSnippetFromComponentId($componentId);
H A DFetcherMarkup.php861 * @param string $componentId
864 public function getSnippetsForComponent(string $componentId): array argument
871 if ($snippet->getComponentId() === $componentId) {