ParsoidParser: Record ParserOptions watcher on ParserOutput object
[mediawiki.git] / includes / Hook / GetDoubleUnderscoreIDsHook.php
blob00ad3e61168fceac9f1e18768c7582de9c52bf8e
1 <?php
3 namespace MediaWiki\Hook;
5 /**
6 * This is a hook handler interface, see docs/Hooks.md.
7 * Use the hook name "GetDoubleUnderscoreIDs" to register handlers implementing this interface.
9 * @stable to implement
10 * @ingroup Hooks
12 interface GetDoubleUnderscoreIDsHook {
13 /**
14 * Use this hook to modify the list of behavior switches (double
15 * underscore variables in wikitext). Behavior switches are localized
16 * with the magic word system, and this hook is called by
17 * MagicWordFactory.
19 * @since 1.35
21 * @param string[] &$doubleUnderscoreIDs Array of magic word identifiers
22 * @return bool|void True or no return value to continue or false to abort
24 public function onGetDoubleUnderscoreIDs( &$doubleUnderscoreIDs );