MediaWiki  1.33.0
ResourceLoaderUserStylesModule.php
Go to the documentation of this file.
1 <?php
27 
29  protected $targets = [ 'desktop', 'mobile' ];
30 
35  protected function getPages( ResourceLoaderContext $context ) {
36  $config = $this->getConfig();
37  $user = $context->getUserObj();
38  if ( $user->isAnon() ) {
39  return [];
40  }
41 
42  // Use localised/normalised variant to ensure $excludepage matches
43  $userPage = $user->getUserPage()->getPrefixedDBkey();
44  $pages = [];
45 
46  if ( $config->get( 'AllowUserCss' ) ) {
47  $pages["$userPage/common.css"] = [ 'type' => 'style' ];
48  $pages["$userPage/" . $context->getSkin() . '.css'] = [ 'type' => 'style' ];
49  }
50 
51  // User group pages are maintained site-wide and enabled with site JS/CSS.
52  if ( $config->get( 'UseSiteCss' ) ) {
53  foreach ( $user->getEffectiveGroups() as $group ) {
54  if ( $group == '*' ) {
55  continue;
56  }
57  $pages["MediaWiki:Group-$group.css"] = [ 'type' => 'style' ];
58  }
59  }
60 
61  // This is obsolete since 1.32 (T112474). It was formerly used by
62  // OutputPage to implement previewing of user CSS and JS.
63  // @todo: Remove it once we're sure nothing else is using the parameter
64  $excludepage = $context->getRequest()->getVal( 'excludepage' );
65  if ( isset( $pages[$excludepage] ) ) {
66  unset( $pages[$excludepage] );
67  }
68 
69  return $pages;
70  }
71 
75  public function getType() {
76  return self::LOAD_STYLES;
77  }
78 
84  public function getGroup() {
85  return 'user';
86  }
87 }
ResourceLoaderUserStylesModule\getType
getType()
Definition: ResourceLoaderUserStylesModule.php:75
ResourceLoaderUserStylesModule
Module for user customizations styles.
Definition: ResourceLoaderUserStylesModule.php:26
ResourceLoaderContext
Object passed around to modules which contains information about the state of a specific loader reque...
Definition: ResourceLoaderContext.php:32
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
$context
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2636
ResourceLoaderUserStylesModule\$origin
$origin
Definition: ResourceLoaderUserStylesModule.php:28
ResourceLoaderWikiModule
Abstraction for ResourceLoader modules which pull from wiki pages.
Definition: ResourceLoaderWikiModule.php:51
ResourceLoaderUserStylesModule\$targets
$targets
Definition: ResourceLoaderUserStylesModule.php:29
php
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
Config\get
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
ResourceLoaderModule\ORIGIN_USER_INDIVIDUAL
const ORIGIN_USER_INDIVIDUAL
Definition: ResourceLoaderModule.php:58
ResourceLoaderUserStylesModule\getGroup
getGroup()
Get group name.
Definition: ResourceLoaderUserStylesModule.php:84
ResourceLoaderModule\LOAD_STYLES
const LOAD_STYLES
Definition: ResourceLoaderModule.php:43
ResourceLoaderWikiModule\$group
$group
Definition: ResourceLoaderWikiModule.php:78
ResourceLoaderModule\$config
Config $config
Definition: ResourceLoaderModule.php:84
as
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
ResourceLoaderContext\getUserObj
getUserObj()
Get the possibly-cached User object for the specified username.
Definition: ResourceLoaderContext.php:232
ResourceLoaderUserStylesModule\getPages
getPages(ResourceLoaderContext $context)
Definition: ResourceLoaderUserStylesModule.php:35
ResourceLoaderModule\getConfig
getConfig()
Definition: ResourceLoaderModule.php:196