Lexer->addEntryPattern(XmlTagProcessing::getContainerTagPattern(self::TAG), $mode, PluginUtility::getModeFromTag($this->getPluginComponent())); } public function postConnect() { $this->Lexer->addExitPattern('' . self::TAG . '>', PluginUtility::getModeFromTag($this->getPluginComponent())); } function handle($match, $state, $pos, Doku_Handler $handler) { switch ($state) { case DOKU_LEXER_ENTER: $tagAttributes = PluginUtility::getTagAttributes($match); $callStack = CallStack::createFromHandler($handler); $parentTag = $callStack->moveToParent(); $context = null; if ($parentTag!==false) { $grandfather = $callStack->moveToParent(); if ($grandfather !== false) { $grandFatherName = $grandfather->getTagName(); switch ($grandFatherName) { case syntax_plugin_combo_accordion::TAG: $id = $parentTag->getAttribute("id"); $tagAttributes["id"] = $id; $tagAttributes[self::HEADING_ID] = "heading" . ucfirst($id); $tagAttributes[self::TARGET_ID] = "collapse" . ucfirst($id); $parentAttribute = $parentTag->getAttributes(); if (!key_exists(self::COLLAPSED, $parentAttribute)) { // Accordion are collapsed by default $tagAttributes[self::COLLAPSED] = "true"; } else { $tagAttributes[self::COLLAPSED] = $parentAttribute[self::COLLAPSED]; } $context = syntax_plugin_combo_accordion::TAG; break; case TabsTag::TAG: $context = TabsTag::TAG; $tagAttributes = $parentTag->getAttributes(); break; default: LogUtility::log2FrontEnd("The label is included in the $grandFatherName component and this is unexpected", LogUtility::LVL_MSG_WARNING, self::TAG); } } else { /** * An panel may render alone in preview */ if ($parentTag->getContext() == PanelTag::CONTEXT_PREVIEW_ALONE) { $context = PanelTag::CONTEXT_PREVIEW_ALONE; } } } return array( PluginUtility::STATE => $state, PluginUtility::ATTRIBUTES => $tagAttributes, PluginUtility::CONTEXT => $context ); case DOKU_LEXER_UNMATCHED : return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler); case DOKU_LEXER_EXIT : $callStack = CallStack::createFromHandler($handler); $openingTag = $callStack->moveToPreviousCorrespondingOpeningCall(); $context = $openingTag->getContext(); /** * An image in a label should have no link (ie no anchor) * because a anchor is used for navigation */ $callStack->processNoLinkOnImageToEndStack(); $callStack->closeAndResetPointer(); return array( PluginUtility::STATE => $state, PluginUtility::CONTEXT => $context, PluginUtility::ATTRIBUTES => $openingTag->getAttributes() ); } return array(); } /** * Render the output * @param string $format * @param Doku_Renderer $renderer * @param array $data - what the function handle() return'ed * @return boolean - rendered correctly? (however, returned value is not used at the moment) * @see DokuWiki_Syntax_Plugin::render() * * */ function render($format, Doku_Renderer $renderer, $data): bool { if ($format == 'xhtml') { /** @var Doku_Renderer_xhtml $renderer */ $state = $data[PluginUtility::STATE]; switch ($state) { case DOKU_LEXER_ENTER: $context = $data[PluginUtility::CONTEXT]; switch ($context) { case syntax_plugin_combo_accordion::TAG: $attribute = $data[PluginUtility::ATTRIBUTES]; $headingId = $attribute[self::HEADING_ID]; $collapseId = $attribute[self::TARGET_ID]; $collapsed = $attribute[self::COLLAPSED]; if ($collapsed == "false") { $collapsedClass = "collapsed"; $ariaExpanded = "true"; } else { $collapsedClass = ""; $ariaExpanded = "false"; } $renderer->doc .= "