mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 18:29:50 +00:00
204cdb2a74
Instead of using Title::quickUserCan() and User::isBlockedFrom() we have to use the PermissionManager. Bug: T221792 Change-Id: I5bffd859140f73a78fa2fc155b7b2343eefd3807
90 lines
3 KiB
PHP
90 lines
3 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
|
|
*/
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use MediaWiki\Minerva\Menu\Definitions;
|
|
use MediaWiki\Minerva\Menu\Main as MainMenu;
|
|
use MediaWiki\Minerva\Menu\PageActions as PageActionsMenu;
|
|
use MediaWiki\Minerva\SkinOptions;
|
|
use MediaWiki\Minerva\SkinUserPageHelper;
|
|
|
|
return [
|
|
'Minerva.ContentHandler' => function () {
|
|
return ContentHandler::getForTitle( RequestContext::getMain()->getTitle() );
|
|
},
|
|
'Minerva.Menu.MainDirector' => function ( MediaWikiServices $services ) {
|
|
$context = RequestContext::getMain();
|
|
/** @var SkinOptions $options */
|
|
$options = $services->getService( 'Minerva.SkinOptions' );
|
|
$showMobileOptions = $options->get( SkinOptions::OPTION_MOBILE_OPTIONS );
|
|
$user = $context->getUser();
|
|
$definitions = new Definitions( $context, $services->getSpecialPageFactory() );
|
|
$builder = $options->get( SkinOptions::OPTION_AMC ) ?
|
|
new MainMenu\AdvancedBuilder( $showMobileOptions, $user, $definitions ) :
|
|
new MainMenu\DefaultBuilder( $showMobileOptions, $user, $definitions );
|
|
|
|
return new MainMenu\Director( $builder );
|
|
},
|
|
'Minerva.Menu.PageActionsDirector' => function ( MediaWikiServices $services ) {
|
|
/**
|
|
* @var SkinOptions $skinOptions
|
|
* @var SkinMinerva $skin
|
|
* @var SkinUserPageHelper $userPageHelper
|
|
*/
|
|
$skinOptions = $services->getService( 'Minerva.SkinOptions' );
|
|
$context = RequestContext::getMain();
|
|
$skin = $context->getSkin();
|
|
$userPageHelper = $services->getService( 'Minerva.SkinUserPageHelper' );
|
|
$toolbarBuilder = new PageActionsMenu\ToolbarBuilder(
|
|
$skin,
|
|
$context->getTitle(),
|
|
$context->getUser(),
|
|
$context,
|
|
$services->getPermissionManager()
|
|
);
|
|
if ( $skinOptions->get( SkinOptions::OPTION_OVERFLOW_SUBMENU ) ) {
|
|
$overflowBuilder = $userPageHelper->isUserPage() ?
|
|
new PageActionsMenu\UserNamespaceOverflowBuilder(
|
|
$context,
|
|
$userPageHelper
|
|
) :
|
|
new PageActionsMenu\DefaultOverflowBuilder(
|
|
$context
|
|
);
|
|
} else {
|
|
$overflowBuilder = new PageActionsMenu\EmptyOverflowBuilder();
|
|
}
|
|
|
|
return new PageActionsMenu\PageActionsDirector(
|
|
$toolbarBuilder,
|
|
$overflowBuilder,
|
|
$context
|
|
);
|
|
},
|
|
|
|
'Minerva.SkinUserPageHelper' => function () {
|
|
return new SkinUserPageHelper( RequestContext::getMain()->getTitle() );
|
|
},
|
|
'Minerva.SkinOptions' => function () {
|
|
return new SkinOptions();
|
|
}
|
|
];
|