Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1427003
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
Sat, May 16, 14:03 (1 d, 19 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
14/42/f98645a2f84c05573c69c6e8bf99
Default Alt Text
BlockUserFactory.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment