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.php, specials/SpecialWatchlist.php
Interface: SpecialWatchlistGetNonRevisionTypesHook.php

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


Details edit

  • &$nonRevisionTypes: array of integers matching the rc_type field of the recentchanges table.

See also edit