MediaWiki REL1_33
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}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Object passed around to modules which contains information about the state of a specific loader reque...
Module for user customizations styles.
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:2848
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".