. * * This extension requires that the PageImages and TextExtracts * extensions have also been installed. * * Install BetaFeatures if you don't want Popups to load for all users. * * @file * @ingroup extensions */ $wgExtensionCredits['betafeatures'][] = array( 'author' => array( 'Prateek Saxena', 'Yair Rand' ), 'descriptionmsg' => 'popups-desc', 'name' => 'Popups', 'path' => __FILE__, 'url' => 'https://www.mediawiki.org/wiki/Extension:Popups', ); $wgAutoloadClasses['PopupsHooks'] = __DIR__ . '/Popups.hooks.php'; $wgMessagesDirs['Popups'] = __DIR__ . '/i18n'; $wgExtensionMessagesFiles['Popups'] = __DIR__ . '/Popups.i18n.php'; $wgHooks['GetBetaFeaturePreferences'][] = 'PopupsHooks::getPreferences'; $wgHooks['BeforePageDisplay'][] = 'PopupsHooks::onBeforePageDisplay'; $wgHooks[ 'ResourceLoaderRegisterModules' ][] = function ( ResourceLoader &$resourceLoader ) { $moduleDependencies = array( 'mediawiki.api', 'mediawiki.jqueryMsg', 'moment', ); // If EventLogging is present, declare the schema module // and add it to the array of dependencies. if ( class_exists( 'ResourceLoaderSchemaModule' ) ) { $resourceLoader->register( "schema.Popups", array( 'class' => 'ResourceLoaderSchemaModule', 'schema' => 'Popups', 'revision' => 7536956, ) ); $moduleDependencies[] = "schema.Popups"; } $resourceLoader->register( "ext.popups", array( 'scripts' => array( 'resources/ext.popups.core.js', ), 'styles' => array( 'resources/ext.popups.core.less', 'resources/ext.popups.animation.less', ), 'dependencies' => $moduleDependencies, 'messages' => array( 'popups-last-edited', 'popups-redirects', ), 'remoteExtPath' => 'Popups', 'localBasePath' => dirname( __DIR__ ) . '/Popups', ) ); return true; };