Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
SiteStylesModule
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 3
20
0.00% covered (danger)
0.00%
0 / 1
 getPages
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 1
6
 getType
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getGroup
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @author Trevor Parscal
20 * @author Roan Kattouw
21 */
22
23namespace MediaWiki\ResourceLoader;
24
25use MediaWiki\MainConfigNames;
26
27/**
28 * Module for site style customizations.
29 *
30 * @ingroup ResourceLoader
31 * @internal
32 */
33class SiteStylesModule extends WikiModule {
34
35    /**
36     * Get list of pages used by this module
37     *
38     * @param Context $context
39     * @return array[]
40     */
41    protected function getPages( Context $context ) {
42        $pages = [];
43        if ( $this->getConfig()->get( MainConfigNames::UseSiteCss ) ) {
44            $skin = $context->getSkin();
45            $pages['MediaWiki:Common.css'] = [ 'type' => 'style' ];
46            $pages['MediaWiki:' . ucfirst( $skin ) . '.css'] = [ 'type' => 'style' ];
47            $pages['MediaWiki:Print.css'] = [ 'type' => 'style', 'media' => 'print' ];
48            $this->getHookRunner()->onResourceLoaderSiteStylesModulePages( $skin, $pages );
49        }
50        return $pages;
51    }
52
53    /**
54     * @return string
55     */
56    public function getType() {
57        return self::LOAD_STYLES;
58    }
59
60    /**
61     * @return string
62     */
63    public function getGroup() {
64        return self::GROUP_SITE;
65    }
66}