Manual:Hooks/SpecialWatchlistGetNonRevisionTypes
SpecialWatchlistGetNonRevisionTypes | |
---|---|
Available from version 1.22.0 Allows extensions to register the value they have inserted to rc_type field of recentchanges for non-revision changes so they can be included in the watchlist. | |
Define function: | public static function onSpecialWatchlistGetNonRevisionTypes( array &$nonRevisionTypes ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"SpecialWatchlistGetNonRevisionTypes": "MediaWiki\\Extension\\MyExtension\\Hooks::onSpecialWatchlistGetNonRevisionTypes"
}
}
|
Called from: | File(s): specialpage/ChangesListSpecialPage.phpCategory:MediaWiki hooks included in ChangesListSpecialPage.php#SpecialWatchlistGetNonRevisionTypes, specials/SpecialWatchlist.phpCategory:MediaWiki hooks included in SpecialWatchlist.php#SpecialWatchlistGetNonRevisionTypes |
Interface: | SpecialWatchlistGetNonRevisionTypesHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:SpecialWatchlistGetNonRevisionTypes extensions.
Details
- &$nonRevisionTypes: array of integers matching the rc_type field of the recentchanges table.