Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / mail / Hook / UpdateUserMailerFormattedPageStatusHook.php
bloba4e5b9ee7907bcace181f3719fdc74722e1d7e96
1 <?php
3 namespace MediaWiki\Hook;
5 /**
6 * This is a hook handler interface, see docs/Hooks.md.
7 * Use the hook name "UpdateUserMailerFormattedPageStatus" to register handlers implementing this interface.
9 * @stable to implement
10 * @ingroup Hooks
12 interface UpdateUserMailerFormattedPageStatusHook {
13 /**
14 * This hook is called before a notification email gets sent.
16 * @since 1.35
18 * @param string[] &$formattedPageStatus List of valid page states
19 * @return bool|void True or no return value to continue or false to abort
21 public function onUpdateUserMailerFormattedPageStatus( &$formattedPageStatus );