Lines Matching defs:data

35      * in the data to not compete with the empty tag pattern (ie <empty/>
42 public static function renderStaticExitXhtml(TagAttributes $tagAttributes, Doku_Renderer_xhtml $renderer, array $data, DokuWiki_Syntax_Plugin $plugin): bool
47 BlockquoteTag::renderExitXhtml($tagAttributes, $renderer, $data);
53 $renderer->doc .= ButtonTag::renderExitXhtml($data);
56 CardTag::handleExitXhtml($data, $renderer);
59 $renderer->doc .= BarTag::renderExitXhtml($data);
85 $context = $data[PluginUtility::CONTEXT];
101 $renderer->doc .= TabsTag::renderExitXhtml($tagAttributes, $data);
104 $renderer->doc .= PanelTag::renderExitXhtml($data);
107 $renderer->doc .= BackgroundTag::renderExitSpecialHtml($data);
110 $renderer->doc .= WebCodeTag::renderExit($tagAttributes, $data);
147 $data = PluginUtility::handleAndReturnUnmatchedData(null, $match, $handler);
156 $data[PluginUtility::ATTRIBUTES] = $tagAttributes;
158 return $data;
170 public static function renderStaticEnterXhtml(TagAttributes $tagAttributes, Doku_Renderer_xhtml $renderer, array $data, DokuWiki_Syntax_Plugin $plugin): bool
173 $context = $data[PluginUtility::CONTEXT] ?? null;
174 $pos = $data[PluginUtility::POSITION] ?? null;
178 $renderer->doc .= BlockquoteTag::renderEnterXhtml($tagAttributes, $data, $renderer);
184 $renderer->doc .= ButtonTag::renderEnterXhtml($tagAttributes, $plugin, $data);
187 $renderer->doc .= CardTag::renderEnterXhtml($tagAttributes, $renderer, $data);
190 $renderer->doc .= BarTag::renderEnterXhtml($tagAttributes, $data);
193 $renderer->doc .= CarrouselTag::renderEnterXhtml($tagAttributes, $data);
227 $renderer->doc .= PageExplorerTag::renderEnterTag($tagAttributes, $data);
233 $renderer->doc .= TabsTag::renderEnterXhtml($tagAttributes, $data);
236 $renderer->doc .= PanelTag::renderEnterXhtml($tagAttributes, $data);
239 $renderer->doc .= PermalinkTag::renderEnterSpecialXhtml($data);
276 // context data
488 public static function renderStatic(string $format, Doku_Renderer $renderer, array $data, DokuWiki_Syntax_Plugin $plugin): bool
490 $logicalTag = $data[PluginUtility::TAG] ?? null;
491 $attributes = $data[PluginUtility::ATTRIBUTES] ?? null;
492 $context = $data[PluginUtility::CONTEXT] ?? null;
493 $state = $data[PluginUtility::STATE] ?? null;
494 $pos = $data[PluginUtility::POSITION] ?? null;
501 return self::renderStaticEnterXhtml($tagAttributes, $renderer, $data, $plugin);
504 $renderer->doc .= PluginUtility::renderUnmatched($data);
509 return XmlTagProcessing::renderStaticExitXhtml($tagAttributes, $renderer, $data, $plugin);
517 return XmlTagProcessing::renderStaticEnterSpecialMetadata($tagAttributes, $renderer, $data, $plugin);
529 $renderer->doc .= PluginUtility::renderUnmatched($data);
547 HeadingTag::processMetadataAnalytics($data, $renderer);
799 public static function renderStaticEmptyTag(string $format, Doku_Renderer $renderer, array $data, DokuWiki_Syntax_Plugin $plugin): bool
802 $tag = $data[PluginUtility::TAG];
803 $attributes = $data[PluginUtility::ATTRIBUTES];
823 $renderer->doc .= PageImageTag::render($tagAttributes, $data);
832 $renderer->doc .= BrandTag::render($tagAttributes, $state, $data);
835 $renderer->doc .= CacheTag::renderXhtml($data);
839 $renderer->doc .= BackgroundTag::renderExitSpecialHtml($data);
845 $renderer->doc .= PermalinkTag::renderEnterSpecialXhtml($data);
854 $renderer->doc .= MediaMarkup::renderSpecial($data, $renderer);
876 CacheTag::metadata($data);
879 MediaMarkup::metadata($data, $renderer);
890 private static function renderStaticEnterSpecialMetadata(TagAttributes $tagAttributes, Doku_Renderer_metadata $renderer, array $data, DokuWiki_Syntax_Plugin $plugin): bool
895 HeadingTag::processHeadingEnterMetadata($data, $renderer);
901 BackgroundTag::renderMeta($data, $renderer);