2019-06-20 15:18:20 +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.
|
|
|
|
*/
|
|
|
|
|
2019-07-01 18:06:01 +00:00
|
|
|
namespace MediaWiki\Minerva\Menu\Entries;
|
2019-06-20 15:18:20 +00:00
|
|
|
|
|
|
|
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;
|
2019-06-24 17:59:11 +00:00
|
|
|
/**
|
|
|
|
* @var string An icon class generated via MinervaUI::iconClass()
|
|
|
|
*/
|
|
|
|
private $iconClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string A translatable label used as text and title
|
|
|
|
*/
|
|
|
|
private $label;
|
|
|
|
|
2019-06-20 15:18:20 +00:00
|
|
|
/**
|
|
|
|
* 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
|
2019-06-24 17:59:11 +00:00
|
|
|
* @param string $iconClass An icon class generated via MinervaUI::iconClass()
|
|
|
|
* @param string $label Menu entry label and title
|
2019-06-20 15:18:20 +00:00
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
Title $title,
|
|
|
|
$doesPageHaveLanguages,
|
2019-06-24 17:59:11 +00:00
|
|
|
MessageLocalizer $messageLocalizer,
|
|
|
|
$iconClass,
|
|
|
|
$label = 'mobile-frontend-language-article-heading'
|
2019-06-20 15:18:20 +00:00
|
|
|
) {
|
|
|
|
$this->title = $title;
|
|
|
|
$this->doesPageHaveLanguages = $doesPageHaveLanguages;
|
|
|
|
$this->messageLocalizer = $messageLocalizer;
|
2019-06-24 17:59:11 +00:00
|
|
|
$this->iconClass = $iconClass;
|
|
|
|
$this->label = $label;
|
2019-06-20 15:18:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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';
|
|
|
|
}
|
2019-06-24 17:59:11 +00:00
|
|
|
$msg = $this->messageLocalizer->msg( $this->label );
|
2019-06-20 15:18:20 +00:00
|
|
|
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'href' => $switcherLink,
|
2019-06-24 17:59:11 +00:00
|
|
|
'class' => $this->iconClass . $switcherClasses,
|
|
|
|
'text' => $msg,
|
2019-08-08 21:43:04 +00:00
|
|
|
'title' => $msg,
|
|
|
|
'data-event-name' => 'menu.languages'
|
2019-06-20 15:18:20 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|