| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Author.php | 73 public $link; variable in SimplePie\\Author 87 * @param string $link 90 public function __construct($name = null, $link = null, $email = null) argument 93 $this->link = $link; 129 if ($this->link !== null) { 130 return $this->link;
|
| H A D | Locator.php | 206 foreach ($links as $link) { 210 if ($link->hasAttribute('href') && $link->hasAttribute('rel')) { 211 …$this->registry->call(Misc::class, 'space_separated_tokens', [strtolower($link->getAttribute('rel'… 212 $line = method_exists($link, 'getLineNo') ? $link->getLineNo() : 1; 215 …$href = $this->registry->call(Misc::class, 'absolutize_url', [trim($link->getAttribute('href')), $… 217 …$href = $this->registry->call(Misc::class, 'absolutize_url', [trim($link->getAttribute('href')), $… 223 …'stylesheet', $rel) && $link->hasAttribute('type') && in_array(strtolower($this->registry->call(Mi… 247 foreach ($links as $link) { 248 if ($link->hasAttribute('href')) { 249 $href = trim($link->getAttribute('href')); [all …]
|
| /dokuwiki/inc/parser/ |
| H A D | xhtml.php | 825 * @param string $link The link name 831 public function camelcaselink($link, $returnonly = false) argument 834 return $this->internallink($link, $link, null, true); 836 $this->internallink($link, $link); 908 $link = []; 915 $link['rel'] = 'nofollow'; 926 $link['target'] = $conf['target']['wiki']; 927 $link['style'] = ''; 928 $link['pre'] = ''; 929 $link['suf'] = ''; [all …]
|
| H A D | handler.php | 829 $link = preg_replace(['/^\[\[/', '/\]\]$/u'], '', $match); 832 $link = sexplode('|', $link, 2); 833 if ($link[1] === null) { 834 $link[1] = null; 835 } elseif (preg_match('/^\{\{[^\}]+\}\}$/', $link[1])) { 837 $link[1] = Doku_Handler_Parse_Media($link[1]); 839 $link[0] = trim($link[0]); 843 if (link_isinterwiki($link[0])) { 845 $interwiki = sexplode('>', $link[0], 2, ''); 848 [$link[0], $link[1], strtolower($interwiki[0]), $interwiki[1]], [all …]
|
| H A D | renderer.php | 570 * @param string $link The link name 573 public function camelcaselink($link) argument 590 * @param string $link page ID to link to. eg. 'wiki:syntax' 593 public function internallink($link, $title = null) argument 600 * @param string $link full URL with scheme 603 public function externallink($link, $title = null) argument 622 * @param string $link original link - probably not much use 627 public function interwikilink($link, $title, $wikiName, $wikiUri) argument 634 * @param string $link the link 637 public function filelink($link, $title = null) argument [all …]
|
| /dokuwiki/inc/Ui/Media/ |
| H A D | DisplayRow.php | 30 $link = ml($id, '', true); 31 …echo ' <a href="' . $link . '" target="_blank"><img src="' . DOKU_BASE . 'lib/images/magnifier.png… 35 $link = wl('', ['do' => 'media', 'image' => $id, 'ns' => getNS($id)]); 36 …echo ' <a href="' . $link . '" target="_blank"><img src="' . DOKU_BASE . 'lib/images/mediamanager.… 41 $link = DOKU_BASE . 'lib/exe/mediamanager.php?delete=' . rawurlencode($id) . 43 echo ' <a href="' . $link . '" class="btn_media_delete" title="' . $id . '">' .
|
| H A D | Display.php | 59 $link = 'lib/images/fileicons/svg/' . $this->mediaFile->getIcoClass() . '.svg'; 60 if (!file_exists(DOKU_INC . $link)) $link = 'lib/images/fileicons/svg/file.svg'; 61 return DOKU_BASE . $link;
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | _links.css | 14 .dokuwiki a.wikilink2:link, 24 /* any link to current page */ 29 /*____________ other link types ____________*/ 41 /* external link */ 43 background-image: url(../../images/external-link.svg); 49 /* email link */ 55 /* link to some embedded media */ 58 /* interwiki link */ 62 /* RTL corrections; if link icons don't work as expected, remove the following lines */
|
| /dokuwiki/lib/scripts/ |
| H A D | linkwiz.js | 216 let link = this.$entry.val(); 219 if (!link) { 243 const syntax = this.createLinkSyntax(link, linkTitle); 244 pasteText(selection, syntax.link, syntax); 271 let link = id; 274 link = LinkWizard.createRelativeID(refId, id); 277 let startofs = link.length; 282 link = this.val.open + link; 284 link += '|'; 287 link += title; [all …]
|
| /dokuwiki/_test/tests/TreeBuilder/cp/ |
| H A D | complex.txt | 5 * This is not a link 7 * [[foo:bar]] is also a link 21 Here is more and another [[link]].
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | GuiExtension.php | 74 $link = []; 84 $link = [ 92 $img['alt'] = $link['title']; 100 if ($link) $html .= '<a ' . buildAttributes($link) . '>'; 102 if ($link) $html .= '</a>'; 452 $link = parse_url($url); 453 $base = $link['host']; 454 if (!empty($link['port'])) $base .= $base . ':' . $link['port']; 455 $long = $link['path']; 456 if (!empty($link['query'])) $long .= $link['query']; [all …]
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/ |
| H A D | FeedImage.php | 14 public $title, $url, $link; variable in FeedImage
|
| H A D | FeedItem.php | 14 public $title, $description, $link; variable in FeedItem
|
| /dokuwiki/inc/Extension/ |
| H A D | PluginInterface.php | 134 * @param string $link 141 public function external_link($link, $title = '', $class = '', $target = '', $more = ''); argument
|
| H A D | PluginTrait.php | 255 public function external_link($link, $title = '', $class = '', $target = '', $more = '') argument 259 $link = htmlentities($link); 260 if (!$title) $title = $link; 268 return "<a href='$link'$class$target$more>$title</a>";
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | AtomCreator03.php | 46 ….= " <link rel=\"alternate\" type=\"text/html\" href=\"".htmlspecialchars($this->link)."\"/>\n"; 47 $feed .= " <id>".htmlspecialchars($this->link)."</id>\n"; 64 $this->items[$i]->link 73 $feed .= " <id>".htmlspecialchars($this->items[$i]->link)."</id>\n";
|
| H A D | RSSCreator10.php | 36 $feed .= " <link>".$this->link."</link>\n"; 45 … <rdf:li rdf:resource=\"".htmlspecialchars((string) $this->items[$i]->link)."\"/>\n"; 53 $feed .= " <link>".$this->image->link."</link>\n"; 60 … $feed .= " <item rdf:about=\"".htmlspecialchars((string) $this->items[$i]->link)."\">\n"; 82 $feed .= " <link>".htmlspecialchars((string) $this->items[$i]->link)."</link>\n";
|
| H A D | HTMLCreator.php | 83 $imageStr = "<a href='".$this->image->link."'".$targetInsert.">". 98 …$feedArray[] = "<div class='".$this->stylePrefix."title'><a href='".$this->link."' ".$targetInsert… 117 if ($this->items[$i]->link) { 119 …div class='".$this->stylePrefix."item_title'><a href='".$this->items[$i]->link."' class='".$this->…
|
| H A D | GPXCreator.php | 33 <url>".htmlspecialchars($this->link)."</url> 42 <url>".htmlspecialchars($this->items[$i]->link)."</url>
|
| H A D | OPMLCreator.php | 56 if (isset($this->items[$i]->link)) { 57 $feed .= " url=\"".htmlspecialchars($this->items[$i]->link)."\"";
|
| H A D | PIECreator01.php | 30 $feed .= " <link>".$this->link."</link>\n"; 37 $feed .= " <link>".htmlspecialchars($this->items[$i]->link)."</link>\n";
|
| /dokuwiki/inc/lang/en/ |
| H A D | backlinks.txt | 3 This is a list of pages that seem to link back to the current page.
|
| /dokuwiki/inc/lang/az/ |
| H A D | backlinks.txt | 3 Bu, bu səhifəyə link saxlayan səhifələrin siyahısıdır.
|
| /dokuwiki/inc/Ui/ |
| H A D | Search.php | 137 … $link = $this->searchState->withSorting($option['sort'])->getSearchLink($option['label']); 138 $searchForm->addHTML($link); 270 $link = $this->searchState 273 $searchForm->addHTML($link); 317 $link = $this->searchState->withNamespace('')->getSearchLink($lang['search_any_ns']); 318 $searchForm->addHTML($link); 332 $link = $this->searchState->withNamespace($ns)->getSearchLink($label); 333 $searchForm->addHTML($link); 431 $link = $this->searchState 434 $searchForm->addHTML($link); [all …]
|
| H A D | Index.php | 86 $link = wl($ID, 'idx=' . rawurlencode($item['id'])); 87 …$html .= '<a href="' . $link . '" title="' . $item['id'] . '" class="idx_dir"' . $nofollow . '><st…
|