Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4117351
McrRestoreAction.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
McrRestoreAction.php
View Options
<?php
/**
* Temporary action for restoring multi-content revisions
* @file
* @ingroup Actions
*/
use
MediaWiki\HTMLForm\HTMLForm
;
/**
* Temporary action for restoring multi-content revisions.
*
* This is intended to go away when real MCR support is added to EditPage and
* the standard revert-by-edit behavior can be implemented there instead.
*
* @ingroup Actions
* @since 1.32
*/
class
McrRestoreAction
extends
McrUndoAction
{
public
function
getName
()
{
return
'mcrrestore'
;
}
public
function
getDescription
()
{
return
''
;
}
protected
function
initFromParameters
()
{
$curRev
=
$this
->
getWikiPage
()->
getRevisionRecord
();
if
(
!
$curRev
)
{
throw
new
ErrorPageError
(
'mcrundofailed'
,
'nopagetext'
);
}
$this
->
curRev
=
$curRev
;
$this
->
cur
=
$this
->
getRequest
()->
getInt
(
'cur'
,
$this
->
curRev
->
getId
()
);
$this
->
undo
=
$this
->
cur
;
$this
->
undoafter
=
$this
->
getRequest
()->
getInt
(
'restore'
);
if
(
$this
->
undo
==
0
||
$this
->
undoafter
==
0
)
{
throw
new
ErrorPageError
(
'mcrundofailed'
,
'mcrundo-missingparam'
);
}
}
protected
function
addStatePropagationFields
(
HTMLForm
$form
)
{
$form
->
addHiddenField
(
'restore'
,
$this
->
undoafter
);
$form
->
addHiddenField
(
'cur'
,
$this
->
curRev
->
getId
()
);
}
protected
function
alterForm
(
HTMLForm
$form
)
{
parent
::
alterForm
(
$form
);
$form
->
setWrapperLegendMsg
(
'confirm-mcrrestore-title'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 02:08 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
eb/f5/87480c43f4fba292534edf4ef07b
Default Alt Text
McrRestoreAction.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment