MediaWiki REL1_33
McrRestoreAction.php
Go to the documentation of this file.
1<?php
19
20 public function getName() {
21 return 'mcrrestore';
22 }
23
24 public function getDescription() {
25 return '';
26 }
27
28 protected function initFromParameters() {
29 $curRev = $this->page->getRevision();
30 if ( !$curRev ) {
31 throw new ErrorPageError( 'mcrundofailed', 'nopagetext' );
32 }
33 $this->curRev = $curRev->getRevisionRecord();
34 $this->cur = $this->getRequest()->getInt( 'cur', $this->curRev->getId() );
35
36 $this->undo = $this->cur;
37 $this->undoafter = $this->getRequest()->getInt( 'restore' );
38
39 if ( $this->undo == 0 || $this->undoafter == 0 ) {
40 throw new ErrorPageError( 'mcrundofailed', 'mcrundo-missingparam' );
41 }
42 }
43
44 protected function addStatePropagationFields( HTMLForm $form ) {
45 $form->addHiddenField( 'restore', $this->undoafter );
46 $form->addHiddenField( 'cur', $this->curRev->getId() );
47 }
48
49 protected function alterForm( HTMLForm $form ) {
50 parent::alterForm( $form );
51
52 $form->setWrapperLegendMsg( 'confirm-mcrrestore-title' );
53 }
54
55}
target page
getRequest()
Get the WebRequest being used for this instance.
Definition Action.php:198
An error page which can definitely be safely rendered using the OutputPage.
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition HTMLForm.php:133
setWrapperLegendMsg( $msg)
Prompt the whole form to be wrapped in a "<fieldset>", with this message as its "<legend>" element.
addHiddenField( $name, $value, array $attribs=[])
Add a hidden field to the output.
Definition HTMLForm.php:909
Temporary action for restoring multi-content revisions.
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
getName()
Return the name of the action this object responds to.
addStatePropagationFields(HTMLForm $form)
getDescription()
Returns the description that goes below the <h1> tag.
Temporary action for MCR undos.
RevisionRecord null $curRev
presenting them properly to the user as errors is done by the caller return true use this to change the list i e undo
Definition hooks.txt:1776
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
Definition injection.txt:37