mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 11:13:34 +00:00
666ebaae96
Adjust the behaviour so the existence of an icon is all that is needed to populate this menu. This will allow discussion tools to extend the menu with their own item(s) Depends-On: If2972da4456705f4a2f0cea90e73d0207a36a306 Depends-On: Ia9a9a08c68be652c16692db30e0efbe02fbfba0d Depends-On: I2b85b9ac6997d07ed4ff995693f083d0ad1216dc Bug: T332730 Change-Id: Ifd10da690a33e7fc5790a7b444b62fbfd1b95d98
101 lines
2.9 KiB
PHP
101 lines
2.9 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\PageActions;
|
|
|
|
use MediaWiki\Minerva\Menu\Entries\IMenuEntry;
|
|
use MediaWiki\Minerva\Menu\Entries\SingleMenuEntry;
|
|
use MediaWiki\Minerva\Menu\Group;
|
|
use MediaWiki\Minerva\Permissions\IMinervaPagePermissions;
|
|
use MessageLocalizer;
|
|
|
|
class DefaultOverflowBuilder implements IOverflowBuilder {
|
|
|
|
/**
|
|
* @var MessageLocalizer
|
|
*/
|
|
private $messageLocalizer;
|
|
|
|
/**
|
|
* @var IMinervaPagePermissions
|
|
*/
|
|
private $permissions;
|
|
|
|
/**
|
|
* Initialize Default overflow menu Group
|
|
*
|
|
* @param MessageLocalizer $messageLocalizer
|
|
* @param IMinervaPagePermissions $permissions Minerva permissions system
|
|
*/
|
|
public function __construct(
|
|
MessageLocalizer $messageLocalizer,
|
|
IMinervaPagePermissions $permissions
|
|
) {
|
|
$this->messageLocalizer = $messageLocalizer;
|
|
$this->permissions = $permissions;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getGroup( array $toolbox, array $actions ): Group {
|
|
$group = new Group( 'p-tb' );
|
|
|
|
// watch icon appears in page actions rather than here.
|
|
$combinedMenu = array_merge( $toolbox, $actions );
|
|
unset( $combinedMenu[ 'watch' ] );
|
|
unset( $combinedMenu[ 'unwatch' ] );
|
|
foreach ( $combinedMenu as $key => $definition ) {
|
|
$icon = $definition['icon'] ?? null;
|
|
// Only menu items with icons can be displayed here.
|
|
if ( $icon ) {
|
|
$group->insertEntry(
|
|
$this->build( $key, $icon, $key, $combinedMenu )
|
|
);
|
|
}
|
|
}
|
|
return $group;
|
|
}
|
|
|
|
/**
|
|
* Build the single menu entry
|
|
*
|
|
* @param string $name
|
|
* @param string $icon WikimediaUI icon name.
|
|
* @param string $toolboxIdx
|
|
* @param array $toolbox An array of common toolbox items from the sidebar menu
|
|
* @return IMenuEntry|null
|
|
*/
|
|
private function build( $name, $icon, $toolboxIdx, array $toolbox ) {
|
|
$href = $toolbox[$toolboxIdx]['href'] ?? null;
|
|
$minervaMsg = $this->messageLocalizer->msg( 'minerva-page-actions-' . $name );
|
|
$originalMsg = $toolbox[$toolboxIdx]['text'] ??
|
|
$this->messageLocalizer->msg( $toolboxIdx )->text();
|
|
|
|
return $href ?
|
|
SingleMenuEntry::create(
|
|
'page-actions-overflow-' . $name,
|
|
$originalMsg,
|
|
$href
|
|
)->setIcon( $icon, 'before' )
|
|
->trackClicks( $name ) : null;
|
|
}
|
|
}
|