Home
last modified time | relevance | path

Searched +full:stopwords -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/inc/
H A Dindexer.php99 static $stopwords = null;
100 if (is_null($stopwords)) {
102 $swfile = DOKU_INC . 'inc/lang/' . $conf['lang'] . '/stopwords.txt';
104 $stopwords = file($swfile, FILE_IGNORE_NEW_LINES);
106 $stopwords = [];
109 return $stopwords;
H A Dconfutils.php12 * (scheme.conf & stopwords.conf), e.g.
/dokuwiki/inc/Search/
H A DIndexer.php492 * TODO: does this also need &$stopwords ?
508 $stopwords =& idx_get_stopwords();
536 || in_array($word, $stopwords, true)