Home
last modified time | relevance | path

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

/dokuwiki/_test/tests/inc/
H A Dindexer_indexing.test.php35 $this->assertEquals(array('testpage'), $indexer->lookupKey('testkey', $query));
43 …$this->assertEquals(array('001' => array(), '01' => array('testpage')), $indexer->lookupKey('numke…
60 $this->assertEquals(array('notfound', 'testpage'), $indexer->lookupKey('onezero', $query));
70 $result = $indexer->lookupKey('zerostring', $query);
75 $result = $indexer->lookupKey('zerostring', $query);
H A Dindexer_rename.test.php58 …$this->assertEquals(array(), $this->indexer->lookupKey('mkey', $query), 'Page can still be found u…
60 …$this->assertEquals(array($this->old_id), $this->indexer->lookupKey('mkey', $query), 'Page can\'t …
76 …$this->assertEquals(array(), $this->indexer->lookupKey('mkey', $query), 'Page can still be found u…
78 $result = $this->indexer->lookupKey('mkey', $query);
/dokuwiki/inc/
H A Dfulltext.php188 $result = idx_get_indexer()->lookupKey('relation_references', $id);
222 $result = idx_get_indexer()->lookupKey('relation_media', $id);
313 foreach ($Indexer->lookupKey('title', $id, '_ft_pageLookupTitleCompare') as $p_id) {
/dokuwiki/inc/Search/
H A DIndexer.php669 public function lookupKey($key, &$value, $func = null) function in dokuwiki\\Search\\Indexer