Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this->getPluginComponent()); } } public function postConnect() { foreach (self::getTags() as $tag) { $this->Lexer->addExitPattern('', 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this->getPluginComponent()); } // Link $this->Lexer->addPattern(self::INTERNAL_LINK_PATTERN, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this->getPluginComponent()); } /** * * The handle function goal is to parse the matched syntax through the pattern function * and to return the result for use in the renderer * This result is always cached until the page is modified. * @see DokuWiki_Syntax_Plugin::handle() * * @param string $match * @param int $state * @param int $pos * @param Doku_Handler $handler * @return array|bool */ function handle($match, $state, $pos, Doku_Handler $handler) { switch ($state) { case DOKU_LEXER_ENTER: // Suppress the tag name $match = utf8_substr($match, strlen(self::getTag()) + 1, -1); $parameters = webcomponent::parseMatch($match); return array($state, $parameters); case DOKU_LEXER_UNMATCHED : return array($state, $match); case DOKU_LEXER_MATCHED : $parameters = array(); if (preg_match('/' . self::INTERNAL_LINK_PATTERN . '/msSi', $match . DOKU_LF)) { // We have a internal link, we parse it (code form the function internallink in handler.php) // // Strip the opening and closing markup $link = preg_replace(array('/^\[\[/', '/\]\]$/u'), '', $match); // Split title from URL $link = explode('|', $link, 2); if (!isset($link[1])) { $link[1] = null; } $link[0] = trim($link[0]); // we expect only a local link $parameters['locallink']['pageid'] = $link[0]; $parameters['locallink']['content'] = $link[1]; } return array($state, $parameters); case DOKU_LEXER_EXIT : return array($state, ''); } return array(); } /** * Render the output * @see DokuWiki_Syntax_Plugin::render() * * @param string $mode * @param Doku_Renderer $renderer * @param array $data - what the function handle() return'ed * @return bool */ function render($mode, Doku_Renderer $renderer, $data) { switch ($mode) { case 'xhtml': { /** @var Doku_Renderer_xhtml $renderer */ list($state, $parameters) = $data; switch ($state) { case DOKU_LEXER_ENTER : break; case DOKU_LEXER_UNMATCHED : $renderer->doc .= $renderer->_xmlEntities($parameters); break; case DOKU_LEXER_MATCHED: if (array_key_exists('locallink', $parameters)) { $pageid = $parameters['locallink']['pageid']; $content = $parameters['locallink']['content']; $renderer->doc .= '' . $renderer->_xmlEntities($content) . ''; } break; case DOKU_LEXER_EXIT : break; } return true; } case 'metadata': /** @var Doku_Renderer_metadata $renderer */ list($state, $parameters) = $data; switch ($state) { case DOKU_LEXER_MATCHED: if (array_key_exists('locallink', $parameters)) { // To add the link in the backlinks // See: https://www.dokuwiki.org/devel:syntax_plugins#metadata_renderer $pageIdToLinkTo = $parameters['locallink']['pageid']; $renderer->internallink($pageIdToLinkTo); } } } return false; } public static function getTag() { return webcomponent::getTagName(get_called_class()); } public static function getTags() { $elements[] = self::getTag(); $elements[] = 'btn'; return $elements; } }