summaryrefslogtreecommitdiff
path: root/www/wiki/skins/chameleon/src/SkinChameleon.php
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
committerYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
commitfc7369835258467bf97eb64f184b93691f9a9fd5 (patch)
treedaabd60089d2dd76d9f5fb416b005fbe159c799d /www/wiki/skins/chameleon/src/SkinChameleon.php
first commit
Diffstat (limited to 'www/wiki/skins/chameleon/src/SkinChameleon.php')
-rw-r--r--www/wiki/skins/chameleon/src/SkinChameleon.php122
1 files changed, 122 insertions, 0 deletions
diff --git a/www/wiki/skins/chameleon/src/SkinChameleon.php b/www/wiki/skins/chameleon/src/SkinChameleon.php
new file mode 100644
index 00000000..a898450d
--- /dev/null
+++ b/www/wiki/skins/chameleon/src/SkinChameleon.php
@@ -0,0 +1,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'];
+ }
+}