Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4100736
PreloadTransformParamsValue.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
926 B
Referenced Files
None
Subscribers
None
PreloadTransformParamsValue.php
View Options
<?php
namespace
MediaWiki\Content\Transform
;
use
MediaWiki\Page\PageReference
;
use
MediaWiki\Parser\ParserOptions
;
/**
* @internal
* An object to hold preload transform params.
*/
class
PreloadTransformParamsValue
implements
PreloadTransformParams
{
/** @var PageReference */
private
$page
;
/** @var array */
private
$params
;
/** @var ParserOptions */
private
$parserOptions
;
public
function
__construct
(
PageReference
$page
,
ParserOptions
$parserOptions
,
array
$params
=
[]
)
{
$this
->
page
=
$page
;
$this
->
parserOptions
=
$parserOptions
;
$this
->
params
=
$params
;
}
/**
*
* @return PageReference
*/
public
function
getPage
():
PageReference
{
return
$this
->
page
;
}
/**
*
* @return array
*/
public
function
getParams
():
array
{
return
$this
->
params
;
}
/**
*
* @return ParserOptions
*/
public
function
getParserOptions
():
ParserOptions
{
return
$this
->
parserOptions
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 16:36 (3 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ed/96/90de0b343b0c0cb3bca509f66218
Default Alt Text
PreloadTransformParamsValue.php (926 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment