MediaWiki REL1_33
|
Handles the page protection UI and backend. More...
Public Member Functions | |
__construct (Article $article) | |
buildForm () | |
Build the input form. | |
buildSelector ( $action, $selected) | |
Build protection level selector. | |
execute () | |
Main entry point for action=protect and action=unprotect. | |
getExpiry ( $action) | |
Get the expiry time for a given action, by combining the relevant inputs. | |
loadData () | |
Loads the current state of protection into the object. | |
save () | |
Save submitted protection form. | |
show ( $err=null) | |
Show the input form with optional error message. | |
Protected Attributes | |
array | $mApplicableTypes = [] |
Types (i.e. | |
bool | $mCascade = false |
True if the restrictions are cascading, from request or existing protection. | |
array | $mExistingExpiry = [] |
Map of action to the expiry time of the existing protection. | |
array | $mExpiry = [] |
Map of action to "other" expiry time. | |
array | $mExpirySelection = [] |
Map of action to value selected in expiry drop-down list. | |
array | $mPermErrors = [] |
Permissions errors for the protect action. | |
string | $mReason = '' |
The custom/additional protection reason. | |
string | $mReasonSelection = '' |
The reason selected from the list, blank for other/additional. | |
array | $mRestrictions = [] |
A map of action to restriction level, from request or default. | |
Private Member Functions | |
getOptionLabel ( $permission) | |
Prepare the label for a protection selector option. | |
showLogExtract (OutputPage $out) | |
Show protection long extracts for this page. | |
Private Attributes | |
IContextSource | $mContext |
Handles the page protection UI and backend.
Definition at line 30 of file ProtectionForm.php.
ProtectionForm::__construct | ( | Article | $article | ) |
Definition at line 64 of file ProtectionForm.php.
References $article, ContextSource\getContext(), ContextSource\getTitle(), loadData(), wfReadOnly(), and wfReadOnlyReason().
ProtectionForm::buildForm | ( | ) |
Build the input form.
Definition at line 351 of file ProtectionForm.php.
References $attribs, $context, $lang, $link, $linkRenderer, $mContext, $out, $output, $t, $user, $value, as, buildSelector(), MediaWiki\getTitle(), list, text, and wfMessage().
Referenced by show().
ProtectionForm::buildSelector | ( | $action, | |
$selected | |||
) |
Build protection level selector.
string | $action | Action to protect |
string | $selected | Current protection level |
Definition at line 581 of file ProtectionForm.php.
References as, and getOptionLabel().
Referenced by buildForm().
ProtectionForm::execute | ( | ) |
Main entry point for action=protect and action=unprotect.
Definition at line 181 of file ProtectionForm.php.
ProtectionForm::getExpiry | ( | $action | ) |
Get the expiry time for a given action, by combining the relevant inputs.
string | $action |
Definition at line 154 of file ProtectionForm.php.
References $time, $value, wfIsInfinity(), and wfTimestamp().
Referenced by save().
|
private |
Prepare the label for a protection selector option.
string | $permission | Permission required |
Definition at line 609 of file ProtectionForm.php.
Referenced by buildSelector().
ProtectionForm::loadData | ( | ) |
Loads the current state of protection into the object.
Definition at line 92 of file ProtectionForm.php.
Referenced by __construct().
ProtectionForm::save | ( | ) |
Save submitted protection form.
Definition at line 269 of file ProtectionForm.php.
References $mReason, $mReasonSelection, $out, $request, $user, as, WatchAction\doWatchOrUnwatch(), getExpiry(), show(), and wfTimestampNow().
Referenced by execute().
ProtectionForm::show | ( | $err = null | ) |
Show the input form with optional error message.
string | null | $err | Error message or null if there's no error |
Definition at line 201 of file ProtectionForm.php.
References $out, $title, $titles, as, buildForm(), list, showLogExtract(), and wfEscapeWikiText().
|
private |
Show protection long extracts for this page.
OutputPage | $out |
Definition at line 627 of file ProtectionForm.php.
References $out, and LogEventsList\showLogExtract().
Referenced by show().
|
protected |
Types (i.e.
actions) for which levels can be selected
Definition at line 56 of file ProtectionForm.php.
|
protected |
True if the restrictions are cascading, from request or existing protection.
Definition at line 41 of file ProtectionForm.php.
|
private |
Definition at line 62 of file ProtectionForm.php.
Referenced by buildForm().
|
protected |
Map of action to the expiry time of the existing protection.
Definition at line 59 of file ProtectionForm.php.
|
protected |
Map of action to "other" expiry time.
Used in preference to mExpirySelection.
Definition at line 44 of file ProtectionForm.php.
|
protected |
Map of action to value selected in expiry drop-down list.
Will be set to 'othertime' whenever mExpiry is set.
Definition at line 50 of file ProtectionForm.php.
|
protected |
Permissions errors for the protect action.
Definition at line 53 of file ProtectionForm.php.
|
protected |
The custom/additional protection reason.
Definition at line 35 of file ProtectionForm.php.
Referenced by save().
|
protected |
The reason selected from the list, blank for other/additional.
Definition at line 38 of file ProtectionForm.php.
Referenced by save().
|
protected |
A map of action to restriction level, from request or default.
Definition at line 32 of file ProtectionForm.php.