mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 07:43:47 +00:00
9c36435220
It should be possible to style the language alert without impacting the opt in action. Bug: T317899 Change-Id: Ifea7d476099ab3a09da20522380664b9ad5eceb3
42 lines
882 B
PHP
42 lines
882 B
PHP
<?php
|
|
namespace MediaWiki\Skins\Vector\Components;
|
|
|
|
use Html;
|
|
use Skin;
|
|
|
|
/**
|
|
* VectorComponentMainMenuActionLanguageSwitchAlert component
|
|
*/
|
|
class VectorComponentMainMenuActionLanguageSwitchAlert implements VectorComponent {
|
|
/** @var Skin */
|
|
private $skin;
|
|
|
|
/**
|
|
* @param Skin $skin
|
|
*/
|
|
public function __construct( Skin $skin ) {
|
|
$this->skin = $skin;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getTemplateData(): array {
|
|
$skin = $this->skin;
|
|
$languageSwitchAlert = [
|
|
'html-content' => Html::noticeBox(
|
|
$skin->msg( 'vector-language-redirect-to-top' )->parse(),
|
|
'vector-language-sidebar-alert'
|
|
),
|
|
];
|
|
$headingOptions = [
|
|
'heading' => $skin->msg( 'vector-languages' )->plain(),
|
|
];
|
|
|
|
$component = new VectorComponentMainMenuAction(
|
|
'lang-alert', $skin, $languageSwitchAlert, $headingOptions
|
|
);
|
|
return $component->getTemplateData();
|
|
}
|
|
}
|