Home
last modified time | relevance | path

Searched refs:entityName (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/inc/Search/Collection/
H A DTerm.php159 * @param string $entityName
165 public function addMatch(string $entityName, string $tokenName, int $frequency): void argument
167 $this->matches[$entityName][$tokenName] =
168 ($this->matches[$entityName][$tokenName] ?? 0) + $frequency;
H A DCollectionSearch.php145 $entityName = $entityMap[$entityId] ?? '';
146 if ($entityName === '') continue;
147 $match['term']->addMatch($entityName, $match['token'], $freq);
/dokuwiki/inc/Search/
H A Dconcept.txt222 $term->getEntityFrequencies(); // [entityName => totalFrequency, ...]
223 $term->getEntityTokens(); // [entityName => [tokenName, ...], ...]
224 $term->getMatches(); // [entityName => [tokenName => freq, ...], ...]