Lines Matching refs:page
69 public function addPage(string $page, bool $force = false): bool|string argument
73 $this->indexer->addPage($page, $force);
85 public function deletePage(string $page, bool $force = false): bool|string argument
89 $this->indexer->deletePage($page, $force);
147 * @param string $page page name
154 public function addMetaKeys($page, $key, $value = null) argument
164 $collection->lock()->addEntity($page, $values)->unlock();
244 * @param string $page page name
249 public function getPID($page) argument
253 return (new FileIndex('page', '', true))->accessCachedValue($page);
286 …$filtered = array_filter($freqs, fn($page) => page_exists($page, '', false), ARRAY_FILTER_USE_KEY);