mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
f1b2416fbf
* Add type hints where possible. * Add initialization values to properties where needed. * Remove @var block if redundant to type declaration. * Use single line /** @var type $var */ instead of multi line. * Add improvements to avoid Phan warnings. Change-Id: I8e391700dcbfbbcc88cceb589dc3a36fb8e3b357
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Minerva\Skins;
|
|
|
|
use MediaWiki\Request\WebRequest;
|
|
use MediaWiki\Skins\Vector\ConfigHelper;
|
|
use MediaWiki\Title\Title;
|
|
|
|
class FeaturesHelper {
|
|
|
|
/**
|
|
* Per the $options configuration (for use with $wgMinervaNightModeOptions)
|
|
* determine whether Night Mode should be disabled on the page.
|
|
* For the main page: Check the value of $options['exclude']['mainpage']
|
|
* Night Mode is disabled if:
|
|
* 1) The current namespace is listed in array $options['exclude']['namespaces']
|
|
* OR
|
|
* 2) A query string parameter matches one of the regex patterns in $exclusions['querystring'].
|
|
* OR
|
|
* 3) The canonical title matches one of the titles in $options['exclude']['pagetitles']
|
|
* For this functionality to work the Vector skin MUST be installed.
|
|
*
|
|
* @param array $options
|
|
* @param WebRequest $request
|
|
* @param Title|null $title
|
|
*
|
|
* @return bool
|
|
* @internal only for use inside tests.
|
|
*/
|
|
public function shouldDisableNightMode( array $options, WebRequest $request, Title $title = null ): bool {
|
|
return class_exists( ConfigHelper::class ) ?
|
|
ConfigHelper::shouldDisable( $options, $request, $title ) :
|
|
false;
|
|
}
|
|
}
|