66 $this->mTitle =
$article->getTitle();
67 $this->mApplicableTypes = $this->mTitle->getRestrictionTypes();
68 $this->mContext =
$article->getContext();
72 $this->mPermErrors = $this->mTitle->getUserPermissionsErrors(
74 $this->mContext->getUser(),
75 $this->mContext->getRequest()->wasPosted() ?
'secure' :
'full'
80 $this->disabled = $this->mPermErrors != [];
81 $this->disabledAttrib = $this->disabled
82 ? [
'disabled' =>
'disabled' ]
92 $levels = MWNamespace::getRestrictionLevels(
93 $this->mTitle->getNamespace(), $this->mContext->getUser()
95 $this->mCascade = $this->mTitle->areRestrictionsCascading();
98 $this->mReason =
$request->getText(
'mwProtect-reason' );
99 $this->mReasonSelection =
$request->getText(
'wpProtectReasonSelection' );
100 $this->mCascade =
$request->getBool(
'mwProtect-cascade', $this->mCascade );
102 foreach ( $this->mApplicableTypes
as $action ) {
107 $this->mRestrictions[$action] = implode(
'', $this->mTitle->getRestrictions( $action ) );
109 if ( !$this->mRestrictions[$action] ) {
111 $existingExpiry =
'';
113 $existingExpiry = $this->mTitle->getRestrictionExpiry( $action );
115 $this->mExistingExpiry[$action] = $existingExpiry;
117 $requestExpiry =
$request->getText(
"mwProtect-expiry-$action" );
118 $requestExpirySelection =
$request->getVal(
"wpProtectExpirySelection-$action" );
120 if ( $requestExpiry ) {
122 $this->mExpiry[$action] = $requestExpiry;
123 $this->mExpirySelection[$action] =
'othertime';
124 } elseif ( $requestExpirySelection ) {
126 $this->mExpiry[$action] =
'';
127 $this->mExpirySelection[$action] = $requestExpirySelection;
128 } elseif ( $existingExpiry ) {
130 $this->mExpiry[$action] =
'';
131 $this->mExpirySelection[$action] = $existingExpiry;
135 $this->mExpiry[$action] =
'';
136 $this->mExpirySelection[$action] =
'infinite';
139 $val =
$request->getVal(
"mwProtect-level-$action" );
140 if ( isset( $val ) && in_array( $val, $levels ) ) {
141 $this->mRestrictions[$action] = $val;
154 if ( $this->mExpirySelection[$action] ==
'existing' ) {
155 return $this->mExistingExpiry[$action];
156 } elseif ( $this->mExpirySelection[$action] ==
'othertime' ) {
157 $value = $this->mExpiry[$action];
159 $value = $this->mExpirySelection[$action];
164 $unix = strtotime(
$value );
166 if ( !$unix || $unix === -1 ) {
181 if ( MWNamespace::getRestrictionLevels( $this->mTitle->getNamespace() ) === [
'' ] ) {
182 throw new ErrorPageError(
'protect-badnamespace-title',
'protect-badnamespace-text' );
185 if ( $this->mContext->getRequest()->wasPosted() ) {
186 if ( $this->
save() ) {
187 $q = $this->mArticle->isRedirect() ?
'redirect=no' :
'';
188 $this->mContext->getOutput()->redirect( $this->mTitle->getFullURL( $q ) );
201 $out = $this->mContext->getOutput();
202 $out->setRobotPolicy(
'noindex,nofollow' );
203 $out->addBacklinkSubtitle( $this->mTitle );
205 if ( is_array( $err ) ) {
206 $out->wrapWikiMsg(
"<p class='error'>\n$1\n</p>\n", $err );
207 } elseif ( is_string( $err ) ) {
208 $out->addHTML(
"<p class='error'>{$err}</p>\n" );
211 if ( $this->mTitle->getRestrictionTypes() === [] ) {
214 $out->setPageTitle( $this->mContext->msg(
215 'protect-norestrictiontypes-title',
216 $this->mTitle->getPrefixedText()
218 $out->addWikiText( $this->mContext->msg(
'protect-norestrictiontypes-text' )->plain() );
226 list( $cascadeSources, ) = $this->mTitle->getCascadeProtectionSources();
227 if ( $cascadeSources && count( $cascadeSources ) > 0 ) {
230 foreach ( $cascadeSources
as $title ) {
236 "<div id=\"mw-protect-cascadeon\">\n$1\n" .
$titles .
"</div>",
237 [
'protect-cascadeon', count( $cascadeSources ) ]
241 # Show an appropriate message if the user isn't allowed or able to change
242 # the protection settings at this time
243 if ( $this->disabled ) {
245 $this->mContext->msg(
'protect-title-notallowed',
246 $this->mTitle->getPrefixedText() )
248 $out->addWikiText(
$out->formatPermissionsErrorMessage( $this->mPermErrors,
'protect' ) );
250 $out->setPageTitle( $this->mContext->msg(
'protect-title', $this->mTitle->getPrefixedText() ) );
251 $out->addWikiMsg(
'protect-text',
266 if ( $this->disabled ) {
272 $user = $this->mContext->getUser();
273 $out = $this->mContext->getOutput();
274 $token =
$request->getVal(
'wpEditToken' );
275 if ( !
$user->matchEditToken( $token, [
'protect', $this->mTitle->getPrefixedDBkey() ] ) ) {
276 $this->
show( [
'sessionfailure' ] );
280 # Create reason string. Use list and/or custom string.
282 if ( $reasonstr !=
'other' && $this->mReason !=
'' ) {
284 $reasonstr .= $this->mContext->msg(
'colon-separator' )->text() .
$this->mReason;
285 } elseif ( $reasonstr ==
'other' ) {
289 foreach ( $this->mApplicableTypes
as $action ) {
290 $expiry[$action] = $this->
getExpiry( $action );
291 if ( empty( $this->mRestrictions[$action] ) ) {
294 if ( !$expiry[$action] ) {
295 $this->
show( [
'protect_expiry_invalid' ] );
299 $this->
show( [
'protect_expiry_old' ] );
304 $this->mCascade =
$request->getBool(
'mwProtect-cascade' );
306 $status = $this->mArticle->doUpdateRestrictions(
307 $this->mRestrictions,
326 if ( !Hooks::run(
'ProtectionForm::save', [ $this->mArticle, &$errorMsg, $reasonstr ] ) ) {
327 if ( $errorMsg ==
'' ) {
328 $errorMsg = [
'hookaborted' ];
331 if ( $errorMsg !=
'' ) {
332 $this->
show( $errorMsg );
351 $cascadingRestrictionLevels =
$context->getConfig()->get(
'CascadingRestrictionLevels' );
353 if ( !$this->disabled ) {
357 'action' => $this->mTitle->getLocalURL(
'action=protect' ),
358 'id' =>
'mw-Protect-Form' ] );
366 $scExpiryOptions =
wfMessage(
'protect-expiry-options' )->inContentLanguage()->text();
367 $showProtectOptions = $scExpiryOptions !==
'-' && !$this->disabled;
370 foreach ( $this->mRestrictions
as $action => $selected ) {
373 $msg =
$context->msg(
'restriction-' . $action );
376 Xml::element(
'legend',
null, $msg->exists() ? $msg->text() : $action ) .
378 "<tr><td>" . $this->
buildSelector( $action, $selected ) .
"</td></tr><tr><td>";
381 $context->msg(
'protectexpiry' )->text(),
382 "mwProtectExpirySelection-$action"
385 $context->msg(
'protect-othertime' )->text(),
386 "mwProtect-$action-expires"
390 "wpProtectExpirySelection-$action",
391 "mwProtectExpirySelection-$action",
392 $this->mExpirySelection[$action]
394 $expiryFormOptions->setAttribute(
'tabindex',
'2' );
395 if ( $this->disabled ) {
396 $expiryFormOptions->setAttribute(
'disabled',
'disabled' );
399 if ( $this->mExistingExpiry[$action] ) {
400 if ( $this->mExistingExpiry[$action] ==
'infinity' ) {
401 $existingExpiryMessage =
$context->msg(
'protect-existing-expiry-infinity' );
404 $d =
$lang->userDate( $this->mExistingExpiry[$action],
$user );
405 $t =
$lang->userTime( $this->mExistingExpiry[$action],
$user );
406 $existingExpiryMessage =
$context->msg(
407 'protect-existing-expiry',
413 $expiryFormOptions->addOption( $existingExpiryMessage->text(),
'existing' );
416 $expiryFormOptions->addOption(
417 $context->msg(
'protect-othertime-op' )->text(),
420 foreach ( explode(
',', $scExpiryOptions )
as $option ) {
421 if ( strpos( $option,
":" ) ===
false ) {
424 list( $show,
$value ) = explode(
":", $option );
426 $expiryFormOptions->addOption( $show, htmlspecialchars(
$value ) );
428 # Add expiry dropdown
429 if ( $showProtectOptions && !$this->disabled ) {
432 <td class='mw-label'>
435 <td class='mw-input'>" .
436 $expiryFormOptions->getHTML() .
440 # Add custom expiry field
441 $attribs = [
'id' =>
"mwProtect-$action-expires" ] + $this->disabledAttrib;
443 <td class='mw-label'>" .
446 <td class="mw-input">' .
450 $out .=
"</td></tr>" .
455 # Give extensions a chance to add items to the form
456 Hooks::run(
'ProtectionForm::buildForm', [ $this->mArticle, &
$out ] );
461 if ( $this->mTitle->exists() ) {
466 <td class="mw-input">' .
468 $context->msg(
'protect-cascade' )->text(),
471 $this->mCascade, $this->disabledAttrib
478 # Add manual and custom reason field/selects as well as submit
479 if ( !$this->disabled ) {
481 $context->msg(
'protectcomment' )->text(),
482 'wpProtectReasonSelection'
486 $context->msg(
'protect-otherreason' )->text(),
491 wfMessage(
'protect-dropdown' )->inContentLanguage()->
text(),
492 wfMessage(
'protect-otherreason-op' )->inContentLanguage()->
text(),
493 $this->mReasonSelection,
494 'mwProtect-reason', 4 );
500 <td class='mw-label'>
501 {$mProtectreasonother}
503 <td class='mw-input'>
508 <td class='mw-label'>
511 <td class='mw-input'>" .
512 Xml::input(
'mwProtect-reason', 60, $this->mReason, [
'type' =>
'text',
513 'id' =>
'mwProtect-reason',
'maxlength' => 180 ] ) .
519 # Disallow watching is user is not logged in
520 if (
$user->isLoggedIn() ) {
524 <td class='mw-input'>" .
526 'mwProtectWatch',
'mwProtectWatch',
527 $user->isWatched( $this->mTitle ) ||
$user->getOption(
'watchdefault' ) ) .
534 <td class='mw-submit'>" .
537 [
'id' =>
'mw-Protect-submit' ]
545 if (
$user->isAllowed(
'editinterface' ) ) {
547 $context->msg(
'protect-dropdown' )->inContentLanguage()->getTitle(),
548 $context->msg(
'protect-edit-reasonlist' )->escaped(),
550 [
'action' =>
'edit' ]
552 $out .=
'<p class="mw-protect-editreasons">' .
$link .
'</p>';
555 if ( !$this->disabled ) {
556 $out .= Html::hidden(
558 $user->getEditToken( [
'protect', $this->mTitle->getPrefixedDBkey() ] )
576 $levels = MWNamespace::getRestrictionLevels( $this->mTitle->getNamespace(),
577 $this->disabled ?
null : $this->mContext->getUser()
580 $id =
'mwProtect-level-' . $action;
582 $select =
new XmlSelect( $id, $id, $selected );
583 $select->setAttribute(
'size', count( $levels ) );
584 if ( $this->disabled ) {
585 $select->setAttribute(
'disabled',
'disabled' );
588 foreach ( $levels
as $key ) {
592 return $select->getHTML();
602 if ( $permission ==
'' ) {
603 return $this->mContext->msg(
'protect-default' )->text();
606 $msg = $this->mContext->msg(
"protect-level-{$permission}" );
607 if ( $msg->exists() ) {
610 return $this->mContext->msg(
'protect-fallback', $permission )->text();
621 # Show relevant lines from the protection log:
622 $protectLogPage =
new LogPage(
'protect' );
623 $out->addHTML(
Xml::element(
'h2',
null, $protectLogPage->getName()->text() ) );
625 # Let extensions add other relevant log extracts
626 Hooks::run(
'ProtectionForm::showLogExtract', [ $this->mArticle,
$out ] );
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfReadOnly()
Check whether the wiki is in read-only mode.
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
wfIsInfinity( $str)
Determine input string is represents as infinity.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Class for viewing MediaWiki article and history.
getRequest()
Get the WebRequest object.
An error page which can definitely be safely rendered using the OutputPage.
static linkKnown( $target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Class to simplify the use of log pages.
addJsConfigVars( $keys, $value=null)
Add one or more variables to be set in mw.config in JavaScript.
static doWatchOrUnwatch( $watch, Title $title, User $user)
Watch or unwatch a page.
Class for generating HTML <select> or <datalist> elements.
static closeElement( $element)
Shortcut to close an XML element.
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
static openElement( $element, $attribs=null)
This opens an XML element.
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
static checkLabel( $label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
static listDropDown( $name='', $list='', $other='', $selected='', $class='', $tabindex=null)
Build a drop-down box from a textual list.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
the array() calling protocol came about after MediaWiki 1.4rc1.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
see documentation in includes Linker php for Linker::makeImageLink & $time
namespace and then decline to actually register it file or subcat img or subcat $title
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
error also a ContextSource you ll probably need to make sure the header is varied on $request
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
usually copyright or history_copyright This message must be in HTML not wikitext & $link
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Interface for objects which can provide a MediaWiki context on request.
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
if(!isset( $args[0])) $lang
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)