2019-04-10 21:43:50 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
namespace MediaWiki\Minerva;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A wrapper for all available Skin options.
|
|
|
|
*/
|
|
|
|
final class SkinOptions {
|
|
|
|
|
2019-08-01 16:18:18 +00:00
|
|
|
const MOBILE_OPTIONS = 'mobileOptionsLink';
|
|
|
|
const AMC_MODE = 'amc';
|
|
|
|
const CATEGORIES = 'categories';
|
|
|
|
const BACK_TO_TOP = 'backToTop';
|
|
|
|
const PAGE_ISSUES = 'pageIssues';
|
|
|
|
const SHARE_BUTTON = 'shareButton';
|
|
|
|
const TOGGLING = 'toggling';
|
|
|
|
const BETA_MODE = 'beta';
|
|
|
|
const TALK_AT_TOP = 'talkAtTop';
|
|
|
|
const HISTORY_IN_PAGE_ACTIONS = 'historyInPageActions';
|
|
|
|
const TOOLBAR_SUBMENU = 'overflowSubmenu';
|
|
|
|
const TABS_ON_SPECIALS = 'tabsOnSpecials';
|
|
|
|
|
|
|
|
/** @var array skin specific options, initialized with default values */
|
2019-04-10 21:43:50 +00:00
|
|
|
private $skinOptions = [
|
|
|
|
// Defaults to true for desktop mode.
|
2019-08-01 16:18:18 +00:00
|
|
|
self::AMC_MODE => true,
|
|
|
|
self::BETA_MODE => false,
|
2019-04-10 21:43:50 +00:00
|
|
|
/**
|
|
|
|
* Whether the main menu should include a link to
|
|
|
|
* Special:Preferences of Special:MobileOptions
|
|
|
|
*/
|
2019-08-01 16:18:18 +00:00
|
|
|
self::MOBILE_OPTIONS => false,
|
2019-04-10 21:43:50 +00:00
|
|
|
/** Whether a categories button should appear at the bottom of the skin. */
|
2019-08-01 16:18:18 +00:00
|
|
|
self::CATEGORIES => false,
|
2019-04-10 21:43:50 +00:00
|
|
|
/** Whether a back to top button appears at the bottom of the view page */
|
2019-08-01 16:18:18 +00:00
|
|
|
self::BACK_TO_TOP => false,
|
2019-04-10 21:43:50 +00:00
|
|
|
/** Whether a share button should appear in icons section */
|
2019-08-01 16:18:18 +00:00
|
|
|
self::SHARE_BUTTON => false,
|
2019-04-10 21:43:50 +00:00
|
|
|
/** Whether sections can be collapsed (requires MobileFrontend and MobileFormatter) */
|
2019-08-01 16:18:18 +00:00
|
|
|
self::TOGGLING => false,
|
|
|
|
self::PAGE_ISSUES => false,
|
|
|
|
self::TALK_AT_TOP => false,
|
|
|
|
self::HISTORY_IN_PAGE_ACTIONS => false,
|
|
|
|
self::TOOLBAR_SUBMENU => false,
|
2019-06-07 11:40:13 +00:00
|
|
|
/** Whether to show tabs on special pages */
|
2019-08-01 16:18:18 +00:00
|
|
|
self::TABS_ON_SPECIALS => false,
|
2019-04-10 21:43:50 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* override an existing option or options with new values
|
|
|
|
* @param array $options
|
|
|
|
*/
|
|
|
|
public function setMultiple( array $options ) {
|
2019-07-31 20:47:27 +00:00
|
|
|
foreach ( $options as $option => $value ) {
|
|
|
|
if ( !array_key_exists( $option, $this->skinOptions ) ) {
|
|
|
|
throw new \OutOfBoundsException( "SkinOption $option is not defined" );
|
|
|
|
}
|
|
|
|
}
|
2019-04-10 21:43:50 +00:00
|
|
|
$this->skinOptions = array_merge( $this->skinOptions, $options );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-01 16:18:18 +00:00
|
|
|
* Return whether a skin option is truthy. Should be one of self:* constants
|
2019-04-10 21:43:50 +00:00
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function get( $key ) {
|
|
|
|
if ( !array_key_exists( $key, $this->skinOptions ) ) {
|
|
|
|
throw new \OutOfBoundsException( "SkinOption $key doesn't exist" );
|
|
|
|
}
|
|
|
|
return $this->skinOptions[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all skin options
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAll() {
|
|
|
|
return $this->skinOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether any of the skin options have been set
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasSkinOptions() {
|
|
|
|
foreach ( $this->skinOptions as $key => $val ) {
|
|
|
|
if ( $val ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|