MediaWiki  1.27.2
ResourceLoaderSkinModule.php
Go to the documentation of this file.
1 <?php
25 
26  /* Methods */
27 
33  $conf = $this->getConfig();
34  $logo = $conf->get( 'Logo' );
35  $logoHD = $conf->get( 'LogoHD' );
36 
37  $logo1 = OutputPage::transformResourcePath( $conf, $logo );
38  $logo15 = OutputPage::transformResourcePath( $conf, $logoHD['1.5x'] );
39  $logo2 = OutputPage::transformResourcePath( $conf, $logoHD['2x'] );
40 
41  $styles = parent::getStyles( $context );
42  $styles['all'][] = '.mw-wiki-logo { background-image: ' .
43  CSSMin::buildUrlValue( $logo1 ) .
44  '; }';
45  if ( $logoHD ) {
46  if ( isset( $logoHD['1.5x'] ) ) {
47  $styles[
48  '(-webkit-min-device-pixel-ratio: 1.5), ' .
49  '(min--moz-device-pixel-ratio: 1.5), ' .
50  '(min-resolution: 1.5dppx), ' .
51  '(min-resolution: 144dpi)'
52  ][] = '.mw-wiki-logo { background-image: ' .
53  CSSMin::buildUrlValue( $logo15 ) . ';' .
54  'background-size: 135px auto; }';
55  }
56  if ( isset( $logoHD['2x'] ) ) {
57  $styles[
58  '(-webkit-min-device-pixel-ratio: 2), ' .
59  '(min--moz-device-pixel-ratio: 2),' .
60  '(min-resolution: 2dppx), ' .
61  '(min-resolution: 192dpi)'
62  ][] = '.mw-wiki-logo { background-image: ' .
63  CSSMin::buildUrlValue( $logo2 ) . ';' .
64  'background-size: 135px auto; }';
65  }
66  }
67  return $styles;
68  }
69 
75  // Regardless of whether the files are specified, we always
76  // provide mw-wiki-logo styles.
77  return false;
78  }
79 
85  $logo = $this->getConfig()->get( 'Logo' );
86  $logoHD = $this->getConfig()->get( 'LogoHD' );
87  return md5( parent::getModifiedHash( $context ) . $logo . json_encode( $logoHD ) );
88  }
89 }
$context
Definition: load.php:44
static transformResourcePath(Config $config, $path)
Transform path to web-accessible static resource.
ResourceLoader module based on local JavaScript/CSS files.
getModifiedHash(ResourceLoaderContext $context)
isKnownEmpty(ResourceLoaderContext $context)
static buildUrlValue($url)
Build a CSS 'url()' value for the given URL, quoting parentheses (and other funny characters) and esc...
Definition: CSSMin.php:207
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
Definition: injection.txt:35
getStyles(ResourceLoaderContext $context)
array $styles
List of paths to CSS files to always include.
Object passed around to modules which contains information about the state of a specific loader reque...