Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2751650
DeduplicateStyles.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
DeduplicateStyles.php
View Options
<?php
namespace
MediaWiki\OutputTransform\Stages
;
use
MediaWiki\Html\Html
;
use
MediaWiki\OutputTransform\ContentTextTransformStage
;
use
MediaWiki\Parser\ParserOptions
;
use
MediaWiki\Parser\ParserOutput
;
use
MediaWiki\Parser\Sanitizer
;
/**
* Generates a list of unique style links
* @internal
*/
class
DeduplicateStyles
extends
ContentTextTransformStage
{
public
function
shouldRun
(
ParserOutput
$po
,
?
ParserOptions
$popts
,
array
$options
=
[]
):
bool
{
return
$options
[
'deduplicateStyles'
]
??
true
;
}
protected
function
transformText
(
string
$text
,
ParserOutput
$po
,
?
ParserOptions
$popts
,
array
&
$options
):
string
{
$seen
=
[];
return
preg_replace_callback
(
'#<style
\s
+([^>]*data-mw-deduplicate
\s
*=[
\'
"][^>]*)>.*?</style>#s'
,
static
function
(
$m
)
use
(
&
$seen
)
{
$attr
=
Sanitizer
::
decodeTagAttributes
(
$m
[
1
]
);
if
(
!
isset
(
$attr
[
'data-mw-deduplicate'
]
)
)
{
return
$m
[
0
];
}
$key
=
$attr
[
'data-mw-deduplicate'
];
if
(
!
isset
(
$seen
[
$key
]
)
)
{
$seen
[
$key
]
=
true
;
return
$m
[
0
];
}
// We were going to use an empty <style> here, but there
// was concern that would be too much overhead for browsers.
// So let's hope a <link> with a non-standard rel and href isn't
// going to be misinterpreted or mangled by any subsequent processing.
return
Html
::
element
(
'link'
,
[
'rel'
=>
'mw-deduplicated-inline-style'
,
'href'
=>
"mw-data:"
.
wfUrlencode
(
$key
),
]
);
},
$text
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 3, 18:57 (1 d, 18 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
92/39/2ea4cdfa7fd1c9feefe93afc999b
Default Alt Text
DeduplicateStyles.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment