Lines Matching refs:link
172 $link = $this->_itemimage($menuitem[2], $title);
174 $link = $this->_itemLink($menuitem[2], $title);
178 "link" => $link,
210 $link = preg_replace(array('/^\[\[/','/\]\]$/u'),'',$match);
213 $link = explode('|',$link,2);
214 $ref = trim($link[0]);
294 $link = $this->_getLink($type, $args, $renderer);
295 $link['title'] = $args[1];
297 $link['name'] = $img;
298 $renderer->doc .= $renderer->_formatLink($link);
300 $link['name'] = '<span class="menutext">'.$args[1].'</span>';
302 $renderer->doc .= $renderer->_formatLink($link);
334 $link = $this->_getLink($type, $args, $renderer);
335 $link['title'] = $args[1];
337 $link['name'] = $img;
338 $renderer->doc .= $renderer->_formatLink($link);
340 $link['name'] = '<p class="menutext">'.$args[1].'</p>';
341 $renderer->doc .= $renderer->_formatLink($link);
357 $link = array();
358 $link['class'] = '';
359 $link['style'] = '';
360 $link['pre'] = '';
361 $link['suf'] = '';
362 $link['more'] = '';
363 $link['title'] = '';
364 $link['name'] = '';
365 $link['url'] = $url;
367 $link['target'] = $target == NULL ? '' : $conf['target'][$target];
370 $link['target'] = $conf['target']['wiki'];
373 return $link;
387 $link = $this->_createLink($url, 'interwiki');
392 $link = $this->_createLink($url, 'windows');
395 $link = $this->_createLink($args[0], 'extern');
403 $link = $this->_createLink('mailto:'.$address);
404 $link['class'] = 'JSnocheck';
408 $link = $this->_createLink('#'.$hash);
409 $link['class'] = "wikilink1";
418 $link = $this->_createLink($url, 'wiki');
419 $link['class'] = $exists ? 'wikilink1' : 'wikilink2';
424 $link = $this->_createLink($url);
425 if (!$exists) $link['class'] = 'wikilink2';
429 $link = $this->_createLink($url);
432 return $link;