mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
dee1c197b9
The Language icon is not useful on user pages as most probably there are no translated user pages, thus there is no need to show all-time disabled Language icon. If overflow menu is available, don't show Language switcher icon in toolbar, show it as first item in the overflow menu. Bug: T224735 Follow-Up: I46d58758356e870c408a74b2c087a42d6ad0ddea Change-Id: I05be9e6457257a1f2eb224ca9ec5808814bc9ed7
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.
|
|
*/
|
|
|
|
namespace MediaWiki\Minerva\Menu\Entries;
|
|
|
|
use MessageLocalizer;
|
|
use SpecialPage;
|
|
use Title;
|
|
|
|
/**
|
|
* Model for a menu entry that represents a language selector for current title
|
|
*/
|
|
class LanguageSelectorEntry implements IMenuEntry {
|
|
|
|
/**
|
|
* @var MessageLocalizer
|
|
*/
|
|
private $messageLocalizer;
|
|
/**
|
|
* @var Title
|
|
*/
|
|
private $title;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
private $doesPageHaveLanguages;
|
|
/**
|
|
* @var string An icon class generated via MinervaUI::iconClass()
|
|
*/
|
|
private $iconClass;
|
|
|
|
/**
|
|
* @var string A translatable label used as text and title
|
|
*/
|
|
private $label;
|
|
|
|
/**
|
|
* LanguageSelectorEntry constructor.
|
|
* @param Title $title Current Title
|
|
* @param bool $doesPageHaveLanguages Whether the page is also available in other
|
|
* languages or variants
|
|
* @param MessageLocalizer $messageLocalizer Used for translation texts
|
|
* @param string $iconClass An icon class generated via MinervaUI::iconClass()
|
|
* @param string $label Menu entry label and title
|
|
*/
|
|
public function __construct(
|
|
Title $title,
|
|
$doesPageHaveLanguages,
|
|
MessageLocalizer $messageLocalizer,
|
|
$iconClass,
|
|
$label = 'mobile-frontend-language-article-heading'
|
|
) {
|
|
$this->title = $title;
|
|
$this->doesPageHaveLanguages = $doesPageHaveLanguages;
|
|
$this->messageLocalizer = $messageLocalizer;
|
|
$this->iconClass = $iconClass;
|
|
$this->label = $label;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getName() {
|
|
return 'language-selector';
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getCSSClasses(): array {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getComponents(): array {
|
|
$switcherLink = false;
|
|
$switcherClasses = ' language-selector';
|
|
|
|
if ( $this->doesPageHaveLanguages ) {
|
|
$switcherLink = SpecialPage::getTitleFor(
|
|
'MobileLanguages',
|
|
$this->title
|
|
)->getLocalURL();
|
|
} else {
|
|
$switcherClasses .= ' disabled';
|
|
}
|
|
$msg = $this->messageLocalizer->msg( $this->label );
|
|
|
|
return [
|
|
[
|
|
'href' => $switcherLink,
|
|
'class' => $this->iconClass . $switcherClasses,
|
|
'text' => $msg,
|
|
'title' => $msg
|
|
]
|
|
|
|
];
|
|
}
|
|
}
|