summaryrefslogtreecommitdiff
path: root/www/wiki/skins/chameleon/src/Components/Component.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/skins/chameleon/src/Components/Component.php')
-rw-r--r--www/wiki/skins/chameleon/src/Components/Component.php222
1 files changed, 222 insertions, 0 deletions
diff --git a/www/wiki/skins/chameleon/src/Components/Component.php b/www/wiki/skins/chameleon/src/Components/Component.php
new file mode 100644
index 00000000..e6dc51c1
--- /dev/null
+++ b/www/wiki/skins/chameleon/src/Components/Component.php
@@ -0,0 +1,222 @@
+<?php
+/**
+ * File containing the Component class
+ *
+ * This file is part of the MediaWiki skin Chameleon.
+ *
+ * @copyright 2013 - 2014, 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
+ */
+
+namespace Skins\Chameleon\Components;
+
+use SkinChameleon;
+use Skins\Chameleon\ChameleonTemplate;
+
+/**
+ * Component class
+ *
+ * This is the base class of all components.
+ *
+ * @author Stephan Gambke
+ * @since 1.0
+ * @ingroup Skins
+ */
+abstract class Component {
+
+ private $mSkinTemplate;
+ private $mIndent = 0;
+ private $mClasses = array();
+ private $mDomElement = null;
+
+ /**
+ * @param ChameleonTemplate $template
+ * @param \DOMElement|null $domElement
+ * @param int $indent
+ */
+ public function __construct( ChameleonTemplate $template, \DOMElement $domElement = null, $indent = 0 ) {
+
+ $this->mSkinTemplate = $template;
+ $this->mIndent = (int) $indent;
+ $this->mDomElement = $domElement;
+
+ if ( $domElement !== null ) {
+ $this->addClasses( $domElement->getAttribute( 'class' ) );
+ }
+ }
+
+ /**
+ * Sets the class string that should be assigned to the top-level html element of this component
+ *
+ * @param string | array | null $classes
+ *
+ */
+ public function setClasses( $classes ) {
+
+ $this->mClasses = array();
+ $this->addClasses( $classes );
+
+ }
+
+ /**
+ * Adds the given class to the class string that should be assigned to the top-level html element of this component
+ *
+ * @param string | array | null $classes
+ *
+ * @return string | array
+ */
+ public function addClasses( $classes ) {
+
+ $classesArray = $this->transformClassesToArray( $classes );
+
+ if ( !empty( $classesArray ) ) {
+ $classesArray = array_combine( $classesArray, $classesArray );
+ $this->mClasses = array_merge( $this->mClasses, $classesArray );
+ }
+ }
+
+ /**
+ * @param string | array | null $classes
+ *
+ * @return array
+ * @throws \MWException
+ */
+ protected function transformClassesToArray ( $classes ) {
+
+ if ( empty( $classes ) ) {
+ return array();
+ } elseif ( is_array( $classes )) {
+ return $classes;
+ } elseif ( is_string( $classes ) ) {
+ return explode( ' ', $classes );
+ } else {
+ throw new \MWException( __METHOD__ . ': Expected String or Array; ' . getType( $classes ) . ' given.' );
+ }
+
+ }
+
+ /**
+ * @return ChameleonTemplate
+ */
+ public function getSkinTemplate() {
+
+ return $this->mSkinTemplate;
+ }
+
+ /**
+ * @since 1.1
+ * @return SkinChameleon
+ */
+ public function getSkin() {
+
+ return $this->mSkinTemplate->getSkin();
+ }
+
+ /**
+ * Returns the current indentation level
+ *
+ * @return int
+ */
+ public function getIndent() {
+
+ return $this->mIndent;
+ }
+
+ /**
+ * Returns the class string that should be assigned to the top-level html element of this component
+ *
+ * @return string
+ */
+ public function getClassString() {
+
+ return implode( ' ', $this->mClasses );
+ }
+
+ /**
+ * Removes the given class from the class string that should be assigned to the top-level html element of this component
+ *
+ * @param string | array | null $classes
+ *
+ * @return string
+ */
+ public function removeClasses( $classes ) {
+
+ $classesArray = $this->transformClassesToArray( $classes );
+
+ $this->mClasses = array_diff( $this->mClasses, $classesArray );
+ }
+
+ /**
+ * Returns the DOMElement from the description XML file associated with this element.
+ *
+ * @return \DOMElement
+ */
+ public function getDomElement() {
+ return $this->mDomElement;
+ }
+
+ /**
+ * Builds the HTML code for this component
+ *
+ * @return String the HTML code
+ */
+ abstract public function getHtml();
+
+ /**
+ * @return string[] the resource loader modules needed by this component
+ */
+ public function getResourceLoaderModules() {
+ return array();
+ }
+
+ /**
+ * Adds $indent to (or subtracts from if negative) the current indentation level.
+ * Inserts a new line and a number of tabs according to the new indentation level.
+ *
+ * @param int $indent
+ * @return string
+ * @throws \MWException
+ */
+ protected function indent( $indent = 0 ) {
+
+ $this->mIndent += (int) $indent;
+
+ if ( $this->mIndent < 0 ) {
+ throw new \MWException('Attempted HTML indentation of ' .$this->mIndent );
+ }
+
+ return "\n" . str_repeat( "\t", $this->mIndent );
+ }
+
+ /**
+ * @param string $attributeName
+ * @param null | string $default
+ * @return null | string
+ */
+ protected function getAttribute( $attributeName, $default = null ) {
+
+ $element = $this->getDomElement();
+
+ if ( $element !== null && $element->hasAttribute( $attributeName ) ) {
+ return $element->getAttribute( $attributeName );
+ }
+
+ return $default;
+ }
+}