Lines Matching refs:link
75 if ($data['previous']['link']) {
82 if ($data['toc']['link']) {
89 if ($data['next']['link']) {
98 * Build nice url title, if no title given use original link with original not cleaned id
100 * @param array $link with: 'link' => string full page id, 'title' => null|string, 'rawlink' => string original not cleaned id, 'hash' => string
103 protected function htmlLink($link) {
110 $title = $this->getTitle($link, $Renderer);
111 $id = ':' . $link['link'] . '#' . $link['hash'];
116 * Build nice url title, if no title given use original link with original not cleaned id
118 * @param array $link with: 'link' => string full page id, 'title' => null|string, 'rawlink' => string original not cleaned id, 'hash' => string
122 protected function getTitle($link, $Renderer)
124 if ($link['title'] === null) {
125 $defaulttitle = $Renderer->_simpleTitle($link['rawlink']);
126 return $Renderer->_getLinkTitle(null, $defaulttitle, $isImage, $link['link']);
128 return $link['title'];