2014-02-06 10:21:39 +00:00
|
|
|
<?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/>.
|
|
|
|
*
|
2014-02-07 06:08:59 +00:00
|
|
|
* This extension requires that the PageImages and TextExtracts
|
|
|
|
* extensions have also been installed.
|
|
|
|
*
|
2014-03-29 06:20:06 +00:00
|
|
|
* Install BetaFeatures if you don't want Popups to load for all users.
|
|
|
|
*
|
2014-02-06 10:21:39 +00:00
|
|
|
* @file
|
|
|
|
* @ingroup extensions
|
|
|
|
*/
|
|
|
|
|
2014-02-13 21:14:06 +00:00
|
|
|
$wgExtensionCredits['betafeatures'][] = array(
|
2014-02-06 10:21:39 +00:00
|
|
|
'author' => array( 'Prateek Saxena', 'Yair Rand' ),
|
|
|
|
'descriptionmsg' => 'popups-desc',
|
|
|
|
'name' => 'Popups',
|
|
|
|
'path' => __FILE__,
|
|
|
|
'url' => 'https://www.mediawiki.org/wiki/Extension:Popups',
|
|
|
|
);
|
|
|
|
|
2014-02-27 08:09:34 +00:00
|
|
|
$wgAutoloadClasses['PopupsHooks'] = __DIR__ . '/Popups.hooks.php';
|
2014-03-28 20:40:17 +00:00
|
|
|
$wgMessagesDirs['Popups'] = __DIR__ . '/i18n';
|
2014-02-27 08:09:34 +00:00
|
|
|
$wgExtensionMessagesFiles['Popups'] = __DIR__ . '/Popups.i18n.php';
|
|
|
|
|
|
|
|
$wgHooks['GetBetaFeaturePreferences'][] = 'PopupsHooks::getPreferences';
|
|
|
|
$wgHooks['BeforePageDisplay'][] = 'PopupsHooks::onBeforePageDisplay';
|
2014-06-11 04:34:49 +00:00
|
|
|
$wgHooks['ResourceLoaderTestModules'][] = 'PopupsHooks::onResourceLoaderTestModules';
|
2014-10-11 18:19:12 +00:00
|
|
|
$wgHooks['EventLoggingRegisterSchemas'][] = 'PopupsHooks::onEventLoggingRegisterSchemas';
|
|
|
|
$wgHooks[ 'ResourceLoaderRegisterModules' ][] = 'PopupsHooks::onResourceLoaderRegisterModules';
|