summaryrefslogtreecommitdiff
path: root/www/wiki/skins/chameleon/src/SkinChameleon.php
blob: a898450d534718e52c45912d475d791db424424f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
/**
 * File holding the SkinChameleon class
 *
 * This file is part of the MediaWiki skin Chameleon.
 *
 * @copyright 2013 - 2016, Stephan Gambke
 * @license   GNU General Public License, version 3 (or any later version)
 *
 * The Chameleon skin 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 3 of the License, or (at your option) any
 * later version.
 *
 * The Chameleon skin 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, see <http://www.gnu.org/licenses/>.
 *
 * @file
 * @ingroup Skins
 */
use Skins\Chameleon\ComponentFactory;

/**
 * SkinTemplate class for the Chameleon skin
 *
 * @author Stephan Gambke
 * @since 1.0
 * @ingroup Skins
 */
class SkinChameleon extends SkinTemplate {

	public $skinname = 'chameleon';
	public $stylename = 'chameleon';
	public $template = '\Skins\Chameleon\ChameleonTemplate';
	public $useHeadElement = true;

	private $componentFactory;

	/**
	 * @param $out OutputPage object
	 */
	public function setupSkinUserCss( OutputPage $out ) {

		// load Bootstrap styles
		$out->addModuleStyles(
			array(
				'ext.bootstrap.styles'
			)
		);
	}

	/**
	 * @param \OutputPage $out
	 */
	public function initPage( OutputPage $out ) {

		parent::initPage( $out );

		// Enable responsive behaviour on mobile browsers
		$out->addMeta( 'viewport', 'width=device-width, initial-scale=1.0' );
	}

	/**
	 * @return QuickTemplate
	 */
	protected function setupTemplateForOutput() {

		$tpl = parent::setupTemplateForOutput();

		$this->getComponentFactory()->setSkinTemplate( $tpl );

		$tpl->set( 'skin', $this );
		$this->addSkinModulesToOutput();

		return $tpl;
	}

	/**
	 * @return ComponentFactory
	 */
	public function getComponentFactory() {

		if ( ! isset( $this->componentFactory ) ) {
			$this->componentFactory = new \Skins\Chameleon\ComponentFactory(
				$this->getLayoutFilePath()
			);
		}

		return $this->componentFactory;
	}

	public function addSkinModulesToOutput() {
		// load Bootstrap scripts
		$out = $this->getOutput();
		$out->addModules( array( 'ext.bootstrap.scripts' ) );
		$out->addModules( $this->getComponentFactory()->getRootComponent()->getResourceLoaderModules() );

	}

	/**
	 * @param Title $title
	 * @return string
	 */
	public function getPageClasses( $title ) {
		$layoutFilePath = $this->getLayoutFilePath();
		$layoutName = Sanitizer::escapeClass( 'layout-' . basename( $layoutFilePath, '.xml' ) );
		return implode( ' ', array( parent::getPageClasses( $title ), $layoutName ) );
	}

	/**
	 * Template method that can be overridden by subclasses
	 * @return string Path to layout file
	 */
	protected function getLayoutFilePath() {
		return $GLOBALS['egChameleonLayoutFile'];
	}
}