Home
last modified time | relevance | path

Searched refs:logicalTag (Results 1 – 11 of 11) sorted by relevance

/plugin/combo/ComboStrap/
H A DXmlTagProcessing.php44 $logicalTag = $tagAttributes->getLogicalTag();
45 switch ($logicalTag) {
119 LogUtility::warning("The exit tag (" . $logicalTag . ") was not processed.");
175 $logicalTag = $tagAttributes->getLogicalTag();
176 switch ($logicalTag) {
269 LogUtility::warning("The enter tag (" . $logicalTag . ") was not processed.");
285 $logicalTag = $markupTag;
306 $logicalTag = ButtonTag::LOGICAL_TAG;
315 $logicalTag = CardTag::LOGICAL_TAG;
319 $logicalTag
[all...]
H A DTagAttributes.php245 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): TagAttributes argument
358 $tagAttributes = new TagAttributes($callStackArray, $logicalTag);
680 if (isset($this->logicalTag)) {
681 $message = "$message for the component ({$this->logicalTag})
[all...]
H A DSpacing.php28 $logicalTag = $attributes->getLogicalTag();
29 if ($logicalTag == SvgImageLink::CANONICAL) {
35 if ($logicalTag == \syntax_plugin_combo_cell::TAG) {
H A DHorizontal.php40 $logicalTag = $tagAttributes->getLogicalTag();
42 if (!in_array($logicalTag, Vertical::COMPONENTS)) {
76 if ($logicalTag !== GridTag::TAG) {
H A DPrism.php211 $logicalTag = $plugin->getPluginComponent();
213 $logicalTag = $attributes->getLogicalTag();
216 $attributes->setLogicalTag($logicalTag . "-container");
224 $codeAttributes = TagAttributes::createEmpty($logicalTag);
H A DTooltip.php91 $logicalTag = $tagAttributes->getLogicalTag();
92 if (!in_array($logicalTag, [syntax_plugin_combo_link::TAG, ButtonTag::MARKUP_LONG])) {
H A DDimension.php247 $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 DBrandButton.php550 $logicalTag = $this->type;
551 $buttonAttributes = TagAttributes::createEmpty($logicalTag);
552 $buttonAttributes->addComponentAttributeValue(TagAttributes::TYPE_KEY, $logicalTag);
H A DMarkupPath.php961 function getHtmlAnchorLink($logicalTag = null): string argument
966 ->toAttributes($logicalTag)
/plugin/combo/ComboStrap/TagAttribute/
H A DStyleAttribute.php69 $logicalTag = $tagAttributes->getLogicalTag();
70 if ($logicalTag !== null && $tagAttributes->getDefaultStyleClassShouldBeAdded() === true) {
72 $tagAttributes->addClassName(self::addComboStrapSuffix($logicalTag));
74 $tagAttributes->addClassName($logicalTag . "-" . $tagAttributes->getType() . "-" . self::COMBOSTRAP_FIX);
/plugin/combo/ComboStrap/Tag/
H A DBoxTag.php116 $logicalTag = $tagAttributes->getValueAndRemove(self::LOGICAL_TAG_ATTRIBUTE);
117 if ($logicalTag !== null) {
118 $tagAttributes->setLogicalTag($logicalTag);