mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 02:13:49 +00:00
d12308e38d
Bug: T187154 Change-Id: Ia78f963a08cec1490aaff462b9787f7a826bf62c
101 lines
2.8 KiB
PHP
101 lines
2.8 KiB
PHP
<?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.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
*/
|
|
namespace MediaWiki\Minerva\Menu\User;
|
|
|
|
use Hooks;
|
|
use MediaWiki\Minerva\Menu\Definitions;
|
|
use MediaWiki\Minerva\Menu\Entries\ProfileMenuEntry;
|
|
use MediaWiki\Minerva\Menu\Entries\SingleMenuEntry;
|
|
use MediaWiki\Minerva\Menu\Group;
|
|
use MessageLocalizer;
|
|
use User;
|
|
|
|
/**
|
|
* Logged-in, advanced Mobile Contributions user menu config generator.
|
|
*/
|
|
final class AdvancedUserMenuBuilder implements IUserMenuBuilder {
|
|
/**
|
|
* @var MessageLocalizer
|
|
*/
|
|
private $messageLocalizer;
|
|
|
|
/**
|
|
* @var User
|
|
*/
|
|
private $user;
|
|
|
|
/**
|
|
* @var Definitions
|
|
*/
|
|
private $definitions;
|
|
|
|
/**
|
|
* @param MessageLocalizer $messageLocalizer
|
|
* @param User $user
|
|
* @param Definitions $definitions A menu items definitions set
|
|
*/
|
|
public function __construct(
|
|
MessageLocalizer $messageLocalizer, User $user, Definitions $definitions
|
|
) {
|
|
$this->messageLocalizer = $messageLocalizer;
|
|
$this->user = $user;
|
|
$this->definitions = $definitions;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
* @param array $personalTools list of personal tools generated by
|
|
* SkinTemplate::getPersonalTools
|
|
* @return Group
|
|
*/
|
|
public function getGroup( array $personalTools ): Group {
|
|
$group = new Group( 'p-personal' );
|
|
$group->insertEntry( new ProfileMenuEntry( $this->user ) );
|
|
$talkPage = $this->user->getUserPage()->getTalkPageIfDefined();
|
|
if ( $talkPage ) {
|
|
$entry = SingleMenuEntry::create(
|
|
'userTalk',
|
|
$this->messageLocalizer->msg( 'mobile-frontend-user-page-talk' )->escaped(),
|
|
$talkPage->getLocalURL()
|
|
);
|
|
$entry->setIcon( 'userTalk', 'before' );
|
|
$group->insertEntry( $entry );
|
|
}
|
|
$sandbox = $personalTools['sandbox']['links'][0] ?? false;
|
|
|
|
if ( $sandbox ) {
|
|
$group->insertEntry( SingleMenuEntry::create(
|
|
'markup',
|
|
$sandbox['text'],
|
|
$sandbox['href']
|
|
) );
|
|
}
|
|
$this->definitions->insertWatchlistMenuItem( $group );
|
|
$this->definitions->insertContributionsMenuItem( $group );
|
|
if ( $this->user->isAnon() ) {
|
|
$this->definitions->insertLogInMenuItem( $group );
|
|
} else {
|
|
$this->definitions->insertLogOutMenuItem( $group );
|
|
}
|
|
Hooks::run( 'MobileMenu', [ 'user', &$group ] );
|
|
return $group;
|
|
}
|
|
}
|