summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/MixedNamespaceSearchSuggestions/MixedNamespaceSearchSuggestionsHooks.php
blob: 986fe981f1d18b372562be7e449ff481841b3b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * @author Niklas Laxström
 * @license MIT
 */

class MixedNamespaceSearchSuggestionsHooks {
	/**
	 * This is a hook function.
	 * @param OutputPage $out The OutputPage, which wasn't yet obvious to the linter.
	 */
	public static function onBeforePageDisplay( OutputPage $out ) {
		$out->addModules( 'ext.mnss.search' );
	}
}