Home
last modified time | relevance | path

Searched refs:m_helper (Results 1 – 3 of 3) sorted by relevance

/plugin/autotooltip/
H A Drenderer.php14 /** @type helper_plugin_autotooltip m_helper */
15 private $m_helper; variable in renderer_plugin_autotooltip
20 $this->m_helper = plugin_load('helper', 'autotooltip');
21 $this->m_exclude = $this->m_helper->isExcluded($ID);
52 $meta = $this->m_helper->read_meta_fast($id);
54 $link = $this->m_helper->stripNativeTooltip($link);
55 $link = $this->m_helper->forText($link, $abstract, $meta['title']);
H A Daction.php15 /** @type helper_plugin_autotooltip m_helper */
16 private $m_helper; variable in action_plugin_autotooltip
23 $this->m_helper = plugin_load('helper', 'autotooltip');
52 if (!$this->m_helper->isExcluded($ID) && page_exists($id) && $id != $ID) {
62 $meta = $this->m_helper->read_meta_fast($id);
64 $link = $this->m_helper->stripNativeTooltip($link);
65 $link = $this->m_helper->forText($link, $abstract, $meta['title']);
H A Dsyntax.php13 /** @type helper_plugin_autotooltip m_helper */
14 private $m_helper;
17 $this->m_helper = plugin_load('helper', 'autotooltip');
119 $renderer->doc .= $this->m_helper->forWikilink($data['pageid'], $data['content']??'', '', $data['classes']??'');
122 $renderer->doc .= $this->m_helper->forText($data['content']??'', $data['tip']??'', $data['title']??'', '', $data['classes']??'');
15 private $m_helper; global() variable in syntax_plugin_autotooltip