< Manual:Hooks
SpecialSearchResults
Available from version 1.13.0
called before search result display when there are matches
Define function:
public static function onSpecialSearchResults( $term, $titleMatches, $textMatches ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"SpecialSearchResults": "MyExtensionHooks::onSpecialSearchResults"
	}
}
Called from: File(s): specials/SpecialSearch.php
Interface: SpecialSearchResultsHook.php

For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:SpecialSearchResults extensions.

Details

  • $term: string of search term
  • $titleMatches: empty or SearchResultSet object
  • $textMatches: empty or SearchResultSet object

Old behaviour

Referenced SearchResultSet can be easily wrapped for any purpose (caching results, etc). Please keep in mind that old behavior used no reference for SearchResultSet objects.

See also

This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.