31 lines
977 B
PHP
31 lines
977 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Permissions\Hook;
|
|
|
|
use MediaWiki\Title\Title;
|
|
use MediaWiki\User\User;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md.
|
|
* Use the hook name "UserIsBlockedFrom" to register handlers implementing this interface.
|
|
*
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface UserIsBlockedFromHook {
|
|
/**
|
|
* Use this hook to check if a user is blocked from a specific page (for
|
|
* specific block exemptions if a user is already blocked).
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param User $user User in question
|
|
* @param Title $title Title of the page in question
|
|
* @param bool &$blocked Out-param, whether or not the user is blocked from that page
|
|
* @param bool &$allowUsertalk If the user is blocked, whether or not the block allows users
|
|
* to edit their own user talk pages
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onUserIsBlockedFrom( $user, $title, &$blocked, &$allowUsertalk );
|
|
}
|