MediaWiki  REL1_23
SpecialBlock Class Reference

A special page that allows users with 'block' right to block users from editing pages and other actions. More...

Inheritance diagram for SpecialBlock:
Collaboration diagram for SpecialBlock:

List of all members.

Public Member Functions

 __construct ()
 onSubmit (array $data)
 Process the form on POST submission.
 onSuccess ()
 Do something exciting on successful processing of the form, most likely to show a confirmation message.

Static Public Member Functions

static canBlockEmail ($user)
 Can we do an email block?
static checkUnblockSelf ($user, User $performer)
 bug 15810: blocked admins should not be able to block/unblock others, and probably shouldn't be able to unblock themselves either.
static getSuggestedDurations ($lang=null)
 Get an array of suggested block durations from MediaWiki:Ipboptions.
static getTargetAndType ($par, WebRequest $request=null)
 Determine the target of the block, and the type of target TODO: should be in Block.php?
static parseExpiryInput ($expiry)
 Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute ("24 May 2034", etc), into an absolute timestamp we can put into the database.
static processForm (array $data, IContextSource $context)
 Given the form data, actually implement a block.
static processUIForm (array $data, HTMLForm $form)
 Submit callback for an HTMLForm object, will simply pass.
static validateTarget ($value, User $user)
 Validate a block target.
static validateTargetField ($value, $alldata, $form)
 HTMLForm field validation-callback for Target field.

Protected Member Functions

 alterForm (HTMLForm $form)
 Customizes the HTMLForm a bit.
 checkExecutePermissions (User $user)
 Checks that the user can unblock themselves if they are trying to do so.
 getFormFields ()
 Get the HTMLForm descriptor array for the block form.
 getGroupName ()
 Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-group-*' for valid names This method defaults to group 'other'.
 maybeAlterFormDefaults (&$fields)
 If the user has already been blocked with similar settings, load that block and change the defaults for the form fields to match the existing settings.
 postText ()
 Add footer elements to the form.
 preText ()
 Add header elements like block log entries, etc.
 setParameter ($par)
 Handle some magic here.

Static Protected Member Functions

static blockLogFlags (array $data, $type)
 Return a comma-delimited list of "flags" to be passed to the log reader for this block, to provide more information in the logs.
static getTargetUserTitle ($target)
 Get a user page target for things like logs.

Protected Attributes

Bool $alreadyBlocked
 *
Array $preErrors = array()
 *
User String $previousTarget
 the previous block target *
Bool $requestedHideUser
 whether the previous submission of the form asked for HideUser *
 $target
Integer $type
 Block::TYPE_ constant *.

Detailed Description

A special page that allows users with 'block' right to block users from editing pages and other actions.

Definition at line 30 of file SpecialBlock.php.


Constructor & Destructor Documentation

Definition at line 45 of file SpecialBlock.php.


Member Function Documentation

SpecialBlock::alterForm ( HTMLForm form) [protected]

Customizes the HTMLForm a bit.

Parameters:
$formHTMLForm

Reimplemented from FormSpecialPage.

Definition at line 91 of file SpecialBlock.php.

static SpecialBlock::blockLogFlags ( array data,
type 
) [static, protected]

Return a comma-delimited list of "flags" to be passed to the log reader for this block, to provide more information in the logs.

Parameters:
array$datafrom HTMLForm data
$typeBlock::TYPE_ constant (USER, RANGE, or IP)
Returns:
string

Definition at line 903 of file SpecialBlock.php.

static SpecialBlock::canBlockEmail ( user) [static]

Can we do an email block?

Parameters:
$userUser: the sysop wanting to make a block
Returns:
Boolean

Definition at line 855 of file SpecialBlock.php.

Referenced by ApiBlock\execute().

Checks that the user can unblock themselves if they are trying to do so.

Parameters:
User$user
Exceptions:
ErrorPageError

Reimplemented from FormSpecialPage.

Definition at line 55 of file SpecialBlock.php.

static SpecialBlock::checkUnblockSelf ( user,
User performer 
) [static]

bug 15810: blocked admins should not be able to block/unblock others, and probably shouldn't be able to unblock themselves either.

Parameters:
$userUser|Int|String
$performerUser user doing the request
Returns:
Bool|String true or error message key

Definition at line 869 of file SpecialBlock.php.

Referenced by ApiUnblock\execute(), ApiBlock\execute(), and SpecialUnblock\processUnblock().

SpecialBlock::getFormFields ( ) [protected]

Get the HTMLForm descriptor array for the block form.

Returns:
Array

Reimplemented from FormSpecialPage.

Definition at line 116 of file SpecialBlock.php.

References array(), getSuggestedDurations(), SpecialPage\getUser(), global, User\isAllowed(), User\isLoggedIn(), maybeAlterFormDefaults(), SpecialPage\msg(), text, and wfRunHooks().

SpecialBlock::getGroupName ( ) [protected]

Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-group-*' for valid names This method defaults to group 'other'.

Returns:
string
Since:
1.21

Reimplemented from SpecialPage.

Definition at line 963 of file SpecialBlock.php.

static SpecialBlock::getSuggestedDurations ( lang = null) [static]

