2014-08-07 11:38:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Vector - Modern version of MonoBook with fresh look and many usability
|
|
|
|
* improvements.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
|
|
|
|
2019-04-27 23:07:20 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
/**
|
2018-01-30 23:56:42 +00:00
|
|
|
* QuickTemplate subclass for Vector
|
2014-08-07 11:38:34 +00:00
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
|
|
|
class VectorTemplate extends BaseTemplate {
|
|
|
|
|
2020-01-13 09:23:59 +00:00
|
|
|
/** @var TemplateParser */
|
|
|
|
private $templateParser;
|
|
|
|
|
|
|
|
/**
|
2020-01-16 21:11:54 +00:00
|
|
|
* @param TemplateParser $parser
|
2020-01-13 09:23:59 +00:00
|
|
|
*/
|
2020-01-16 21:11:54 +00:00
|
|
|
public function setTemplateParser( TemplateParser $parser ) {
|
|
|
|
$this->templateParser = $parser;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The template parser might be undefined. This function will check if it set first
|
|
|
|
*
|
|
|
|
* @return TemplateParser
|
|
|
|
*/
|
|
|
|
protected function getTemplateParser() {
|
|
|
|
if ( $this->templateParser === null ) {
|
|
|
|
throw new \LogicException(
|
|
|
|
'TemplateParser has to be set first via setTemplateParser method'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return $this->templateParser;
|
2020-01-13 09:23:59 +00:00
|
|
|
}
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
/**
|
2019-02-26 18:44:10 +00:00
|
|
|
* Outputs the entire contents of the HTML page
|
2014-08-07 11:38:34 +00:00
|
|
|
*/
|
|
|
|
public function execute() {
|
2020-02-28 20:53:44 +00:00
|
|
|
$contentNavigation = $this->get( 'content_navigation', [] );
|
|
|
|
$this->set( 'namespace_urls', $contentNavigation[ 'namespaces' ] );
|
|
|
|
$this->set( 'view_urls', $contentNavigation[ 'views' ] );
|
|
|
|
$this->set( 'action_urls', $contentNavigation[ 'actions' ] );
|
|
|
|
$this->set( 'variant_urls', $contentNavigation[ 'variants' ] );
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2017-07-26 17:15:27 +00:00
|
|
|
// Move the watch/unwatch star outside of the collapsed "actions" menu to the main "views" menu
|
2014-08-13 18:39:38 +00:00
|
|
|
if ( $this->config->get( 'VectorUseIconWatch' ) ) {
|
2019-04-27 23:07:20 +00:00
|
|
|
$mode = ( $this->getSkin()->getRelevantTitle()->isWatchable() &&
|
|
|
|
MediaWikiServices::getInstance()->getPermissionManager()->userHasRight(
|
|
|
|
$this->getSkin()->getUser(),
|
|
|
|
'viewmywatchlist'
|
|
|
|
) &&
|
|
|
|
MediaWikiServices::getInstance()->getWatchedItemStore()->isWatched(
|
|
|
|
$this->getSkin()->getUser(),
|
|
|
|
$this->getSkin()->getRelevantTitle()
|
|
|
|
)
|
|
|
|
) ? 'unwatch' : 'watch';
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2020-02-28 20:53:44 +00:00
|
|
|
$actionUrls = $this->get( 'action_urls', [] );
|
|
|
|
if ( array_key_exists( $mode, $actionUrls ) ) {
|
|
|
|
$viewUrls = $this->get( 'view_urls' );
|
|
|
|
$viewUrls[ $mode ] = $actionUrls[ $mode ];
|
|
|
|
unset( $actionUrls[ $mode ] );
|
|
|
|
$this->set( 'view_urls', $viewUrls );
|
|
|
|
$this->set( 'action_urls', $actionUrls );
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-08 21:12:40 +00:00
|
|
|
|
2020-01-16 22:11:53 +00:00
|
|
|
ob_start();
|
2020-01-24 11:50:21 +00:00
|
|
|
Hooks::run( 'VectorBeforeFooter', [], '1.35' );
|
2020-01-16 22:11:53 +00:00
|
|
|
$htmlHookVectorBeforeFooter = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
$tp = $this->getTemplateParser();
|
2020-03-06 22:53:04 +00:00
|
|
|
// Naming conventions for Mustache parameters.
|
|
|
|
//
|
|
|
|
// Value type (first segment):
|
2019-02-26 18:44:10 +00:00
|
|
|
// - Prefix "is" for boolean values.
|
2020-03-06 22:53:04 +00:00
|
|
|
// - Prefix "msg-" for interface message text.
|
|
|
|
// - Prefix "html-" for raw HTML.
|
|
|
|
// - Prefix "data-" for an array of template parameters that should be passed directly
|
2020-02-17 19:49:43 +00:00
|
|
|
// to a template partial.
|
2020-03-06 22:53:04 +00:00
|
|
|
// - Prefix "array-" for lists of any values.
|
|
|
|
//
|
|
|
|
// Source of value (first or second segment)
|
|
|
|
// - Segment "page-" for data relating to the current page (e.g. Title, WikiPage, or OutputPage).
|
|
|
|
// - Segment "hook-" for any thing generated from a hook.
|
|
|
|
// It should be followed by the name of the hook in hyphenated lowercase.
|
|
|
|
//
|
|
|
|
// Conditionally used values must use null to indicate absence (not false or '').
|
2019-02-26 18:44:10 +00:00
|
|
|
$params = [
|
|
|
|
'html-headelement' => $this->get( 'headelement', '' ),
|
|
|
|
'html-sitenotice' => $this->get( 'sitenotice', null ),
|
|
|
|
'html-indicators' => $this->getIndicators(),
|
|
|
|
'page-langcode' => $this->getSkin()->getTitle()->getPageViewLanguage()->getHtmlCode(),
|
2020-02-28 20:53:44 +00:00
|
|
|
'page-isarticle' => (bool)$this->get( 'isarticle' ),
|
2019-02-26 18:44:10 +00:00
|
|
|
|
2019-04-02 18:42:01 +00:00
|
|
|
// Remember that the string '0' is a valid title.
|
|
|
|
// From OutputPage::getPageTitle, via ::setPageTitle().
|
|
|
|
'html-title' => $this->get( 'title', '' ),
|
2015-06-08 21:12:40 +00:00
|
|
|
|
2019-02-26 18:44:10 +00:00
|
|
|
'html-prebodyhtml' => $this->get( 'prebodyhtml', '' ),
|
|
|
|
'msg-tagline' => $this->getMsg( 'tagline' )->text(),
|
|
|
|
// TODO: mediawiki/SkinTemplate should expose langCode and langDir properly.
|
|
|
|
'html-userlangattributes' => $this->get( 'userlangattributes', '' ),
|
|
|
|
// From OutputPage::getSubtitle()
|
|
|
|
'html-subtitle' => $this->get( 'subtitle', '' ),
|
2019-01-23 02:51:20 +00:00
|
|
|
|
2019-02-26 18:44:10 +00:00
|
|
|
// TODO: Use directly Skin::getUndeleteLink() directly.
|
|
|
|
// Always returns string, cast to null if empty.
|
|
|
|
'html-undelete' => $this->get( 'undelete', null ) ?: null,
|
2019-01-23 02:51:20 +00:00
|
|
|
|
2019-02-26 18:44:10 +00:00
|
|
|
// From Skin::getNewtalks(). Always returns string, cast to null if empty.
|
|
|
|
'html-newtalk' => $this->get( 'newtalk', '' ) ?: null,
|
2019-01-23 02:51:20 +00:00
|
|
|
|
2019-02-26 18:44:10 +00:00
|
|
|
'msg-jumptonavigation' => $this->getMsg( 'vector-jumptonavigation' )->text(),
|
|
|
|
'msg-jumptosearch' => $this->getMsg( 'vector-jumptosearch' )->text(),
|
|
|
|
|
|
|
|
// Result of OutputPage::addHTML calls
|
|
|
|
'html-bodycontent' => $this->get( 'bodycontent' ),
|
|
|
|
|
|
|
|
'html-printfooter' => $this->get( 'printfooter', null ),
|
|
|
|
'html-catlinks' => $this->get( 'catlinks', '' ),
|
|
|
|
'html-dataAfterContent' => $this->get( 'dataAfterContent', '' ),
|
|
|
|
// From MWDebug::getHTMLDebugLog (when $wgShowDebug is enabled)
|
|
|
|
'html-debuglog' => $this->get( 'debughtml', '' ),
|
|
|
|
// From BaseTemplate::getTrail (handles bottom JavaScript)
|
2020-01-16 21:52:56 +00:00
|
|
|
'html-printtail' => $this->getTrail() . '</body></html>',
|
2020-02-17 19:49:43 +00:00
|
|
|
'data-footer' => [
|
2020-01-16 22:11:53 +00:00
|
|
|
'html-userlangattributes' => $this->get( 'userlangattributes', '' ),
|
|
|
|
'html-hook-vector-before-footer' => $htmlHookVectorBeforeFooter,
|
|
|
|
'array-footer-rows' => $this->getTemplateFooterRows(),
|
2020-02-17 19:49:43 +00:00
|
|
|
],
|
|
|
|
'data-navigation' => [
|
2020-01-14 18:47:30 +00:00
|
|
|
'html-navigation-heading' => $this->getMsg( 'navigation-heading' ),
|
2020-02-17 19:49:43 +00:00
|
|
|
'data-personal-menu' => $this->buildPersonalProps(),
|
|
|
|
'data-namespace-tabs' => $this->buildNamespacesProps(),
|
|
|
|
'data-variants' => $this->buildVariantsProps(),
|
|
|
|
'data-page-actions' => $this->buildViewsProps(),
|
|
|
|
'data-page-actions-more' => $this->buildActionsProps(),
|
|
|
|
'data-search-box' => $this->buildSearchProps(),
|
|
|
|
'data-sidebar' => [
|
2020-02-14 20:33:54 +00:00
|
|
|
'html-logo-attributes' => Xml::expandAttributes(
|
|
|
|
Linker::tooltipAndAccesskeyAttribs( 'p-logo' ) + [
|
|
|
|
'class' => 'mw-wiki-logo',
|
|
|
|
'href' => Skin::makeMainPageUrl(),
|
|
|
|
]
|
2020-02-17 19:49:43 +00:00
|
|
|
)
|
|
|
|
] + $this->buildSidebarProps( $this->get( 'sidebar', [] ) ),
|
|
|
|
],
|
2019-02-26 18:44:10 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// Prepare and output the HTML response
|
2020-02-14 20:33:54 +00:00
|
|
|
echo $tp->processTemplate( 'index', $params );
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
|
2020-01-16 22:11:53 +00:00
|
|
|
/**
|
|
|
|
* Get rows that make up the footer
|
|
|
|
* @return array for use in Mustache template describing the footer elements.
|
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function getTemplateFooterRows() : array {
|
2020-01-16 22:11:53 +00:00
|
|
|
$footerRows = [];
|
|
|
|
foreach ( $this->getFooterLinks() as $category => $links ) {
|
|
|
|
$items = [];
|
|
|
|
$rowId = "footer-$category";
|
|
|
|
|
|
|
|
foreach ( $links as $link ) {
|
|
|
|
$items[] = [
|
|
|
|
'id' => "$rowId-$link",
|
|
|
|
'html' => $this->get( $link, '' ),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$footerRows[] = [
|
|
|
|
'id' => $rowId,
|
|
|
|
'className' => '',
|
|
|
|
'array-items' => $items
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
// If footer icons are enabled append to the end of the rows
|
|
|
|
$footerIcons = $this->getFooterIcons( 'icononly' );
|
|
|
|
if ( count( $footerIcons ) > 0 ) {
|
|
|
|
$items = [];
|
|
|
|
foreach ( $footerIcons as $blockName => $blockIcons ) {
|
|
|
|
$html = '';
|
|
|
|
foreach ( $blockIcons as $icon ) {
|
|
|
|
$html .= $this->getSkin()->makeFooterIcon( $icon );
|
|
|
|
}
|
|
|
|
$items[] = [
|
|
|
|
'id' => 'footer-' . htmlspecialchars( $blockName ) . 'ico',
|
|
|
|
'html' => $html,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$footerRows[] = [
|
|
|
|
'id' => 'footer-icons',
|
|
|
|
'className' => 'noprint',
|
|
|
|
'array-items' => $items,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $footerRows;
|
|
|
|
}
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
/**
|
|
|
|
* Render a series of portals
|
|
|
|
*
|
|
|
|
* @param array $portals
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2014-08-07 11:38:34 +00:00
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function buildSidebarProps( array $portals ) : array {
|
|
|
|
$props = [];
|
2014-08-07 11:38:34 +00:00
|
|
|
// Force the rendering of the following portals
|
|
|
|
if ( !isset( $portals['TOOLBOX'] ) ) {
|
|
|
|
$portals['TOOLBOX'] = true;
|
|
|
|
}
|
|
|
|
if ( !isset( $portals['LANGUAGES'] ) ) {
|
|
|
|
$portals['LANGUAGES'] = true;
|
|
|
|
}
|
|
|
|
// Render portals
|
|
|
|
foreach ( $portals as $name => $content ) {
|
|
|
|
if ( $content === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-01-10 20:38:46 +00:00
|
|
|
// Numeric strings gets an integer when set as key, cast back - T73639
|
|
|
|
$name = (string)$name;
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
switch ( $name ) {
|
|
|
|
case 'SEARCH':
|
|
|
|
break;
|
|
|
|
case 'TOOLBOX':
|
2020-02-14 20:33:54 +00:00
|
|
|
$portal = $this->buildPortalProps( 'tb', $this->getToolbox(), 'toolbox',
|
|
|
|
'SkinTemplateToolboxEnd' );
|
2020-01-14 18:47:30 +00:00
|
|
|
ob_start();
|
2020-01-24 11:50:21 +00:00
|
|
|
Hooks::run( 'VectorAfterToolbox', [], '1.35' );
|
2020-02-14 20:33:54 +00:00
|
|
|
$props[] = $portal + [
|
|
|
|
'html-hook-vector-after-toolbox' => ob_get_clean(),
|
|
|
|
];
|
2014-08-07 11:38:34 +00:00
|
|
|
break;
|
|
|
|
case 'LANGUAGES':
|
2020-02-28 20:53:44 +00:00
|
|
|
if ( $this->get( 'language_urls' ) !== false ) {
|
2020-02-14 20:33:54 +00:00
|
|
|
$props[] = $this->buildPortalProps(
|
2020-02-28 20:53:44 +00:00
|
|
|
'lang', $this->get( 'language_urls' ), 'otherlanguages'
|
2020-01-14 18:47:30 +00:00
|
|
|
);
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2020-02-14 20:33:54 +00:00
|
|
|
$props[] = $this->buildPortalProps( $name, $content );
|
2014-08-07 11:38:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-03-11 18:58:05 +00:00
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return [
|
2020-03-11 18:58:05 +00:00
|
|
|
'array-portals-rest' => array_slice( $props, 1 ),
|
|
|
|
'array-portals-first' => $props[0] ?? null,
|
2020-02-14 20:33:54 +00:00
|
|
|
];
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $name
|
2018-01-30 23:59:35 +00:00
|
|
|
* @param array|string $content
|
2014-08-07 11:38:34 +00:00
|
|
|
* @param null|string $msg
|
|
|
|
* @param null|string|array $hook
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2014-08-07 11:38:34 +00:00
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function buildPortalProps( $name, $content, $msg = null, $hook = null ) : array {
|
2014-08-07 11:38:34 +00:00
|
|
|
if ( $msg === null ) {
|
|
|
|
$msg = $name;
|
|
|
|
}
|
2020-01-10 15:00:54 +00:00
|
|
|
|
2018-06-12 14:39:57 +00:00
|
|
|
$msgObj = $this->getMsg( $msg );
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2020-01-10 15:00:54 +00:00
|
|
|
$props = [
|
|
|
|
'portal-id' => "p-$name",
|
|
|
|
'html-tooltip' => Linker::tooltip( 'p-' . $name ),
|
|
|
|
'msg-label' => $msgObj->exists() ? $msgObj->text() : $msg,
|
|
|
|
'msg-label-id' => "p-$name-label",
|
2020-02-28 20:53:44 +00:00
|
|
|
'html-userlangattributes' => $this->get( 'userlangattributes', '' ),
|
2020-01-10 15:00:54 +00:00
|
|
|
'html-portal-content' => '',
|
|
|
|
'html-after-portal' => $this->getAfterPortlet( $name ),
|
|
|
|
];
|
|
|
|
|
|
|
|
if ( is_array( $content ) ) {
|
|
|
|
$props['html-portal-content'] .= '<ul>';
|
|
|
|
foreach ( $content as $key => $val ) {
|
|
|
|
$props['html-portal-content'] .= $this->makeListItem( $key, $val );
|
|
|
|
}
|
|
|
|
if ( $hook !== null ) {
|
|
|
|
// Avoid PHP 7.1 warning
|
|
|
|
$skin = $this;
|
|
|
|
ob_start();
|
|
|
|
Hooks::run( $hook, [ &$skin, true ] );
|
2020-01-14 22:35:50 +00:00
|
|
|
$props['html-portal-content'] .= ob_get_contents();
|
2020-01-10 15:00:54 +00:00
|
|
|
ob_end_clean();
|
|
|
|
}
|
|
|
|
$props['html-portal-content'] .= '</ul>';
|
|
|
|
} else {
|
|
|
|
// Allow raw HTML block to be defined by extensions
|
|
|
|
$props['html-portal-content'] = $content;
|
|
|
|
}
|
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return $props;
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
|
2017-07-26 17:15:27 +00:00
|
|
|
/**
|
2017-09-09 10:03:21 +00:00
|
|
|
* @inheritDoc
|
2017-07-26 17:15:27 +00:00
|
|
|
*/
|
|
|
|
public function makeListItem( $key, $item, $options = [] ) {
|
|
|
|
// For fancy styling of watch/unwatch star
|
|
|
|
if (
|
|
|
|
$this->config->get( 'VectorUseIconWatch' )
|
|
|
|
&& ( $key === 'watch' || $key === 'unwatch' )
|
|
|
|
) {
|
2019-12-22 18:38:53 +00:00
|
|
|
if ( !isset( $item['class'] ) ) {
|
|
|
|
$item['class'] = '';
|
|
|
|
}
|
2017-07-26 17:15:27 +00:00
|
|
|
$item['class'] = rtrim( 'icon ' . $item['class'], ' ' );
|
|
|
|
$item['primary'] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add CSS class 'collapsible' to links which are not marked as "primary"
|
|
|
|
if (
|
2017-07-31 15:11:29 +00:00
|
|
|
isset( $options['vector-collapsible'] ) && $options['vector-collapsible'] ) {
|
2019-12-22 18:38:53 +00:00
|
|
|
if ( !isset( $item['class'] ) ) {
|
|
|
|
$item['class'] = '';
|
|
|
|
}
|
2017-07-26 17:15:27 +00:00
|
|
|
$item['class'] = rtrim( 'collapsible ' . $item['class'], ' ' );
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::makeListItem( $key, $item, $options );
|
|
|
|
}
|
2019-11-18 20:23:48 +00:00
|
|
|
|
2020-01-14 18:47:30 +00:00
|
|
|
/**
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2020-01-14 18:47:30 +00:00
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function buildNamespacesProps() : array {
|
2019-12-03 13:02:11 +00:00
|
|
|
$props = [
|
|
|
|
'tabs-id' => 'p-namespaces',
|
2020-02-28 20:53:44 +00:00
|
|
|
'empty-portlet' => ( count( $this->get( 'namespace_urls', [] ) ) == 0 ) ? 'emptyPortlet' : '',
|
2019-12-03 13:02:11 +00:00
|
|
|
'label-id' => 'p-namespaces-label',
|
|
|
|
'msg-label' => $this->getMsg( 'namespaces' )->text(),
|
2020-02-28 20:53:44 +00:00
|
|
|
'html-userlangattributes' => $this->get( 'userlangattributes', '' ),
|
2019-12-03 13:02:11 +00:00
|
|
|
'html-items' => '',
|
|
|
|
];
|
|
|
|
|
2020-02-28 20:53:44 +00:00
|
|
|
foreach ( $this->get( 'namespace_urls', [] ) as $key => $item ) {
|
2019-12-03 13:02:11 +00:00
|
|
|
$props[ 'html-items' ] .= $this->makeListItem( $key, $item );
|
2020-01-13 06:06:44 +00:00
|
|
|
}
|
2019-12-03 13:02:11 +00:00
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return $props;
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:47:30 +00:00
|
|
|
/**
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2020-01-14 18:47:30 +00:00
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function buildVariantsProps() : array {
|
2020-01-08 13:47:25 +00:00
|
|
|
$props = [
|
2020-02-28 20:53:44 +00:00
|
|
|
'empty-portlet' => ( count( $this->get( 'variant_urls', [] ) ) == 0 ) ? 'emptyPortlet' : '',
|
2020-01-08 13:47:25 +00:00
|
|
|
'menu-id' => 'p-variants',
|
|
|
|
'menu-label-id' => 'p-variants-label',
|
|
|
|
'msg-label' => $this->getMsg( 'variants' )->text(),
|
|
|
|
'html-items' => '',
|
|
|
|
];
|
|
|
|
|
|
|
|
// Replace the label with the name of currently chosen variant, if any
|
2020-02-28 20:53:44 +00:00
|
|
|
$variantUrls = $this->get( 'variant_urls', [] );
|
|
|
|
foreach ( $variantUrls as $item ) {
|
2020-01-08 13:47:25 +00:00
|
|
|
if ( isset( $item['class'] ) && stripos( $item['class'], 'selected' ) !== false ) {
|
|
|
|
$props['msg-label'] = $item['text'];
|
|
|
|
break;
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
2020-01-08 13:47:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-28 20:53:44 +00:00
|
|
|
foreach ( $variantUrls as $key => $item ) {
|
2020-01-08 13:47:25 +00:00
|
|
|
$props['html-items'] .= $this->makeListItem( $key, $item );
|
|
|
|
}
|
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return $props;
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:47:30 +00:00
|
|
|
/**
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2020-01-14 18:47:30 +00:00
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function buildViewsProps() : array {
|
2019-12-03 13:02:11 +00:00
|
|
|
$props = [
|
|
|
|
'tabs-id' => 'p-views',
|
2020-02-28 20:53:44 +00:00
|
|
|
'empty-portlet' => ( count( $this->get( 'view_urls', [] ) ) == 0 ) ? 'emptyPortlet' : '',
|
2019-12-03 13:02:11 +00:00
|
|
|
'label-id' => 'p-views-label',
|
|
|
|
'msg-label' => $this->getMsg( 'views' )->text(),
|
2020-02-28 20:53:44 +00:00
|
|
|
'html-userlangattributes' => $this->get( 'userlangattributes', '' ),
|
2019-12-03 13:02:11 +00:00
|
|
|
'html-items' => '',
|
|
|
|
];
|
2020-02-28 20:53:44 +00:00
|
|
|
$viewUrls = $this->get( 'view_urls', [] );
|
|
|
|
foreach ( $viewUrls as $key => $item ) {
|
2019-12-03 13:02:11 +00:00
|
|
|
$props[ 'html-items' ] .= $this->makeListItem( $key, $item, [
|
|
|
|
'vector-collapsible' => true,
|
|
|
|
] );
|
2020-01-13 06:06:44 +00:00
|
|
|
}
|
2019-12-03 13:02:11 +00:00
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return $props;
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:47:30 +00:00
|
|
|
/**
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2020-01-14 18:47:30 +00:00
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function buildActionsProps() : array {
|
2020-01-08 13:47:25 +00:00
|
|
|
$props = [
|
2020-02-28 20:53:44 +00:00
|
|
|
'empty-portlet' => ( count( $this->get( 'action_urls', [] ) ) == 0 ) ? 'emptyPortlet' : '',
|
2020-01-08 13:47:25 +00:00
|
|
|
'msg-label' => $this->getMsg( 'vector-more-actions' )->text(),
|
|
|
|
'menu-id' => 'p-cactions',
|
|
|
|
'menu-label-id' => 'p-cactions-label',
|
2020-02-28 20:53:44 +00:00
|
|
|
'html-userlangattributes' => $this->get( 'userlangattributes', '' ),
|
2020-01-08 13:47:25 +00:00
|
|
|
'html-items' => '',
|
|
|
|
];
|
|
|
|
|
2020-02-28 20:53:44 +00:00
|
|
|
$actionUrls = $this->get( 'action_urls', [] );
|
|
|
|
foreach ( $actionUrls as $key => $item ) {
|
2020-01-08 13:47:25 +00:00
|
|
|
$props['html-items'] .= $this->makeListItem( $key, $item );
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
2020-01-08 13:47:25 +00:00
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return $props;
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:47:30 +00:00
|
|
|
/**
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2020-01-14 18:47:30 +00:00
|
|
|
*/
|
2020-02-14 20:33:54 +00:00
|
|
|
private function buildPersonalProps() : array {
|
2020-01-09 10:59:09 +00:00
|
|
|
$personalTools = $this->getPersonalTools();
|
|
|
|
$props = [
|
2020-02-28 20:53:44 +00:00
|
|
|
'empty-portlet' => ( count( $this->get( 'personal_urls', [] ) ) == 0 ) ? 'emptyPortlet' : '',
|
2020-01-09 10:59:09 +00:00
|
|
|
'msg-label' => $this->getMsg( 'personaltools' )->text(),
|
2020-02-28 20:53:44 +00:00
|
|
|
'html-userlangattributes' => $this->get( 'userlangattributes', '' ),
|
2020-01-09 10:59:09 +00:00
|
|
|
'html-loggedin' => '',
|
|
|
|
'html-personal-tools' => '',
|
|
|
|
'html-lang-selector' => '',
|
2019-11-18 20:23:48 +00:00
|
|
|
|
2020-01-09 10:59:09 +00:00
|
|
|
];
|
2019-11-18 20:23:48 +00:00
|
|
|
|
2020-01-09 10:59:09 +00:00
|
|
|
if ( !$this->getSkin()->getUser()->isLoggedIn() && User::groupHasPermission( '*', 'edit' ) ) {
|
|
|
|
$props['html-loggedin'] =
|
|
|
|
Html::element( 'li',
|
|
|
|
[ 'id' => 'pt-anonuserpage' ],
|
|
|
|
$this->getMsg( 'notloggedin' )->text()
|
|
|
|
);
|
2020-01-13 06:06:44 +00:00
|
|
|
}
|
2019-11-18 20:23:48 +00:00
|
|
|
|
2020-01-09 10:59:09 +00:00
|
|
|
if ( array_key_exists( 'uls', $personalTools ) ) {
|
|
|
|
$props['html-lang-selector'] = $this->makeListItem( 'uls', $personalTools[ 'uls' ] );
|
|
|
|
unset( $personalTools[ 'uls' ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( $personalTools as $key => $item ) {
|
|
|
|
$props['html-personal-tools'] .= $this->makeListItem( $key, $item );
|
|
|
|
}
|
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return $props;
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function buildSearchProps() : array {
|
2019-11-20 19:43:07 +00:00
|
|
|
$props = [
|
2020-02-28 20:53:44 +00:00
|
|
|
'searchHeaderAttrsHTML' => $this->get( 'userlangattributes', '' ),
|
|
|
|
'searchActionURL' => $this->get( 'wgScript', '' ),
|
2019-11-20 19:43:07 +00:00
|
|
|
'searchDivID' => $this->config->get( 'VectorUseSimpleSearch' ) ? 'simpleSearch' : '',
|
|
|
|
'searchInputHTML' => $this->makeSearchInput( [ 'id' => 'searchInput' ] ),
|
2020-02-28 20:53:44 +00:00
|
|
|
'titleHTML' => Html::hidden( 'title', $this->get( 'searchtitle', null ) ),
|
2019-11-20 19:43:07 +00:00
|
|
|
'fallbackSearchButtonHTML' => $this->makeSearchButton(
|
|
|
|
'fulltext',
|
|
|
|
[ 'id' => 'mw-searchButton', 'class' => 'searchButton mw-fallbackSearchButton' ]
|
|
|
|
),
|
|
|
|
'searchButtonHTML' => $this->makeSearchButton(
|
|
|
|
'go',
|
|
|
|
[ 'id' => 'searchButton', 'class' => 'searchButton' ]
|
|
|
|
),
|
|
|
|
'searchInputLabel' => $this->getMsg( 'search' )
|
|
|
|
];
|
2020-02-14 20:33:54 +00:00
|
|
|
return $props;
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|