MediaWiki REL1_31
ResourceLoaderUserModule.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( 'AllowUserJs' ) ) {
47 $pages["$userPage/common.js"] = [ 'type' => 'script' ];
48 $pages["$userPage/" . $context->getSkin() . '.js'] = [ 'type' => 'script' ];
49 }
50
51 // User group pages are maintained site-wide and enabled with site JS/CSS.
52 if ( $config->get( 'UseSiteJs' ) ) {
53 foreach ( $user->getEffectiveGroups() as $group ) {
54 if ( $group == '*' ) {
55 continue;
56 }
57 $pages["MediaWiki:Group-$group.js"] = [ 'type' => 'script' ];
58 }
59 }
60
61 // Hack for T28283: Allow excluding pages for preview on a CSS/JS page.
62 // The excludepage parameter is set by OutputPage.
63 $excludepage = $context->getRequest()->getVal( 'excludepage' );
64 if ( isset( $pages[$excludepage] ) ) {
65 unset( $pages[$excludepage] );
66 }
67
68 return $pages;
69 }
70
76 public function getGroup() {
77 return 'user';
78 }
79
85 return [ 'user.styles' ];
86 }
87}
Object passed around to modules which contains information about the state of a specific loader reque...
Module for user customizations scripts.
getDependencies(ResourceLoaderContext $context=null)
getPages(ResourceLoaderContext $context)
Abstraction for ResourceLoader modules which pull from wiki pages.
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:2811
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".