Get an array of suggested block durations from MediaWiki:Ipboptions.

Todo:
FIXME: This uses a rather odd syntax for the options, should it be converted to the standard "**<duration>|<displayname>" format?
Parameters:
$langLanguage|null the language to get the durations in, or null to use the wiki's content language
Returns:
Array

Definition at line 801 of file SpecialBlock.php.

Referenced by getFormFields().

static SpecialBlock::getTargetAndType ( par,
WebRequest request = null 
) [static]

Determine the target of the block, and the type of target TODO: should be in Block.php?

Parameters:
string$parsubpage parameter passed to setup, or data value from the HTMLForm
$requestWebRequest optionally try and get data from a request too
Returns:
array( User|string|null, Block::TYPE_ constant|null )

Definition at line 455 of file SpecialBlock.php.

Referenced by SpecialUnblock\execute(), ApiBlock\execute(), and SpecialUnblock\processUnblock().

static SpecialBlock::getTargetUserTitle ( target) [static, protected]

Get a user page target for things like logs.

This handles account and IP range targets.

Parameters:
$targetUser|string
Returns:
Title|null

Definition at line 437 of file SpecialBlock.php.

SpecialBlock::maybeAlterFormDefaults ( &$  fields) [protected]

If the user has already been blocked with similar settings, load that block and change the defaults for the form fields to match the existing settings.

Parameters:
array$fieldsHTMLForm descriptor array
Returns:
Bool whether fields were altered (that is, whether the target is already blocked)

Definition at line 228 of file SpecialBlock.php.

Referenced by getFormFields().

Process the form on POST submission.

Parameters:
$dataArray
Returns:
Bool|Array true for success, false for didn't-try, array of errors on failure

Reimplemented from FormSpecialPage.

Definition at line 948 of file SpecialBlock.php.

Do something exciting on successful processing of the form, most likely to show a confirmation message.

Reimplemented from FormSpecialPage.

Definition at line 957 of file SpecialBlock.php.

static SpecialBlock::parseExpiryInput ( expiry) [static]

Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute ("24 May 2034", etc), into an absolute timestamp we can put into the database.

Parameters:
string$expirywhatever was typed into the form
Returns:
String: timestamp or "infinity" string for the DB implementation

Definition at line 829 of file SpecialBlock.php.

Referenced by ApiQueryLogEvents\addLogParams().

SpecialBlock::postText ( ) [protected]

Add footer elements to the form.

Returns:
string

Reimplemented from FormSpecialPage.

Definition at line 345 of file SpecialBlock.php.

References $out, array(), SpecialPage\getTitleFor(), User\isAllowed(), Linker\link(), Linker\linkKnown(), Title\makeTitle(), Html\rawElement(), LogEventsList\showLogExtract(), and wfEscapeWikiText().

SpecialBlock::preText ( ) [protected]

Add header elements like block log entries, etc.

Returns:
String

Reimplemented from FormSpecialPage.

Definition at line 305 of file SpecialBlock.php.

References $link, $s, array(), as, Html\rawElement(), and wfRunHooks().

static SpecialBlock::processForm ( array data,
IContextSource context 
) [static]

Given the form data, actually implement a block.

Parameters:
$dataArray
$contextIContextSource
Returns:
Bool|String

Definition at line 595 of file SpecialBlock.php.

Referenced by ApiBlock\execute().

static SpecialBlock::processUIForm ( array data,
HTMLForm form 
) [static]

Submit callback for an HTMLForm object, will simply pass.

Parameters:
$dataarray
$formHTMLForm
Returns:
Bool|String

Definition at line 585 of file SpecialBlock.php.

SpecialBlock::setParameter ( par) [protected]

Handle some magic here.

Parameters:
$parString

Reimplemented from FormSpecialPage.

Definition at line 70 of file SpecialBlock.php.

static SpecialBlock::validateTarget ( value,
User user 
) [static]

Validate a block target.

Since:
1.21
Parameters:
string$valueBlock target to check
User$userPerformer of the block
Returns:
Status

Definition at line 525 of file SpecialBlock.php.

static SpecialBlock::validateTargetField ( value,
alldata,
form 
) [static]

HTMLForm field validation-callback for Target field.

Since:
1.18
Parameters:
$valueString
$alldataArray
$formHTMLForm
Returns:
Message

Definition at line 506 of file SpecialBlock.php.


Member Data Documentation

Bool SpecialBlock::$alreadyBlocked [protected]

*

Definition at line 41 of file SpecialBlock.php.

Array SpecialBlock::$preErrors = array() [protected]

*

Definition at line 43 of file SpecialBlock.php.

User String SpecialBlock::$previousTarget [protected]

the previous block target *

Definition at line 37 of file SpecialBlock.php.

Bool SpecialBlock::$requestedHideUser [protected]

whether the previous submission of the form asked for HideUser *

Definition at line 39 of file SpecialBlock.php.

SpecialBlock::$target [protected]

Definition at line 33 of file SpecialBlock.php.

Integer SpecialBlock::$type [protected]

Block::TYPE_ constant *.

Definition at line 35 of file SpecialBlock.php.


The documentation for this class was generated from the following file: