Searched refs:logicalTag (Results 1 – 11 of 11) sorted by relevance
| /plugin/combo/ComboStrap/ |
| H A D | XmlTagProcessing.php | 43 $logicalTag = $tagAttributes->getLogicalTag(); 44 switch ($logicalTag) { 126 $renderer->doc .= htmlspecialchars("</$logicalTag>", ENT_QUOTES, 'UTF-8'); 127 … LogUtility::warning("The exit tag (" . $logicalTag . ") is unknown and was escaped."); 183 $logicalTag = $tagAttributes->getLogicalTag(); 184 switch ($logicalTag) { 277 $renderer->doc .= htmlspecialchars("<$logicalTag>", ENT_QUOTES, 'UTF-8'); 278 … LogUtility::warning("The enter tag (" . $logicalTag . ") is unknown and was escaped."); 294 $logicalTag = $markupTag; 315 $logicalTag = ButtonTag::LOGICAL_TAG; [all …]
|
| H A D | TagAttributes.php | 245 private $logicalTag; variable in ComboStrap\\TagAttributes 284 $this->logicalTag = $tag; 321 public static function createEmpty($logicalTag = ""): TagAttributes argument 323 if ($logicalTag !== "") { 324 return new TagAttributes([], $logicalTag); 332 * @param string|null $logicalTag - the logical tag for which this attribute will apply 335 …public static function createFromCallStackArray(?array $callStackArray, string $logicalTag = null)… argument 358 $tagAttributes = new TagAttributes($callStackArray, $logicalTag); 680 if (isset($this->logicalTag)) { 681 $message = "$message for the component ({$this->logicalTag})."; [all …]
|
| H A D | Spacing.php | 28 $logicalTag = $attributes->getLogicalTag(); 29 if ($logicalTag == SvgImageLink::CANONICAL) { 35 if ($logicalTag == \syntax_plugin_combo_cell::TAG) {
|
| H A D | Horizontal.php | 40 $logicalTag = $tagAttributes->getLogicalTag(); 42 if (!in_array($logicalTag, Vertical::COMPONENTS)) { 76 if ($logicalTag !== GridTag::TAG) {
|
| H A D | Prism.php | 222 $logicalTag = $plugin->getPluginComponent(); 224 $logicalTag = $attributes->getLogicalTag(); 227 $attributes->setLogicalTag($logicalTag . "-container"); 235 $codeAttributes = TagAttributes::createEmpty($logicalTag);
|
| H A D | Tooltip.php | 91 $logicalTag = $tagAttributes->getLogicalTag(); 92 if (!in_array($logicalTag, [syntax_plugin_combo_link::TAG, ButtonTag::MARKUP_LONG])) {
|
| H A D | Dimension.php | 247 $logicalTag = $attributes->getLogicalTag(); 249 LogUtility::error("The width value is empty for the tag ({$logicalTag})"); 267 if (in_array($logicalTag, self::NATURAL_SIZING_ELEMENT)) {
|
| H A D | BrandButton.php | 550 $logicalTag = $this->type; 551 $buttonAttributes = TagAttributes::createEmpty($logicalTag); 552 $buttonAttributes->addComponentAttributeValue(TagAttributes::TYPE_KEY, $logicalTag);
|
| H A D | MarkupPath.php | 961 function getHtmlAnchorLink($logicalTag = null): string argument 966 ->toAttributes($logicalTag)
|
| /plugin/combo/ComboStrap/TagAttribute/ |
| H A D | StyleAttribute.php | 69 $logicalTag = $tagAttributes->getLogicalTag(); 70 if ($logicalTag !== null && $tagAttributes->getDefaultStyleClassShouldBeAdded() === true) { 72 $tagAttributes->addClassName(self::addComboStrapSuffix($logicalTag)); 74 …$tagAttributes->addClassName($logicalTag . "-" . $tagAttributes->getType() . "-" . self::COMBOSTRA…
|
| /plugin/combo/ComboStrap/Tag/ |
| H A D | BoxTag.php | 116 $logicalTag = $tagAttributes->getValueAndRemove(self::LOGICAL_TAG_ATTRIBUTE); 117 if ($logicalTag !== null) { 118 $tagAttributes->setLogicalTag($logicalTag);
|