mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-24 07:34:11 +00:00
6b0057a521
It's not a feature flag because it disables whole extension as opposed to a particular feature. It would result in weird situations where the extension is present in Special:Version but does not work for no obvious reason. If an extension needs to be disabled on WMF, its registration file should not be included, as opposed to "feature flags". This, however, does not mean that I'm opposed to real feature flags:) Change-Id: I09bae50241057f727881f33d6f97f69cec7c0a10
54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of the MediaWiki extension Popups.
|
|
*
|
|
* Popups 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.
|
|
*
|
|
* Popups 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 Popups. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* This extension requires that the PageImages and TextExtracts
|
|
* extensions have also been installed.
|
|
*
|
|
* @file
|
|
* @ingroup extensions
|
|
*/
|
|
|
|
$wgExtensionCredits['other'][] = array(
|
|
'author' => array( 'Prateek Saxena', 'Yair Rand' ),
|
|
'descriptionmsg' => 'popups-desc',
|
|
'name' => 'Popups',
|
|
'path' => __FILE__,
|
|
'url' => 'https://www.mediawiki.org/wiki/Extension:Popups',
|
|
);
|
|
|
|
$localBasePath = dirname( __DIR__ ) . '/Popups';
|
|
$remoteExtPath = 'Popups';
|
|
|
|
$wgResourceModules = array_merge( $wgResourceModules, array(
|
|
"ext.popups" => array(
|
|
'scripts' => 'resources/ext.popups.core.js',
|
|
'styles' => array(
|
|
'resources/ext.popups.core.less',
|
|
'resources/ext.popups.animation.less',
|
|
),
|
|
'dependencies' => array(
|
|
'mediawiki.api',
|
|
),
|
|
'remoteExtPath' => $remoteExtPath,
|
|
'localBasePath' => $localBasePath,
|
|
),
|
|
) );
|
|
|
|
$wgAutoloadClasses['PopupsHooks'] = __DIR__ . '/Popups.hooks.php';
|
|
$wgExtensionMessagesFiles['Popups'] = __DIR__ . '/Popups.i18n.php';
|
|
$wgHooks['BeforePageDisplay'][] = 'PopupsHooks::onBeforePageDisplay';
|