MediaWiki
1.34.0
|
BaseSearchResultSet is the base class that must be extended by SearchEngine search result set implementations. More...
Public Member Functions | |
free () | |
Frees the result set, if applicable. More... | |
next () | |
Fetches next search result, or false. More... | |
rewind () | |
Rewind result set back to beginning. More... | |
termMatches () | |
Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract. More... | |
Public Member Functions inherited from ISearchResultSet | |
augmentResult (SearchResult $result) | |
Returns extra data for specific result and store it in SearchResult object. More... | |
extractResults () | |
Extract all the results in the result set as array. More... | |
extractTitles () | |
Extract all the titles in the result set. More... | |
getInterwikiResults ( $type=self::SECONDARY_RESULTS) | |
Return a result set of hits on other (multiple) wikis associated with this one. More... | |
getOffset () | |
getQueryAfterRewrite () | |
getQueryAfterRewriteSnippet () | |
getSuggestionQuery () | |
getSuggestionSnippet () | |
getTotalHits () | |
Some search modes return a total hit count for the query in the entire article database. More... | |
hasInterwikiResults ( $type=self::SECONDARY_RESULTS) | |
Check if there are results on other wikis. More... | |
hasMoreResults () | |
hasRewrittenQuery () | |
Some search modes will run an alternative query that it thinks gives a better result than the provided search. More... | |
hasSuggestion () | |
Some search modes return a suggested alternate term if there are no exact hits. More... | |
numRows () | |
searchContainedSyntax () | |
Did the search contain search syntax? If so, Special:Search won't offer the user a link to a create a page named by the search string because the name would contain the search syntax. More... | |
setAugmentedData ( $name, $data) | |
Sets augmented data for result set. More... | |
shrink ( $limit) | |
Private Member Functions | |
bcIterator () | |
Private Attributes | |
ArrayIterator null | $bcIterator |
Iterator supporting BC iteration methods. More... | |
Additional Inherited Members | |
Public Attributes inherited from ISearchResultSet | |
const | INLINE_RESULTS = 1 |
Identifier for interwiki results that can be displayed even if no existing main wiki results exist. More... | |
const | SECONDARY_RESULTS = 0 |
Identifier for interwiki results that are displayed only together with existing main wiki results. More... | |
BaseSearchResultSet is the base class that must be extended by SearchEngine search result set implementations.
This base class is meant to hold B/C behaviors and to be useful it must never:
Definition at line 14 of file BaseSearchResultSet.php.
|
private |
Definition at line 43 of file BaseSearchResultSet.php.
References $bcIterator, getIterator(), and wfDeprecated().
BaseSearchResultSet::free | ( | ) |
Frees the result set, if applicable.
Definition at line 74 of file BaseSearchResultSet.php.
BaseSearchResultSet::next | ( | ) |
Fetches next search result, or false.
Definition at line 26 of file BaseSearchResultSet.php.
References bcIterator(), and wfDeprecated().
Referenced by SearchResultSet\extractResults().
BaseSearchResultSet::rewind | ( | ) |
Rewind result set back to beginning.
Definition at line 38 of file BaseSearchResultSet.php.
References bcIterator(), and wfDeprecated().
Referenced by SearchResultSet\extractResults().
BaseSearchResultSet::termMatches | ( | ) |
Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract.
STUB
Reimplemented in SqlSearchResultSet.
Definition at line 66 of file BaseSearchResultSet.php.
|
private |
Iterator supporting BC iteration methods.
Definition at line 19 of file BaseSearchResultSet.php.
Referenced by bcIterator().