2014-08-07 11:38:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Vector - Modern version of MonoBook with fresh look and many usability
|
|
|
|
* improvements.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
2020-03-11 22:35:38 +00:00
|
|
|
use Vector\Constants;
|
2014-08-07 11:38:34 +00:00
|
|
|
|
|
|
|
/**
|
2018-01-30 23:56:42 +00:00
|
|
|
* Skin subclass for Vector
|
2014-08-07 11:38:34 +00:00
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
|
|
|
class SkinVector extends SkinTemplate {
|
|
|
|
public $skinname = 'vector';
|
|
|
|
public $stylename = 'Vector';
|
|
|
|
public $template = 'VectorTemplate';
|
2014-08-13 18:39:38 +00:00
|
|
|
|
2019-11-18 20:54:37 +00:00
|
|
|
private $responsiveMode = false;
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2017-06-30 19:21:16 +00:00
|
|
|
/**
|
|
|
|
* Enables the responsive mode
|
|
|
|
*/
|
|
|
|
public function enableResponsiveMode() {
|
|
|
|
if ( !$this->responsiveMode ) {
|
|
|
|
$out = $this->getOutput();
|
|
|
|
$out->addMeta( 'viewport', 'width=device-width, initial-scale=1' );
|
|
|
|
$out->addModuleStyles( 'skins.vector.styles.responsive' );
|
|
|
|
$this->responsiveMode = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
/**
|
|
|
|
* Initializes output page and sets up skin-specific parameters
|
|
|
|
* @param OutputPage $out Object to initialize
|
|
|
|
*/
|
|
|
|
public function initPage( OutputPage $out ) {
|
|
|
|
parent::initPage( $out );
|
|
|
|
|
2019-11-18 20:54:37 +00:00
|
|
|
if ( $this->getConfig()->get( 'VectorResponsive' ) ) {
|
2017-06-30 19:21:16 +00:00
|
|
|
$this->enableResponsiveMode();
|
2015-06-25 00:21:28 +00:00
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-11-18 20:41:37 +00:00
|
|
|
* @inheritDoc
|
|
|
|
* @return array
|
2014-08-07 11:38:34 +00:00
|
|
|
*/
|
2019-11-18 20:41:37 +00:00
|
|
|
public function getDefaultModules() {
|
|
|
|
$modules = parent::getDefaultModules();
|
|
|
|
// add vector skin styles and vector module
|
2020-03-11 22:35:38 +00:00
|
|
|
$module = $this->getUser()->getOption( Constants::PREF_KEY_SKIN_VERSION )
|
|
|
|
=== Constants::SKIN_VERSION_LEGACY ? 'skins.vector.styles.legacy' : 'skins.vector.styles';
|
|
|
|
$modules['styles']['skin'][] = $module;
|
2019-11-18 20:41:37 +00:00
|
|
|
$modules['core'][] = 'skins.vector.js';
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2019-11-18 20:41:37 +00:00
|
|
|
return $modules;
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
|
2020-01-16 21:11:54 +00:00
|
|
|
/**
|
|
|
|
* Set up the VectorTemplate
|
|
|
|
*
|
|
|
|
* @param string $classname
|
|
|
|
* @return VectorTemplate
|
|
|
|
*/
|
|
|
|
public function setupTemplate( $classname ) {
|
|
|
|
$template = new VectorTemplate( $this->getConfig() );
|
|
|
|
$template->setTemplateParser( new TemplateParser( __DIR__ . '/templates' ) );
|
|
|
|
return $template;
|
|
|
|
}
|
|
|
|
|
2017-05-02 12:59:59 +00:00
|
|
|
/**
|
|
|
|
* Whether the logo should be preloaded with an HTTP link header or not
|
|
|
|
* @since 1.29
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function shouldPreloadLogo() {
|
|
|
|
return true;
|
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|