gplx/mediawiki/includes/search/Hook/SearchGetNearMatchBeforeHoo...

27 lines
761 B
PHP

<?php
namespace MediaWiki\Search\Hook;
use MediaWiki\Title\Title;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "SearchGetNearMatchBefore" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface SearchGetNearMatchBeforeHook {
/**
* Use this hook to perform exact-title-matches in "go" searches before
* the normal operations.
*
* @since 1.35
*
* @param string[] $allSearchTerms Array of the search terms in all content languages
* @param Title|null &$titleResult Outparam; the value to return
* @return bool|void True or no return value to continue or false to abort
*/
public function onSearchGetNearMatchBefore( $allSearchTerms, &$titleResult );
}