mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 14:34:09 +00:00
03da361b97
- Refactor existing template data-related partials into CitizenComponent components - Re-implement user menu header as UserInfo - Add description text for anon and temp user in UserMenu --------- Co-authored-by: github-actions <github-actions@users.noreply.github.com>
40 lines
786 B
PHP
40 lines
786 B
PHP
<?php
|
|
|
|
declare( strict_types=1 );
|
|
|
|
namespace MediaWiki\Skins\Citizen\Components;
|
|
|
|
/**
|
|
* CitizenComponentMenuListItem component
|
|
*/
|
|
class CitizenComponentMenuListItem implements CitizenComponent {
|
|
/** @var CitizenComponentLink */
|
|
private $link;
|
|
/** @var string */
|
|
private $class;
|
|
/** @var string */
|
|
private $id;
|
|
|
|
/**
|
|
* @param CitizenComponentLink $link
|
|
* @param string $class
|
|
* @param string $id
|
|
*/
|
|
public function __construct( CitizenComponentLink $link, string $class = '', string $id = '' ) {
|
|
$this->link = $link;
|
|
$this->class = $class;
|
|
$this->id = $id;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getTemplateData(): array {
|
|
return [
|
|
'array-links' => $this->link->getTemplateData(),
|
|
'item-class' => $this->class,
|
|
'item-id' => $this->id,
|
|
];
|
|
}
|
|
}
|