Home
last modified time | relevance | path

Searched refs:tagAttributes (Results 51 – 75 of 101) sorted by relevance

12345

/plugin/combo/syntax/
H A Dtoggleexpand.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");
H A Dwebcode.php163 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes);
164 $callStackArray = $tagAttributes->toCallStackArray();
221 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray, WebCodeTag::TAG);
222 $renderer->doc .= WebCodeTag::renderExit($tagAttributes, $data);
H A Dcode.php129 $tagAttributes = PluginUtility::getQualifiedTagAttributes($match, true, self::FILE_PATH_KEY, [], true);
132 PluginUtility::ATTRIBUTES => $tagAttributes
145 $tagAttributes = $parentTag->getAttributes();
146 $data[PluginUtility::ATTRIBUTES] = $tagAttributes;
H A Dcontentlistitem.php179 $tagAttributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES], self::MARKI_TAG);
180 $tagAttributes->addClassName(self::LIST_GROUP_ITEM_CLASS);
181 $renderer->doc .= $tagAttributes->toHtmlEnterTag("li");
H A Diterator.php93 * @param TagAttributes $tagAttributes
96 public static function getContextPathForComponentThatMayBeInFragment(TagAttributes $tagAttributes): WikiPath argument
98 $pathString = $tagAttributes->getComponentAttributeValueAndRemoveIfPresent(PagePath::PROPERTY_NAME);
222 $tagAttributes = TagAttributes::createFromTagMatch($match);
223 $callStackArray = $tagAttributes->toCallStackArray();
377 $tagAttributes = TagAttributes::createFromCallStackArray($data[self::PAGE_SQL_ATTRIBUTES]);
378 $path = $tagAttributes->getValue(PagePath::PROPERTY_NAME);
H A Dheadingwiki.php189 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray, HeadingTag::HEADING_TAG);
191 HeadingTag::processRenderEnterXhtml($context, $tagAttributes, $renderer, $pos);
198 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray);
199 $renderer->doc .= HeadingTag::renderClosingTag($tagAttributes, $context);
H A Dhighlightwiki.php57 $tagAttributes = TagAttributes::createEmpty($tag);
60 $tagAttributes->addComponentAttributeValue(ColorRgb::BACKGROUND_COLOR, $colorRgb
66 return $tagAttributes->toHtmlEnterTag($htmlTag);
/plugin/combo/ComboStrap/
H A DIFetcherAbs.php97 $tagAttributes = TagAttributes::createFromCallStackArray($query);
98 $this->buildFromTagAttributes($tagAttributes);
110 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher argument
113 $cache = $tagAttributes->getValueAndRemove(self::CACHE_KEY);
H A DDateTag.php94 public static function renderHtml(TagAttributes $tagAttributes): string argument
99 $lang = $tagAttributes->getComponentAttributeValue(Lang::PROPERTY_NAME);
104 $format = $tagAttributes->getValue(DateTag::FORMAT_ATTRIBUTE, DateTag::DEFAULT_FORMAT);
109 $date = $tagAttributes->getComponentAttributeValue(DateTag::DATE_ATTRIBUTE, $defaultDateTime);
H A DFetcherImage.php133 public function buildFromTagAttributes(TagAttributes $tagAttributes): FetcherImage argument
136 $requestedWidth = $tagAttributes->getValueAndRemove(Dimension::WIDTH_KEY);
138 $requestedWidth = $tagAttributes->getValueAndRemove(Dimension::WIDTH_KEY_SHORT);
149 $requestedHeight = $tagAttributes->getValueAndRemove(Dimension::HEIGHT_KEY);
151 $requestedHeight = $tagAttributes->getValueAndRemove(Dimension::HEIGHT_KEY_SHORT);
162 $requestedRatio = $tagAttributes->getValueAndRemove(Dimension::RATIO_ATTRIBUTE);
170 parent::buildFromTagAttributes($tagAttributes);
H A DSearchTag.php23 public static function render(TagAttributes $tagAttributes): string argument
48 $extraClass = $tagAttributes->getClass("");
76 if (!$tagAttributes->getBooleanValue('autocomplete')) {
H A DHrTag.php19 public static function render(TagAttributes $tagAttributes): string argument
21 return $tagAttributes->toHtmlEmptyTag("hr");
H A DFetcherPageSearch.php88 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher argument
90 $searchTerms = $tagAttributes->getValueAndRemoveIfPresent("q");
94 return parent::buildFromTagAttributes($tagAttributes);
H A DFetcherMarkupWebcode.php66 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher argument
70 $markup = $tagAttributes->getValueAndRemove($markupProperty);
75 $title = $tagAttributes->getValueAndRemove(self::TITLE_PROPERTY);
79 return parent::buildFromTagAttributes($tagAttributes);
H A DMessage.php149 $tagAttributes = TagAttributes::createEmpty("message")
153 $tagAttributes->addClassName($this->class);
158 $tagAttributes->addClassName("alert-success");
160 $tagAttributes->addClassName("alert-warning");
163 $message = $tagAttributes->toHtmlEnterTag("div");
H A DJumbotronTag.php17 public static function renderEnterXhtml(TagAttributes $tagAttributes): string argument
30 return $tagAttributes
H A DTemplateEngine.php192 $tagAttributes = TagAttributes::createFromTagMatch("<share $args/>", [], $knownType);
193 return ShareTag::renderSpecialEnter($tagAttributes, DOKU_LEXER_SPECIAL);
211 $tagAttributes = TagAttributes::createFromTagMatch("<breadcrumb $args/>", $default, $knownType);
212 return BreadcrumbTag::toBreadCrumbHtml($tagAttributes);
223 $tagAttributes = TagAttributes::createFromTagMatch("<page-image $args/>", $default, $knownType);
224 return PageImageTag::render($tagAttributes,[]);
H A DIFetcher.php93 * @param TagAttributes $tagAttributes - the attributes
96 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher; argument
H A DFetcherRaster.php282 * @param TagAttributes $tagAttributes
289 public function buildFromTagAttributes(TagAttributes $tagAttributes): FetcherImage argument
292 parent::buildFromTagAttributes($tagAttributes);
293 $this->buildOriginalPathFromTagAttributes($tagAttributes);
H A DPipelineTag.php49 public static function renderEnterXhtml(TagAttributes $tagAttributes): string argument
51 $pipelineWithPossibleVariableExpression = $tagAttributes->getValue(PluginUtility::PAYLOAD);
H A DFetcherPage.php104 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher argument
106 parent::buildFromTagAttributes($tagAttributes);
107 $this->buildOriginalPathFromTagAttributes($tagAttributes);
108 $layout = $tagAttributes->getValueAndRemoveIfPresent(PageTemplateName::PROPERTY_NAME);
115 $tagAttributes->getValueAndRemoveIfPresent(self::PURGE);
H A DFetcherSvg.php175 * @param TagAttributes $tagAttributes
181 public static function createFromAttributes(TagAttributes $tagAttributes): FetcherSvg argument
184 $fetcher->buildFromTagAttributes($tagAttributes);
1384 public function buildFromTagAttributes(TagAttributes $tagAttributes): FetcherImage argument
1387 foreach (array_keys($tagAttributes->getComponentAttributes()) as $svgAttribute) {
1396 $value = $tagAttributes->getValueAndRemove($svgAttribute);
1410 $value = $tagAttributes->getValueAndRemove($svgAttribute);
1420 $value = $tagAttributes->getValueAndRemove($svgAttribute);
1430 $value = $tagAttributes->getValue($svgAttribute);
1434 $value = $tagAttributes
[all...]
H A DFetcherRailBar.php65 public function buildFromTagAttributes(TagAttributes $tagAttributes): IFetcher
70 $this->buildOriginalPathFromTagAttributes($tagAttributes);
74 $viewPortWidth = $tagAttributes->getValueAndRemoveIfPresent(self::VIEWPORT_WIDTH);
85 $layout = $tagAttributes->getValueAndRemoveIfPresent(self::LAYOUT_ATTRIBUTE);
93 return parent::buildFromTagAttributes($tagAttributes);
64 buildFromTagAttributes(TagAttributes $tagAttributes) global() argument
/plugin/combo/ComboStrap/TagAttribute/
H A DVertical.php21 public static function processVertical(TagAttributes &$tagAttributes) argument
25 Horizontal::processFlexAttribute( self::VERTICAL_ATTRIBUTE, $tagAttributes);
/plugin/combo/ComboStrap/Tag/
H A DTableTag.php45 static function renderEnterXhtml(TagAttributes $tagAttributes, \Doku_Renderer_xhtml $renderer) argument
50 $position = $tagAttributes->getValueAsInteger(PluginUtility::POSITION);

12345