Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F33904
BlockUserFactory.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
BlockUserFactory.php
View Options
<?php
/**
* @license GPL-2.0-or-later
* @file
*/
namespace
MediaWiki\Block
;
use
MediaWiki\Permissions\Authority
;
use
MediaWiki\User\UserIdentity
;
/**
* @since 1.36
*/
interface
BlockUserFactory
{
/**
* Create BlockUser
*
* @param BlockTarget|string|UserIdentity $target Target of the block
* @param Authority $performer Performer of the block
* @param string $expiry Expiry of the block (timestamp or 'infinity')
* @param string $reason Reason of the block
* @param array $blockOptions
* @param array $blockRestrictions
* @param array|null $tags Tags that should be assigned to the log entry
*
* @return BlockUser
*/
public
function
newBlockUser
(
$target
,
Authority
$performer
,
string
$expiry
,
string
$reason
=
''
,
array
$blockOptions
=
[],
array
$blockRestrictions
=
[],
$tags
=
[]
):
BlockUser
;
/**
* Create a BlockUser which updates a specified block
*
* @since 1.44
*
* @param DatabaseBlock $block The block to update
* @param Authority $performer Performer of the block
* @param string $expiry Expiry of the block (timestamp or 'infinity')
* @param string $reason Reason of the block
* @param array $blockOptions
* @param array $blockRestrictions
* @param array|null $tags Tags that should be assigned to the log entry
* @return BlockUser
*/
public
function
newUpdateBlock
(
DatabaseBlock
$block
,
Authority
$performer
,
string
$expiry
,
string
$reason
=
''
,
array
$blockOptions
=
[],
array
$blockRestrictions
=
[],
$tags
=
[]
):
BlockUser
;
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Dec 19, 09:08 (1 d, 11 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e8/e4/97ec1c856daedf209a941a72fcc4
Default Alt Text
BlockUserFactory.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment