Home
last modified time | relevance | path

Searched refs:tagAttributes (Results 26 – 50 of 101) sorted by relevance

12345

/plugin/combo/ComboStrap/
H A DHorizontal.php25 public static function processHorizontal(TagAttributes &$tagAttributes) argument
28 self::processFlexAttribute(self::HORIZONTAL_ATTRIBUTE, $tagAttributes);
32 static function processFlexAttribute(string $attributeName, $tagAttributes) argument
35 $value = $tagAttributes->getValueAndRemove($attributeName);
40 $logicalTag = $tagAttributes->getLogicalTag();
72 $tagAttributes->addClassName($class);
77 $tagAttributes->addClassName(\syntax_plugin_combo_cell::FLEX_CLASS);
H A DBlockquoteTag.php247 public static function renderEnterXhtml(TagAttributes $tagAttributes, $data, $renderer): string argument
258 $type = $tagAttributes->getType();
262 $tagAttributes->addClassName("blockquote");
268 $tagAttributes->addClassName("mb-0");
270 return $tagAttributes->toHtmlEnterTag("blockquote");
282 $tagAttributes->addClassName("twitter-tweet");
286 if ($tagAttributes->hasComponentAttribute($tweetAttributesName)) {
287 $value = $tagAttributes->getValueAndRemove($tweetAttributesName);
288 $tagAttributes->addOutputAttributeValue("data-" . $tweetAttributesName, $value);
292 return $tagAttributes
320 renderExitXhtml(TagAttributes $tagAttributes, Doku_Renderer_xhtml $renderer, array $data) global() argument
[all...]
H A DDropDownTag.php13 public static function renderEnterXhtml(TagAttributes $tagAttributes): string argument
20 $name = $tagAttributes->getValueAndRemoveIfPresent("name","unknown name");
21 $tagAttributes->addClassName("nav-item");
22 $tagAttributes->addClassName("dropdown");
29 $liHtml = $tagAttributes->toHtmlEnterTag("li");
H A DCarrouselTag.php95 public static function renderEnterXhtml(TagAttributes $tagAttributes, array $data): string argument
100 $control = $tagAttributes->getValueAndRemoveIfPresent(CarrouselTag::CONTROL_ATTRIBUTE);
102 $tagAttributes->addOutputAttributeValue("data-" . CarrouselTag::CONTROL_ATTRIBUTE, $control);
108 $elementsMin = $tagAttributes->getValueAndRemoveIfPresent(CarrouselTag::ELEMENTS_MIN_ATTRIBUTE, CarrouselTag::ELEMENTS_MIN_DEFAULT);
109 $tagAttributes->addOutputAttributeValue("data-" . CarrouselTag::ELEMENTS_MIN_ATTRIBUTE, $elementsMin);
114 $slideMinimalWidth = $tagAttributes->getValueAndRemoveIfPresent(CarrouselTag::ELEMENT_WIDTH_ATTRIBUTE);
118 $tagAttributes->addOutputAttributeValue("data-" . CarrouselTag::ELEMENT_WIDTH_ATTRIBUTE, $slideMinimalWidth);
147 return $tagAttributes->toHtmlEnterTag("div");
H A DFetcherTraitWikiPath.php39 * @param TagAttributes $tagAttributes
46 public function buildOriginalPathFromTagAttributes(TagAttributes $tagAttributes): IFetcher argument
50 $id = $tagAttributes->getValueAndRemove(MediaMarkup::$MEDIA_QUERY_PARAMETER);
53 $id = $tagAttributes->getValueAndRemove(FetcherRawLocalPath::SRC_QUERY_PARAMETER);
56 $id = $tagAttributes->getValueAndRemove(DokuwikiId::DOKUWIKI_ID_ATTRIBUTE);
62 $drive = $tagAttributes->getValueAndRemove(WikiPath::DRIVE_ATTRIBUTE, $defaultDrive);
63 $rev = $tagAttributes->getValueAndRemove(WikiPath::REV_ATTRIBUTE);
H A DSnippet.php923 $tagAttributes = $this->toTagAttributes();
924 $array = $tagAttributes->toCallStackArray();
989 $tagAttributes = TagAttributes::createFromCallStackArray($this->getHtmlAttributes())
998 $tagAttributes->setInnerText($this->getInnerHtml());
999 return $tagAttributes;
1015 $tagAttributes
1020 $tagAttributes->addOutputAttributeValue("integrity", $integrity);
1026 $tagAttributes->addBooleanOutputAttributeValue("defer");
1030 return $tagAttributes;
1039 $tagAttributes
[all...]
H A DMediaMarkup.php150 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray);
151 $ref = $tagAttributes->getValueAndRemoveIfPresent(MarkupRef::REF_ATTRIBUTE);
153 $ref = $tagAttributes->getValueAndRemoveIfPresent(MediaMarkup::DOKUWIKI_SRC);
159 ->buildFromTagAttributes($tagAttributes);
391 $tagAttributes = $data[PluginUtility::ATTRIBUTES];
392 if ($tagAttributes === null) {
396 syntax_plugin_combo_media::registerImageMeta($tagAttributes, $renderer);
410 $tagAttributes = $data[PluginUtility::ATTRIBUTES];
411 syntax_plugin_combo_media::updateStatistics($tagAttributes, $renderer);
715 * @param TagAttributes $tagAttributes
718 buildFromTagAttributes(TagAttributes $tagAttributes) global() argument
[all...]
H A DContainerTag.php39 public static function renderEnterXhtml(TagAttributes $tagAttributes): string argument
41 $type = $tagAttributes->getType();
42 $tagAttributes->addClassName(ContainerTag::getClassName($type));
44 return $tagAttributes->toHtmlEnterTag("div");
H A DFetcherRawLocalPath.php60 * @param TagAttributes $tagAttributes
67 public function buildFromTagAttributes(TagAttributes $tagAttributes): FetcherRawLocalPath argument
70 $this->buildOriginalPathFromTagAttributes($tagAttributes);
71 parent::buildFromTagAttributes($tagAttributes);
H A DPluginUtility.php174 $tagAttributes = TagAttributes::createFromCallStackArray($attributes);
175 return $tagAttributes->toHTMLAttributeString();
711 * @param TagAttributes $tagAttributes
714 static function checkDefaultBorderColorAttributes(&$tagAttributes) argument
721 $tagAttributes->hasStyleDeclaration("border")
723 $tagAttributes->hasStyleDeclaration("border-width")
726 $tagAttributes->addStyleDeclarationIfNotSet("border-width", "1px");
734 $tagAttributes->hasStyleDeclaration("border")
736 $tagAttributes->hasStyleDeclaration("border-style")
739 $tagAttributes
[all...]
/plugin/combo/ComboStrap/Tag/
H A DBoxTag.php113 static public function renderEnterXhtml(TagAttributes $tagAttributes): string argument
115 $htmlTagName = $tagAttributes->getValueAndRemove(self::HTML_TAG_ATTRIBUTE, self::DEFAULT_HTML_TAG);
116 $logicalTag = $tagAttributes->getValueAndRemove(self::LOGICAL_TAG_ATTRIBUTE);
118 $tagAttributes->setLogicalTag($logicalTag);
120 return $tagAttributes->toHtmlEnterTag($htmlTagName);
124 static function renderExitXhtml(TagAttributes $tagAttributes): string argument
126 $tagName = $tagAttributes->getValueAndRemove(self::HTML_TAG_ATTRIBUTE, self::DEFAULT_HTML_TAG);
H A DFollowTag.php34 public static function renderSpecialEnterNode(TagAttributes $tagAttributes, $state): string argument
39 !$tagAttributes->hasAttribute(syntax_plugin_combo_link::MARKUP_REF_ATTRIBUTE)
40 && !$tagAttributes->hasAttribute(FollowTag::HANDLE_ATTRIBUTE)
52 $brand = BrandTag::createButtonFromAttributes($tagAttributes, BrandButton::TYPE_BUTTON_FOLLOW);
77 $tagAttributes = BrandTag::mixBrandButtonToTagAttributes($tagAttributes, $brand);
78 $html = $tagAttributes->toHtmlEnterTag("a");
/plugin/combo/syntax/
H A Dlink.php421 $tagAttributes = TagAttributes::createFromCallStackArray($callStackAttributes, self::TAG);
423 $markupRef = $tagAttributes->getValueAndRemove(self::MARKUP_REF_ATTRIBUTE);
457 $markupAttributes->mergeWithCallStackArray($tagAttributes->toCallStackArray());
458 $tagAttributes = $markupAttributes;
471 $tagAttributes->addOutputAttributeValue("role", "button");
472 ButtonTag::processButtonAttributesToHtmlAttributes($tagAttributes);
475 $tagAttributes->addClassName("dropdown-item");
478 $tagAttributes->addClassName("navbar-link");
482 $tagAttributes->addClassName("nav-link");
497 $renderer->doc .= $htmlPrefix . $tagAttributes
728 addOpenLinkTagInCallStack(CallStack $callStack, TagAttributes $tagAttributes) global() argument
[all...]
H A Dbackgrounds.php99 $tagAttributes = TagAttributes::createFromTagMatch($match);
102 PluginUtility::ATTRIBUTES => $tagAttributes->toCallStackArray()
147 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES]);
148 $tagAttributes->addClassName(self::TAG);
149 $renderer->doc .= $tagAttributes->toHtmlEnterTag("div");
H A Dheader.php71 $tagAttributes = PluginUtility::getTagAttributes($match);
80 PluginUtility::ATTRIBUTES => $tagAttributes,
124 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES]);
128 $tagAttributes->addClassName("card-header");
129 $renderer->doc .= $tagAttributes->toHtmlEnterTag("div");
132 $renderer->doc .= $tagAttributes
H A Dpara.php196 $tagAttributes = TagAttributes::createFromCallStackArray($attributes);
197 if ($tagAttributes->hasComponentAttribute(TagAttributes::TYPE_KEY)) {
198 $class = $tagAttributes->getType();
199 $tagAttributes->addClassName($class);
201 $renderer->doc .= $tagAttributes->toHtmlEnterTag("p");
205 $tagAttributes = TagAttributes::createFromCallStackArray($attributes);
206 $renderer->doc .= $tagAttributes->toHtmlEnterTag("p");
H A Dbrand.php37 public static function addOpenLinkTagInCallStack(CallStack $callStack, TagAttributes $tagAttributes) argument
39 $linkArrayAttributes = $tagAttributes->toCallStackArray();
40 $linkArrayAttributes[TagAttributes::TYPE_KEY] = $tagAttributes->getLogicalTag();
134 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, [], true)
140 $returnedArray = BrandTag::handleSpecialEnter($tagAttributes, $handler);
146 $returnedArray[PluginUtility::ATTRIBUTES] = $tagAttributes->toCallStackArray();
241 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES]);
242 $renderer->doc .= BrandTag::render($tagAttributes, $state, $data);;
H A Dlabel.php83 $tagAttributes = PluginUtility::getTagAttributes($match);
94 $tagAttributes["id"] = $id;
95 $tagAttributes[self::HEADING_ID] = "heading" . ucfirst($id);
96 $tagAttributes[self::TARGET_ID] = "collapse" . ucfirst($id);
100 $tagAttributes[self::COLLAPSED] = "true";
102 $tagAttributes[self::COLLAPSED] = $parentAttribute[self::COLLAPSED];
108 $tagAttributes = $parentTag->getAttributes();
125 PluginUtility::ATTRIBUTES => $tagAttributes,
H A Dtooltip.php144 $tagAttributes = TagAttributes::createFromTagMatch($match);
147 PluginUtility::ATTRIBUTES => $tagAttributes->toCallStackArray()
229 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray);
230 $text = $tagAttributes->getValue(self::TEXT_ATTRIBUTE);
253 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray);
254 $text = $tagAttributes->getValue(self::TEXT_ATTRIBUTE);
H A Drelated.php112 $tagAttributes = TagAttributes::createFromTagMatch($match);
113 $attributes = $tagAttributes->toCallStackArray();
141 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES])
143 $renderer->doc .= RelatedTag::render($tagAttributes);
H A Dcontentlist.php299 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES], self::MARKI_TAG);
300 $tagAttributes->addClassName("list-group");
302 $numbered = $tagAttributes->getBooleanValueAndRemoveIfPresent(self::NUMBERED, self::NUMBERED_DEFAULT);
306 $tagAttributes->addClassName("list-group-numbered");
310 $renderer->doc .= $tagAttributes->toHtmlEnterTag($htmlElement);
318 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES], self::MARKI_TAG);
319 $numbered = $tagAttributes->getValueAndRemoveIfPresent(self::NUMBERED, self::NUMBERED_DEFAULT);
H A Dfooter.php130 $tagAttributes = PluginUtility::getTagAttributes($match);
133 PluginUtility::ATTRIBUTES => $tagAttributes
173 $tagAttributes = TagAttributes::createFromCallStackArray($attributes, self::TAG);
174 $renderer->doc .= $tagAttributes->toHtmlEnterTag("footer");
H A Dheadingatx.php139 $tagAttributes = TagAttributes::createFromCallStackArray($attributes, HeadingTag::HEADING_TAG);
141 HeadingTag::processRenderEnterXhtml($context, $tagAttributes, $renderer, $pos);
148 $tagAttributes = TagAttributes::createFromCallStackArray($attributes);
149 $renderer->doc .= HeadingTag::renderClosingTag($tagAttributes, $context);
H A Dtogglecollapse.php107 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultParameters, $knownTypes)
112 PluginUtility::ATTRIBUTES => $tagAttributes->toCallStackArray()
145 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES])
147 $renderer->doc .= $tagAttributes->toHtmlEnterTag("span");
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DTag.php44 var $tagAttributes; variable in Tag
72 $this->tagAttributes = array();
91 return array_key_exists($attrName, $this->tagAttributes);
101 return $this->tagAttributes[$attrName];
150 foreach($this->tagAttributes as $attrName => $attrValue) {
179 $this->tagAttributes = array();
188 unset($this->tagAttributes[$attrName]);
210 $this->tagAttributes[$attrName] = $attrValue;
257 $tagAttributes = array();
325 $tagAttributes[$attributeName] = $attributeValue;
[all …]

12345