Searched refs:pageIndex (Results 1 – 6 of 6) 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/_test/tests/Search/ |
| H A D | IndexerTest.php | 24 $pageIndex = new FileIndex('page'); 25 $result = $pageIndex->search('/^testpage$/'); 41 $pageIndex = new FileIndex('page'); 42 $result = $pageIndex->search('/^delpage$/'); 63 $pageIndex = new FileIndex('page'); 64 $result = $pageIndex->search('/^new_name$/');
|
| /dokuwiki/inc/Search/ |
| H A D | Indexer.php | 100 $pageIndex = new MemoryIndex('page'); 102 iterator_to_array($pageIndex), 145 $pageIndex = new FileIndex('page', '', true); 161 'pid' => $pageIndex->accessCachedValue($page), 173 (new PageTitleCollection($pageIndex))->lock() 180 … (new PageFulltextCollection($pageIndex))->lock()->addEntity($data['page'], $words)->unlock(); 184 … (new PageFulltextCollection($pageIndex))->lock()->addEntity($data['page'], [])->unlock(); 193 … (new PageMetaCollection($key, $pageIndex))->lock()->addEntity($data['page'], $values)->unlock(); 224 $pageIndex = new FileIndex('page', '', true); 226 (new PageTitleCollection($pageIndex))->lock()->addEntity($page, [])->unlock(); [all …]
|
| H A D | concept.txt | 174 $collection = new PageFulltextCollection($pageIndex);
|