Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent()); } public function postConnect() { // We define the DOKU_LEXER_EXIT state $this->Lexer->addExitPattern('', 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent()); } /** * Handle the match * You get the match for each pattern in the $match variable * $state says if it's an entry, exit or match pattern * * This is an instruction block and is cached apart from the rendering output * There is two caches levels * This cache may be suppressed with the url parameters ?purge=true * @param $match * @param $state * @param $pos * @param Doku_Handler $handler * @return array */ public function handle($match, $state, $pos, Doku_Handler $handler): array { switch ($state) { case DOKU_LEXER_ENTER : $parameters = PluginUtility::getTagAttributes($match); return array( PluginUtility::STATE => $state, PluginUtility::ATTRIBUTES => $parameters ); case DOKU_LEXER_UNMATCHED : return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler); case DOKU_LEXER_EXIT: return array(PluginUtility::STATE => $state); } return []; } /** * 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) { // The $data variable comes from the handle() function // // $mode = 'xhtml' means that we output html // There is other mode such as metadata, odt if ($format == 'xhtml') { /** * To help the parser recognize that _xmlEntities is a function of Doku_Renderer_xhtml * and not of Doku_Renderer * * @var Doku_Renderer_xhtml $renderer */ $state = $data[PluginUtility::STATE]; switch ($state) { case DOKU_LEXER_ENTER : $renderer->doc .= '
doc .= ' style="display:' . $attributes['display'] . '" '; } $renderer->doc .= '>'; break; case DOKU_LEXER_UNMATCHED: $renderer->doc .= PluginUtility::renderUnmatched($data); break; case DOKU_LEXER_EXIT : $renderer->doc .= '
'; break; } return true; } return false; } public static function getElementName() { return PluginUtility::getTagName(get_called_class()); } }