2013-12-01 00:49:21 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
2015-10-28 03:24:40 +00:00
|
|
|
* ResourceLoader module for skin stylesheets.
|
2013-12-01 00:49:21 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @author Timo Tijhof
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class ResourceLoaderSkinModule extends ResourceLoaderFileModule {
|
|
|
|
|
|
|
|
|
|
/**
|
2016-04-30 10:10:17 +00:00
|
|
|
* @param ResourceLoaderContext $context
|
2013-12-01 00:49:21 +00:00
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function getStyles( ResourceLoaderContext $context ) {
|
2016-01-22 22:58:03 +00:00
|
|
|
$conf = $this->getConfig();
|
|
|
|
|
$logo = $conf->get( 'Logo' );
|
|
|
|
|
$logoHD = $conf->get( 'LogoHD' );
|
|
|
|
|
|
|
|
|
|
$logo1 = OutputPage::transformResourcePath( $conf, $logo );
|
|
|
|
|
$logo15 = OutputPage::transformResourcePath( $conf, $logoHD['1.5x'] );
|
|
|
|
|
$logo2 = OutputPage::transformResourcePath( $conf, $logoHD['2x'] );
|
|
|
|
|
|
2013-12-01 00:49:21 +00:00
|
|
|
$styles = parent::getStyles( $context );
|
|
|
|
|
$styles['all'][] = '.mw-wiki-logo { background-image: ' .
|
2016-01-22 22:58:03 +00:00
|
|
|
CSSMin::buildUrlValue( $logo1 ) .
|
2013-12-01 00:49:21 +00:00
|
|
|
'; }';
|
2015-06-01 16:58:42 +00:00
|
|
|
// Only 1.5x and 2x are supported
|
|
|
|
|
// Note: Keep in sync with OutputPage::addLogoPreloadLinkHeaders()
|
2015-03-09 01:55:31 +00:00
|
|
|
if ( $logoHD ) {
|
|
|
|
|
if ( isset( $logoHD['1.5x'] ) ) {
|
|
|
|
|
$styles[
|
|
|
|
|
'(-webkit-min-device-pixel-ratio: 1.5), ' .
|
|
|
|
|
'(min--moz-device-pixel-ratio: 1.5), ' .
|
|
|
|
|
'(min-resolution: 1.5dppx), ' .
|
|
|
|
|
'(min-resolution: 144dpi)'
|
|
|
|
|
][] = '.mw-wiki-logo { background-image: ' .
|
2016-01-22 22:58:03 +00:00
|
|
|
CSSMin::buildUrlValue( $logo15 ) . ';' .
|
2015-03-09 01:55:31 +00:00
|
|
|
'background-size: 135px auto; }';
|
|
|
|
|
}
|
|
|
|
|
if ( isset( $logoHD['2x'] ) ) {
|
|
|
|
|
$styles[
|
|
|
|
|
'(-webkit-min-device-pixel-ratio: 2), ' .
|
2015-06-17 20:01:00 +00:00
|
|
|
'(min--moz-device-pixel-ratio: 2),' .
|
2015-03-09 01:55:31 +00:00
|
|
|
'(min-resolution: 2dppx), ' .
|
|
|
|
|
'(min-resolution: 192dpi)'
|
|
|
|
|
][] = '.mw-wiki-logo { background-image: ' .
|
2016-01-22 22:58:03 +00:00
|
|
|
CSSMin::buildUrlValue( $logo2 ) . ';' .
|
2015-03-09 01:55:31 +00:00
|
|
|
'background-size: 135px auto; }';
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-12-01 00:49:21 +00:00
|
|
|
return $styles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2016-04-30 10:10:17 +00:00
|
|
|
* @param ResourceLoaderContext $context
|
2014-12-10 05:09:35 +00:00
|
|
|
* @return bool
|
2013-12-01 00:49:21 +00:00
|
|
|
*/
|
|
|
|
|
public function isKnownEmpty( ResourceLoaderContext $context ) {
|
|
|
|
|
// Regardless of whether the files are specified, we always
|
|
|
|
|
// provide mw-wiki-logo styles.
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-28 21:34:18 +00:00
|
|
|
public function getDefinitionSummary( ResourceLoaderContext $context ) {
|
|
|
|
|
$summary = parent::getDefinitionSummary( $context );
|
|
|
|
|
$summary[] = [
|
|
|
|
|
'logo' => $this->getConfig()->get( 'Logo' ),
|
|
|
|
|
'logoHD' => $this->getConfig()->get( 'LogoHD' ),
|
|
|
|
|
];
|
|
|
|
|
return $summary;
|
2013-12-01 00:49:21 +00:00
|
|
|
}
|
|
|
|
|
}
|