Go to the documentation of this file.
21 use WrappedString\WrappedStringList;
74 $this->config[$key] =
$value;
115 $this->exemptStates = $states;
146 foreach ( $this->modules
as $name ) {
147 $module = $rl->getModule(
$name );
152 if ( $module->shouldEmbedModule( $this->context ) ) {
163 foreach ( $this->moduleStyles
as $name ) {
164 $module = $rl->getModule(
$name );
170 $logger = $rl->getLogger();
171 $logger->error(
'Unexpected general module "{module}" in styles queue.', [
181 $group = $module->getGroup();
183 if ( $module->isKnownEmpty(
$context ) ) {
187 if ( $module->shouldEmbedModule( $this->context ) ) {
199 foreach ( $this->moduleScripts
as $name ) {
200 $module = $rl->getModule(
$name );
205 $group = $module->getGroup();
207 if ( $module->isKnownEmpty(
$context ) ) {
226 return [
'class' =>
'client-nojs' ];
251 'document.documentElement.className = document.documentElement.className'
252 .
'.replace( /(^|\s)client-nojs(\s|$)/, "$1client-js$2" );'
256 if ( $this->config ) {
257 $chunks[] = ResourceLoader::makeInlineScript(
258 ResourceLoader::makeConfigSetScript( $this->config )
263 $states = array_merge( $this->exemptStates,
$data[
'states'] );
265 $chunks[] = ResourceLoader::makeInlineScript(
266 ResourceLoader::makeLoaderStateScript( $states )
271 if (
$data[
'embed'][
'general'] ) {
273 $data[
'embed'][
'general'],
279 if (
$data[
'general'] ) {
280 $chunks[] = ResourceLoader::makeInlineScript(
286 if (
$data[
'scripts'] ) {
294 if (
$data[
'styles'] ) {
302 if (
$data[
'embed'][
'styles'] ) {
304 $data[
'embed'][
'styles'],
311 $startupQuery = $this->target ? [
'target' =>
$this->target ] : [];
318 return WrappedStringList::join(
"\n", $chunks );
337 array $extraQuery = []
344 if ( $group !==
'user' && $group !==
'private' ) {
345 $req->setVal(
'user',
null );
362 array $extraQuery = []
376 return new WrappedStringList(
"\n", $chunks );
382 $module = $rl->getModule(
$name );
384 $rl->getLogger()->warning(
'Unknown module "{module}"', [
'module' =>
$name ] );
387 $sortedModules[$module->getSource()][$module->getGroup()][
$name] = $module;
390 foreach ( $sortedModules
as $source => $groups ) {
391 foreach ( $groups
as $group => $grpModules ) {
397 foreach ( $grpModules
as $name => $module ) {
398 $shouldEmbed = $module->shouldEmbedModule(
$context );
399 if ( !$moduleSets || $moduleSets[$idx][0] !== $shouldEmbed ) {
400 $moduleSets[++$idx] = [ $shouldEmbed, [] ];
402 $moduleSets[$idx][1][
$name] = $module;
406 foreach ( $moduleSets
as list( $embed, $moduleSet ) ) {
407 $context->setModules( array_keys( $moduleSet ) );
412 $rl->makeModuleResponse(
$context, $moduleSet )
415 $chunks[] = ResourceLoader::makeInlineScript(
416 $rl->makeModuleResponse(
$context, $moduleSet )
422 foreach ( $moduleSet
as $key => $module ) {
423 $isRaw |= $module->isRaw();
431 if ( $group ===
'user' ) {
445 'async' => !isset( $extraQuery[
'sync'] ),
449 $chunk = ResourceLoader::makeInlineScript(
455 if ( $group ==
'noscript' ) {
465 return new WrappedStringList(
"\n", $chunks );
Object passed around to modules which contains information about the state of a specific loader reque...
WebRequest clone which takes values from a provided array.
Bootstrap a ResourceLoader client on an HTML page.
__construct(ResourceLoaderContext $context, $target=null)
static makeContext(ResourceLoaderContext $mainContext, $group, $type, array $extraQuery=[])
getContext( $group, $type)
setModuleScripts(array $modules)
Ensure the scripts of one or more modules are loaded.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
this hook is for auditing only $req
setExemptStates(array $states)
Set state of special modules that are handled by the caller manually.
Allows to change the fields on the form that will be generated $name
static inlineScript( $contents)
Output a "<script>" tag with the given contents.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
ResourceLoaderContext $context
ResourceLoader $resourceLoader
setConfig(array $vars)
Set mw.config variables.
static encodeJsCall( $name, $args, $pretty=false)
Create a call to a JavaScript function.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
getLoad( $modules, $only, array $extraQuery=[])
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Allows changing specific properties of a context object, without changing the main one.
static inlineStyle( $contents, $media='all')
Output a "<style>" tag with the given contents for the given media type (if any).
static makeLoad(ResourceLoaderContext $mainContext, array $modules, $only, array $extraQuery=[])
Explicily load or embed modules on a page.
setModules(array $modules)
Ensure one or more modules are loaded.
static linkedStyle( $url, $media='all')
Output a "<link rel=stylesheet>" linking to the given URL for the given media type (if any).
setModuleStyles(array $modules)
Ensure the styles of one or more modules are loaded.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
the array() calling protocol came about after MediaWiki 1.4rc1.
getHeadHtml()
The order of elements in the head is as follows: