Page MenuHomeWickedGov Phorge

VectorComponentMainMenuActionOptOut.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

VectorComponentMainMenuActionOptOut.php

<?php
namespace MediaWiki\Skins\Vector\Components;
use MediaWiki\SpecialPage\SpecialPage;
use Skin;
/**
* VectorComponentMainMenuActionOptOut component
*/
class VectorComponentMainMenuActionOptOut implements VectorComponent {
/** @var Skin */
private $skin;
/**
* T243281: Code used to track clicks to opt-out link.
*
* The "vct" substring is used to describe the newest "Vector" (non-legacy)
* feature. The "w" describes the web platform. The "1" describes the version
* of the feature.
*
* @see https://wikitech.wikimedia.org/wiki/Provenance
* @var string
*/
private const OPT_OUT_LINK_TRACKING_CODE = 'vctw1';
/**
* @param Skin $skin
*/
public function __construct( Skin $skin ) {
$this->skin = $skin;
}
/**
* @inheritDoc
*/
public function getTemplateData(): array {
$skin = $this->skin;
// Note: This data is also passed to legacy template where it is unused.
$optOutUrl = [
'text' => $skin->msg( 'vector-opt-out' )->text(),
'href' => SpecialPage::getTitleFor(
'Preferences',
false,
'mw-prefsection-rendering-skin'
)->getLinkURL( 'useskin=vector&wprov=' . self::OPT_OUT_LINK_TRACKING_CODE ),
'title' => $skin->msg( 'vector-opt-out-tooltip' )->text(),
'active' => false,
];
$htmlData = [
'link' => $optOutUrl,
];
$component = new VectorComponentMainMenuAction( 'opt-out', $skin, $htmlData, [] );
return $component->getTemplateData();
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 15:12 (3 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5b/23/7047ed0f66202be2439c59df903b
Default Alt Text
VectorComponentMainMenuActionOptOut.php (1 KB)

Event Timeline