mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
6c817e932f
- Register new feature for main menu pinned - Update UserPreferenceRequirement to optionally handle default config values - Add nav landmarks for the main menu Bug: T317900 Change-Id: I8fc6e0a79a1155d68afb9e33e5101a2a160dc4e5
116 lines
2.7 KiB
PHP
116 lines
2.7 KiB
PHP
<?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\Skins\Vector\FeatureManagement\Requirements;
|
|
|
|
use MediaWiki\Skins\Vector\FeatureManagement\Requirement;
|
|
use MediaWiki\User\UserOptionsLookup;
|
|
use Title;
|
|
use User;
|
|
|
|
/**
|
|
* @package MediaWiki\Skins\Vector\FeatureManagement\Requirements
|
|
*/
|
|
final class UserPreferenceRequirement implements Requirement {
|
|
|
|
/**
|
|
* @var User
|
|
*/
|
|
private $user;
|
|
|
|
/**
|
|
* @var UserOptionsLookup
|
|
*/
|
|
private $userOptionsLookup;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $optionName;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $requirementName;
|
|
|
|
/**
|
|
* @var Title|null
|
|
*/
|
|
private $title;
|
|
|
|
/**
|
|
* This constructor accepts all dependencies needed to determine whether
|
|
* the overridable config is enabled for the current user and request.
|
|
*
|
|
* @param User $user
|
|
* @param UserOptionsLookup $userOptionsLookup
|
|
* @param string $optionName The name of the user preference.
|
|
* @param string $requirementName The name of the requirement presented to FeatureManager.
|
|
* @param Title|null $title
|
|
*/
|
|
public function __construct(
|
|
User $user,
|
|
UserOptionsLookup $userOptionsLookup,
|
|
string $optionName,
|
|
string $requirementName,
|
|
$title = null
|
|
) {
|
|
$this->user = $user;
|
|
$this->userOptionsLookup = $userOptionsLookup;
|
|
$this->optionName = $optionName;
|
|
$this->requirementName = $requirementName;
|
|
$this->title = $title;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getName(): string {
|
|
return $this->requirementName;
|
|
}
|
|
|
|
/**
|
|
* Checks whether the user preference is enabled or not. Returns true if
|
|
* enabled AND title is not null.
|
|
*
|
|
* @internal
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isPreferenceEnabled() {
|
|
$user = $this->user;
|
|
$userOptionsLookup = $this->userOptionsLookup;
|
|
$isEnabled = $userOptionsLookup->getBoolOption(
|
|
$user,
|
|
$this->optionName
|
|
);
|
|
|
|
return $this->title && $isEnabled;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function isMet(): bool {
|
|
return $this->isPreferenceEnabled();
|
|
}
|
|
}
|