MediaWiki  1.33.0
ResourceLoaderClientHtml Class Reference

Load and configure a ResourceLoader client on an HTML page. More...

Collaboration diagram for ResourceLoaderClientHtml:

Public Member Functions

 __construct (ResourceLoaderContext $context, array $options=[])
 
 getBodyHtml ()
 
 getDocumentAttributes ()
 
 getHeadHtml ()
 The order of elements in the head is as follows: More...
 
 setConfig (array $vars)
 Set mw.config variables. More...
 
 setExemptStates (array $states)
 Set state of special modules that are handled by the caller manually. More...
 
 setModules (array $modules)
 Ensure one or more modules are loaded. More...
 
 setModuleStyles (array $modules)
 Ensure the styles of one or more modules are loaded. More...
 

Static Public Member Functions

static makeLoad (ResourceLoaderContext $mainContext, array $modules, $only, array $extraQuery=[], $nonce=null)
 Explicily load or embed modules on a page. More...
 

Private Member Functions

 getContext ( $group, $type)
 
 getData ()
 
 getLoad ( $modules, $only, $nonce, array $extraQuery=[])
 

Static Private Member Functions

static makeContext (ResourceLoaderContext $mainContext, $group, $type, array $extraQuery=[])
 

Private Attributes

array $config = []
 
ResourceLoaderContext $context
 
array $data
 
array $exemptStates = []
 
array $modules = []
 
array $moduleStyles = []
 
array $options
 
ResourceLoader $resourceLoader
 

Detailed Description

Load and configure a ResourceLoader client on an HTML page.

Since
1.28

Definition at line 29 of file ResourceLoaderClientHtml.php.

Constructor & Destructor Documentation

◆ __construct()

ResourceLoaderClientHtml::__construct ( ResourceLoaderContext  $context,
array  $options = [] 
)
Parameters
ResourceLoaderContext$context
array$options[optional] Array of options

Definition at line 62 of file ResourceLoaderClientHtml.php.

References $context, ResourceLoaderContext\getResourceLoader(), and options().

Member Function Documentation

◆ getBodyHtml()

ResourceLoaderClientHtml::getBodyHtml ( )
Returns
string|WrappedStringList HTML

Definition at line 320 of file ResourceLoaderClientHtml.php.

References $data, getData(), and options().

◆ getContext()

ResourceLoaderClientHtml::getContext (   $group,
  $type 
)
private

Definition at line 335 of file ResourceLoaderClientHtml.php.

References $type, and makeContext().

Referenced by getData().

◆ getData()

ResourceLoaderClientHtml::getData ( )
private

◆ getDocumentAttributes()

ResourceLoaderClientHtml::getDocumentAttributes ( )
Returns
array Attribute key-value pairs for the HTML document element

Definition at line 212 of file ResourceLoaderClientHtml.php.

◆ getHeadHtml()

ResourceLoaderClientHtml::getHeadHtml ( )

The order of elements in the head is as follows:

  • Inline scripts.
  • Stylesheets.
  • Async external script-src.

Reasons:

  • Script execution may be blocked on preceeding stylesheets.
  • Async scripts are not blocked on stylesheets.
  • Inline scripts can't be asynchronous.
  • For styles, earlier is better.
Returns
string|WrappedStringList HTML

Definition at line 230 of file ResourceLoaderClientHtml.php.

References $data, as, getData(), getLoad(), options(), string, ResourceLoaderModule\TYPE_COMBINED, ResourceLoaderModule\TYPE_SCRIPTS, and ResourceLoaderModule\TYPE_STYLES.

◆ getLoad()

ResourceLoaderClientHtml::getLoad (   $modules,
  $only,
  $nonce,
array  $extraQuery = [] 
)
private

Definition at line 339 of file ResourceLoaderClientHtml.php.

References $modules, array(), and makeLoad().

Referenced by getHeadHtml().

◆ makeContext()

static ResourceLoaderClientHtml::makeContext ( ResourceLoaderContext  $mainContext,
  $group,
  $type,
array  $extraQuery = [] 
)
staticprivate

◆ makeLoad()

static ResourceLoaderClientHtml::makeLoad ( ResourceLoaderContext  $mainContext,
array  $modules,
  $only,
array  $extraQuery = [],
  $nonce = null 
)
static

Explicily load or embed modules on a page.

Parameters
ResourceLoaderContext$mainContext
array$modulesOne or more module names
string$onlyResourceLoaderModule TYPE_ class constant
array$extraQuery[optional] Array with extra query parameters for the request
string | null$nonce[optional] Content-Security-Policy nonce (from OutputPage::getCSPNonce)
Returns
string|WrappedStringList HTML

Definition at line 372 of file ResourceLoaderClientHtml.php.

References $context, $modules, $name, $source, as, captcha-old\count, Xml\encodeJsCall(), ResourceLoaderContext\getDebug(), ResourceLoaderContext\getRaw(), ResourceLoaderContext\getResourceLoader(), list, makeContext(), and ResourceLoaderModule\TYPE_STYLES.

Referenced by getLoad().

◆ setConfig()

ResourceLoaderClientHtml::setConfig ( array  $vars)

Set mw.config variables.

Parameters
array$varsArray of key/value pairs

Definition at line 77 of file ResourceLoaderClientHtml.php.

References $value, $vars, and as.

◆ setExemptStates()

ResourceLoaderClientHtml::setExemptStates ( array  $states)

Set state of special modules that are handled by the caller manually.

See OutputPage::buildExemptModules() for use cases.

Parameters
array$statesModule state keyed by module name

Definition at line 108 of file ResourceLoaderClientHtml.php.

◆ setModules()

ResourceLoaderClientHtml::setModules ( array  $modules)

Ensure one or more modules are loaded.

Parameters
array$modulesArray of module names

Definition at line 88 of file ResourceLoaderClientHtml.php.

References $modules.

◆ setModuleStyles()

ResourceLoaderClientHtml::setModuleStyles ( array  $modules)

Ensure the styles of one or more modules are loaded.

Parameters
array$modulesArray of module names

Definition at line 97 of file ResourceLoaderClientHtml.php.

References $modules.

Member Data Documentation

◆ $config

array ResourceLoaderClientHtml::$config = []
private

Definition at line 41 of file ResourceLoaderClientHtml.php.

◆ $context

ResourceLoaderContext ResourceLoaderClientHtml::$context
private

Definition at line 32 of file ResourceLoaderClientHtml.php.

Referenced by __construct(), getData(), makeContext(), and makeLoad().

◆ $data

array ResourceLoaderClientHtml::$data
private

Definition at line 53 of file ResourceLoaderClientHtml.php.

Referenced by getBodyHtml(), getData(), and getHeadHtml().

◆ $exemptStates

array ResourceLoaderClientHtml::$exemptStates = []
private

Definition at line 50 of file ResourceLoaderClientHtml.php.

◆ $modules

array ResourceLoaderClientHtml::$modules = []
private

Definition at line 44 of file ResourceLoaderClientHtml.php.

Referenced by getLoad(), makeLoad(), setModules(), and setModuleStyles().

◆ $moduleStyles

array ResourceLoaderClientHtml::$moduleStyles = []
private

Definition at line 47 of file ResourceLoaderClientHtml.php.

◆ $options

array ResourceLoaderClientHtml::$options
private

Definition at line 38 of file ResourceLoaderClientHtml.php.

◆ $resourceLoader

ResourceLoader ResourceLoaderClientHtml::$resourceLoader
private

Definition at line 35 of file ResourceLoaderClientHtml.php.

Referenced by getData().


The documentation for this class was generated from the following file: