Lines Matching refs:link

169                     $link = $this->_itemimage($menuitem[2], $title);
171 $link = $this->_itemLink($menuitem[2], $title);
175 "link" => $link,
207 $link = preg_replace(array('/^\[\[/','/\]\]$/u'),'',$match);
210 $link = explode('|',$link,2);
211 $ref = trim($link[0]);
288 $link = $this->_getLink($type, $args, $renderer);
289 $link['title'] = $args[1];
291 $link['name'] = $img;
292 $renderer->doc .= $renderer->_formatLink($link);
294 $link['name'] = '<span class="menutext">'.$args[1].'</span>';
296 $renderer->doc .= $renderer->_formatLink($link);
328 $link = $this->_getLink($type, $args, $renderer);
329 $link['title'] = $args[1];
331 $link['name'] = $img;
332 $renderer->doc .= $renderer->_formatLink($link);
334 $link['name'] = '<p class="menutext">'.$args[1].'</p>';
335 $renderer->doc .= $renderer->_formatLink($link);
353 $link = array();
354 $link['class'] = '';
355 $link['style'] = '';
356 $link['pre'] = '';
357 $link['suf'] = '';
358 $link['more'] = '';
359 $link['title'] = '';
360 $link['name'] = '';
361 $link['url'] = $url;
363 $link['target'] = $target == NULL ? '' : $conf['target'][$target];
366 $link['target'] = $conf['target']['wiki'];
369 return $link;
383 $link = $this->_createLink($url, 'interwiki');
388 $link = $this->_createLink($url, 'windows');
391 $link = $this->_createLink($args[0], 'extern');
399 $link = $this->_createLink('mailto:'.$address);
400 $link['class'] = 'JSnocheck';
404 $link = $this->_createLink('#'.$hash);
405 $link['class'] = "wikilink1";
414 $link = $this->_createLink($url, 'wiki');
415 $link['class'] = $exists ? 'wikilink1' : 'wikilink2';
420 $link = $this->_createLink($url);
421 if (!$exists) $link['class'] = 'wikilink2';
425 $link = $this->_createLink($url);
428 return $link;