Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F33826
UnsupportedSlotDiffRenderer.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
UnsupportedSlotDiffRenderer.php
View Options
<?php
/**
* Renders a slot diff by doing a text diff on the native representation.
*
* @license GPL-2.0-or-later
* @file
* @ingroup DifferenceEngine
*/
use
MediaWiki\Content\Content
;
use
MediaWiki\Html\Html
;
/**
* Produces a warning message about not being able to render a slot diff.
*
* @since 1.34
*
* @ingroup DifferenceEngine
*/
class
UnsupportedSlotDiffRenderer
extends
SlotDiffRenderer
{
/**
* @var MessageLocalizer
*/
private
$localizer
;
public
function
__construct
(
MessageLocalizer
$localizer
)
{
$this
->
localizer
=
$localizer
;
}
/** @inheritDoc */
public
function
getDiff
(
?
Content
$oldContent
=
null
,
?
Content
$newContent
=
null
)
{
$this
->
normalizeContents
(
$oldContent
,
$newContent
);
$oldModel
=
$oldContent
->
getModel
();
$newModel
=
$newContent
->
getModel
();
if
(
$oldModel
!==
$newModel
)
{
$msg
=
$this
->
localizer
->
msg
(
'unsupported-content-diff2'
,
$oldModel
,
$newModel
);
}
else
{
$msg
=
$this
->
localizer
->
msg
(
'unsupported-content-diff'
,
$oldModel
);
}
return
Html
::
rawElement
(
'tr'
,
[],
Html
::
rawElement
(
'td'
,
[
'colspan'
=>
4
,
'class'
=>
'error'
],
$msg
->
parse
()
)
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Dec 18, 11:22 (12 h, 33 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ec/10/61df29f742f18e558aa1426e3eae
Default Alt Text
UnsupportedSlotDiffRenderer.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment