Lines Matching refs:componentId
151 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);
402 public static function createJavascriptSnippetFromComponentId(string $componentId): Snippet argument
404 return Snippet::createSnippetFromComponentId($componentId, self::EXTENSION_JS);
563 if (isset($this->componentId)) {
564 return $this->componentId;
952 public function setComponentId(string $componentId): Snippet argument
954 $this->componentId = $componentId;