Searched refs:pageIndex (Results 1 – 5 of 5) sorted by relevance
| /dokuwiki/inc/Search/Collection/ |
| H A D | PageFulltextCollection.php | 19 public function __construct(?AbstractIndex $pageIndex = null) argument 21 parent::__construct($pageIndex ?? 'page', 'w', 'i', 'pageword', true);
|
| H A D | PageTitleCollection.php | 19 public function __construct(?AbstractIndex $pageIndex = null) argument 21 parent::__construct($pageIndex ?? 'page', 'title');
|
| H A D | PageMetaCollection.php | 25 public function __construct(string $subject, ?AbstractIndex $pageIndex = null) argument 29 $pageIndex ?? 'page',
|
| /dokuwiki/inc/Search/ |
| H A D | Indexer.php | 97 $pageIndex = new MemoryIndex('page'); 99 iterator_to_array($pageIndex), 146 $pageIndex = new FileIndex('page', '', true); 162 'pid' => $pageIndex->accessCachedValue($page), 174 (new PageTitleCollection($pageIndex))->lock() 181 … (new PageFulltextCollection($pageIndex))->lock()->addEntity($data['page'], $words)->unlock(); 185 … (new PageFulltextCollection($pageIndex))->lock()->addEntity($data['page'], [])->unlock(); 194 … (new PageMetaCollection($key, $pageIndex))->lock()->addEntity($data['page'], $values)->unlock(); 227 $pageIndex = new FileIndex('page', '', true); 229 (new PageTitleCollection($pageIndex))->lock()->addEntity($page, [])->unlock(); [all …]
|
| /dokuwiki/_test/tests/Search/ |
| H A D | IndexerTest.php | 25 $pageIndex = new FileIndex('page'); 26 $result = $pageIndex->search('/^testpage$/'); 42 $pageIndex = new FileIndex('page'); 43 $result = $pageIndex->search('/^delpage$/'); 60 $pageIndex = new FileIndex('page'); 61 …$this->assertNotEmpty($pageIndex->search('/^new_name$/'), 'new_name not found in page.idx after re… 62 …$this->assertEmpty($pageIndex->search('/^old_name$/'), 'old_name should be gone from page.idx afte…
|