mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-28 01:20:07 +00:00
33 lines
638 B
PHP
33 lines
638 B
PHP
|
<?php
|
||
|
namespace MediaWiki\Skins\Vector\Components;
|
||
|
|
||
|
/**
|
||
|
* VectorComponentPinnedContainer component
|
||
|
* To be used with PinnedContainer or UnpinnedContainer templates.
|
||
|
*/
|
||
|
class VectorComponentPinnedContainer implements VectorComponent {
|
||
|
/** @var string */
|
||
|
private $id;
|
||
|
/** @var bool */
|
||
|
private $isPinned;
|
||
|
|
||
|
/**
|
||
|
* @param string $id
|
||
|
* @param bool $isPinned
|
||
|
*/
|
||
|
public function __construct( string $id, bool $isPinned = true ) {
|
||
|
$this->id = $id;
|
||
|
$this->isPinned = $isPinned;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritDoc
|
||
|
*/
|
||
|
public function getTemplateData(): array {
|
||
|
return [
|
||
|
'id' => $this->id,
|
||
|
'is-pinned' => $this->isPinned,
|
||
|
];
|
||
|
}
|
||
|
}
|