xref: /dokuwiki/inc/Search/Collection/PageFulltextCollection.php (revision f2bbffb509f37291c31c023167b8aeb383079d6d)
1*f2bbffb5SAndreas Gohr<?php
2*f2bbffb5SAndreas Gohr
3*f2bbffb5SAndreas Gohrnamespace dokuwiki\Search\Collection;
4*f2bbffb5SAndreas Gohr
5*f2bbffb5SAndreas Gohr/**
6*f2bbffb5SAndreas Gohr * Fulltext search collection for wiki pages
7*f2bbffb5SAndreas Gohr *
8*f2bbffb5SAndreas Gohr * Manages the indexes used for fulltext search of page contents.
9*f2bbffb5SAndreas Gohr *
10*f2bbffb5SAndreas Gohr * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
11*f2bbffb5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
12*f2bbffb5SAndreas Gohr * @author Tom N Harris <tnharris@whoopdedo.org>
13*f2bbffb5SAndreas Gohr */
14*f2bbffb5SAndreas Gohrclass PageFulltextCollection extends FrequencyCollection
15*f2bbffb5SAndreas Gohr{
16*f2bbffb5SAndreas Gohr    /** @inheritdoc */
17*f2bbffb5SAndreas Gohr    public function __construct()
18*f2bbffb5SAndreas Gohr    {
19*f2bbffb5SAndreas Gohr        parent::__construct('page', 'w', 'i', 'pageword', true);
20*f2bbffb5SAndreas Gohr    }
21*f2bbffb5SAndreas Gohr}
22