MediaWiki  1.28.1
ResourceLoaderOOUIImageModule.php
Go to the documentation of this file.
1 <?php
27  protected function loadFromDefinition() {
28  if ( $this->definition === null ) {
29  return;
30  }
31 
32  // Core default themes
33  $themes = [ 'default' => 'mediawiki' ];
34  $themes += ExtensionRegistry::getInstance()->getAttribute( 'SkinOOUIThemes' );
35 
36  $name = $this->definition['name'];
37  $rootPath = $this->definition['rootPath'];
38 
39  $definition = [];
40  foreach ( $themes as $skin => $theme ) {
41  // TODO Allow extensions to specify this path somehow
42  $dataPath = $this->localBasePath . '/' . $rootPath . '/' . $theme . '/' . $name . '.json';
43 
44  if ( file_exists( $dataPath ) ) {
45  $data = json_decode( file_get_contents( $dataPath ), true );
46  $fixPath = function ( &$path ) use ( $rootPath, $theme ) {
47  // TODO Allow extensions to specify this path somehow
48  $path = $rootPath . '/' . $theme . '/' . $path;
49  };
50  array_walk( $data['images'], function ( &$value ) use ( $fixPath ) {
51  if ( is_string( $value['file'] ) ) {
52  $fixPath( $value['file'] );
53  } elseif ( is_array( $value['file'] ) ) {
54  array_walk_recursive( $value['file'], $fixPath );
55  }
56  } );
57  } else {
58  $data = [];
59  }
60 
61  foreach ( $data as $key => $value ) {
62  switch ( $key ) {
63  case 'images':
64  case 'variants':
65  $definition[$key][$skin] = $data[$key];
66  break;
67 
68  default:
69  if ( !isset( $definition[$key] ) ) {
70  $definition[$key] = $data[$key];
71  } elseif ( $definition[$key] !== $data[$key] ) {
72  throw new Exception(
73  "Mismatched OOUI theme definitions are not supported: trying to load $key of $theme theme"
74  );
75  }
76  break;
77  }
78  }
79  }
80 
81  // Fields from definition silently override keys from JSON files
82  $this->definition += $definition;
83 
84  parent::loadFromDefinition();
85  }
86 }
ResourceLoader module for generated and embedded images.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$value
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned $skin
Definition: hooks.txt:1936
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
Definition: distributors.txt:9
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
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable or merely the Work and Derivative Works thereof Contribution shall mean any work of including the original version of the Work and any modifications or additions to that Work or Derivative Works that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner For the purposes of this definition