localRenderer = new Doku_Renderer_xhtml;
}
/**
* Return a simple tooltip.
*
* @param string $content - The on-page content. May contain newlines.
* @param string $tooltip - Tooltip content. May contain newlines.
* @param string $title - Tooltip title.
* @param string $preTitle - Text to display before the title.
* @param string $classes - CSS classes to add to this tooltip.
* @param string $textStyle - CSS styles for the linked content
* @return string
*/
function forText($content, $tooltip, $title='', $preTitle = '', $classes = '', $textStyle = '') {
if (!$classes) {
$classes = 'plugin-autotooltip__default';
}
$textClass = '';
if (empty($textStyle)) {
$textClass = 'plugin-autotooltip_linked';
if (strstr($content, '' . $this->_formatTT($preTitle) . '';
}
if (!empty($title)) {
$contentParts[] = '' . $title . '';
}
if (!empty($tooltip)) {
$contentParts[] = '' . $this->_formatTT($tooltip) . '';
}
return '' .
$content .
'' . $classes . '' .
'' .
implode('
', $contentParts) .
'' .
'';
}
/**
* Render a tooltip, with the title and abstract of a page.
*
* @param string $id - A page id.
* @param string $content - The on-page content. May contain newlines.
* @param string $preTitle - Text to display before the title.
* @param string $classes - CSS classes to add to this tooltip.
* @param string $linkStyle - Style attribute for the link.
* @return string
*/
function forWikilink($id, $content = null, $preTitle = '', $classes = '', $linkStyle = '') {
if (!$classes) {
$classes = 'plugin-autotooltip__default';
}
$title = p_get_metadata($id, 'title');
$abstract = p_get_metadata($id, 'description abstract');
// By default, the abstract starts with the title. Remove it so it's not displayed twice, but still fetch
// both pieces of metadata, in case another plugin rewrote the abstract.
$abstract = preg_replace('/^' . $this->_pregEscape($title) . '(\r?\n)+/', '', $abstract);
$link = $this->localRenderer->internallink($id, $content ?: $title, null, true);
if (!empty($linkStyle)) {
$link = preg_replace('/forText($link, $abstract, $title, $preTitle, "plugin-autotooltip_big $classes");
}
else {
return $link;
}
}
/**
* Format tooltip text.
*
* @param string $tt - Tooltip text.
* @return string
*/
private function _formatTT($tt) {
$tt = preg_replace('/\r?\n/', '
', $tt);
return preg_replace('/(
){3,}/', '
', $tt);
}
/**
* Escape a string for inclusion in a regular expression, assuming forward slash is used as the delimiter.
*
* @param string $r - The regex string, without delimiters.
* @return string
*/
private function _pregEscape($r) {
return preg_replace('/\//', '\\/', preg_quote($r));
}
}