Home
last modified time | relevance | path

Searched refs:shortcut (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/_test/tests/inc/parser/
Drenderer_resolveinterwiki.test.php48 $shortcut = 'nonexisting';
50 $url = $Renderer->_resolveInterWiki($shortcut, $reference);
53 $this->assertEquals('', $shortcut);
61 $shortcut = 'nonexisting';
63 $url = $Renderer->_resolveInterWiki($shortcut, $reference);
/dokuwiki/inc/parser/
Drenderer.php913 * @param string $shortcut identifier for the interwiki link
918 public function _resolveInterWiki(&$shortcut, $reference, &$exists = null) argument
921 if (isset($this->interwiki[$shortcut])) {
922 $url = $this->interwiki[$shortcut];
924 $shortcut = 'default';
925 $url = $this->interwiki[$shortcut];
928 $shortcut = '';
Dxhtml.php1281 [$shortcut, $reference] = sexplode('>', $src, 2, '');
1283 $src = $this->_resolveInterWiki($shortcut, $reference, $exists);
/dokuwiki/inc/
Dcommon.php1702 $shortcut = 'user';
1704 … $data['link']['url'] = $xhtml_renderer->_resolveInterWiki($shortcut, $username, $exists);