Lines Matching refs:link

252                                 $link['url'] = $match['link'];
254 … if (substr($link['url'], 0, strlen($force_uri_prefix)) === $force_uri_prefix) {
255 $link['url'] = substr($link['url'], strlen($force_uri_prefix));
258 $link_items = explode(":", $link['url']);
261 $link['url'] = "Unauthorized URI scheme";
263 $link['name'] = $match['title'];
264 if ($link['name'] == "")
265 $link['name'] = $match['link'];
266 $link['class'] = 'urlextern';
272 … $link = $this->dokuwiki_get_link($renderer, $match['link'], $match['title']);
278 … $link['name'] = str_replace('\\\\', '<br />', $link['name']); //textbreak support
284 … " href='" . $link['url'] . "'><span class='plugin_button' style='" . hsc($match['css']) . "'>$ima…
286 $text .= $link['name'];
357 $link = $this->interwikilink($xhtml, $id, $name, $wikiName, $wikiUri, true);
358 return $link;
420 $link['rel'] = 'nofollow';
434 $link['target'] = $conf['target']['wiki'];
435 $link['style'] = '';
436 $link['pre'] = '';
437 $link['suf'] = '';
440 $link['pre'] = '<span class="curid">';
441 $link['suf'] = '</span>';
443 $link['more'] = '';
444 $link['class'] = $class;
445 $link['url'] = wl($id, $params);
446 $link['name'] = $name;
447 $link['title'] = $id;
450 ($conf['userewrite']) ? $link['url'] .= '?' : $link['url'] .= '&amp;';
453 $link['url'] .= 's[]=' . join('&amp;s[]=', $search);
455 $link['url'] .= 's=' . rawurlencode($search);
461 $link['url'] .= '#' . $hash;
463 return $link;
493 $link = $xhtml->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
497 $link['url'] = ml($src, array('id' => $ID, 'cache' => $cache), ($linking == 'direct'));
504 $link['class'] .= ' mediafile mf_' . $class;
505 $link['url'] = ml($src, array('id' => $ID, 'cache' => $cache), true);
507 $link['title'] .= ' (' . filesize_h(filesize(mediaFN($src))) . ')';
511 $link['url'] .= '#' . $hash;
515 $link['class'] .= ' wikilink2';
518 return $link;
528 $link = [];
529 $link['target'] = $conf['target']['interwiki'];
530 $link['pre'] = '';
531 $link['suf'] = '';
532 $link['more'] = '';
533 $link['name'] = $xhtml->_getLinkTitle($name, $wikiUri, $isImage);
534 $link['rel'] = '';
542 $link['class'] = "interwiki iw_$class";
544 $link['class'] = 'media';
549 $link['target'] = $conf['target']['wiki'];
553 $link['class'] .= ' wikilink1';
555 $link['class'] .= ' wikilink2';
556 $link['rel'] .= ' nofollow';
559 if ($conf['target']['interwiki']) $link['rel'] .= ' noopener';
561 $link['url'] = $url;
562 $link['title'] = $xhtml->_xmlEntities($link['url']);
565 return $link;