Searched refs:shortcut (Results 1 – 4 of 4) sorted by relevance
/dokuwiki/_test/tests/inc/parser/ |
D | renderer_resolveinterwiki.test.php | 48 $shortcut = 'nonexisting'; 50 $url = $Renderer->_resolveInterWiki($shortcut, $reference); 53 $this->assertEquals('', $shortcut); 61 $shortcut = 'nonexisting'; 63 $url = $Renderer->_resolveInterWiki($shortcut, $reference);
|
/dokuwiki/inc/parser/ |
D | renderer.php | 913 * @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 = '';
|
D | xhtml.php | 1281 [$shortcut, $reference] = sexplode('>', $src, 2, ''); 1283 $src = $this->_resolveInterWiki($shortcut, $reference, $exists);
|
/dokuwiki/inc/ |
D | common.php | 1702 $shortcut = 'user'; 1704 … $data['link']['url'] = $xhtml_renderer->_resolveInterWiki($shortcut, $username, $exists);
|