Page MenuHomeWickedGov Phorge

ArticleProtectHook.php
No OneTemporary

Size
747 B
Referenced Files
None
Subscribers
None

ArticleProtectHook.php

<?php
namespace MediaWiki\Page\Hook;
use MediaWiki\User\User;
use WikiPage;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "ArticleProtect" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface ArticleProtectHook {
/**
* This hook is called before an article is protected.
*
* @since 1.35
*
* @param WikiPage $wikiPage WikiPage being protected
* @param User $user User doing the protection
* @param array $protect Set of restriction keys
* @param string $reason Reason for protect
* @return bool|void True or no return value to continue or false to abort
*/
public function onArticleProtect( $wikiPage, $user, $protect, $reason );
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 19:39 (2 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8b/bd/50bf0145faae8a217b65a6a8c2be
Default Alt Text
ArticleProtectHook.php (747 B)

Event Timeline