Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / resourceloader / ResourceLoaderUserModule.php
blob1b6d1de07cfe175f8b5062cddfe9c4f5e854c897
1 <?php
2 /**
3 * Resource loader module for user customizations.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @author Trevor Parscal
22 * @author Roan Kattouw
25 /**
26 * Module for user customizations
28 class ResourceLoaderUserModule extends ResourceLoaderWikiModule {
30 /* Protected Members */
32 protected $origin = self::ORIGIN_USER_INDIVIDUAL;
34 /* Protected Methods */
36 /**
37 * @param ResourceLoaderContext $context
38 * @return array
40 protected function getPages( ResourceLoaderContext $context ) {
41 $username = $context->getUser();
43 if ( $username === null ) {
44 return array();
47 $allowUserJs = $this->getConfig()->get( 'AllowUserJs' );
48 $allowUserCss = $this->getConfig()->get( 'AllowUserCss' );
50 if ( !$allowUserJs && !$allowUserCss ) {
51 return array();
54 // Get the normalized title of the user's user page
55 $userpageTitle = Title::makeTitleSafe( NS_USER, $username );
57 if ( !$userpageTitle instanceof Title ) {
58 return array();
61 $userpage = $userpageTitle->getPrefixedDBkey(); // Needed so $excludepages works
63 $pages = array();
64 if ( $allowUserJs ) {
65 $pages["$userpage/common.js"] = array( 'type' => 'script' );
66 $pages["$userpage/" . $context->getSkin() . '.js'] = array( 'type' => 'script' );
68 if ( $allowUserCss ) {
69 $pages["$userpage/common.css"] = array( 'type' => 'style' );
70 $pages["$userpage/" . $context->getSkin() . '.css'] = array( 'type' => 'style' );
73 // Hack for bug 26283: if we're on a preview page for a CSS/JS page,
74 // we need to exclude that page from this module. In that case, the excludepage
75 // parameter will be set to the name of the page we need to exclude.
76 $excludepage = $context->getRequest()->getVal( 'excludepage' );
77 if ( isset( $pages[$excludepage] ) ) {
78 // This works because $excludepage is generated with getPrefixedDBkey(),
79 // just like the keys in $pages[] above
80 unset( $pages[$excludepage] );
82 return $pages;
85 /* Methods */
87 /**
88 * @return string
90 public function getGroup() {
91 return 'user';