2013-08-07 08:59:08 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is part of the MediaWiki extension MultimediaViewer.
|
|
|
|
*
|
|
|
|
* MultimediaViewer 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.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is distributed in the hope that it will be useful,
|
2013-11-23 01:18:25 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2013-08-07 08:59:08 +00:00
|
|
|
* 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 MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup extensions
|
|
|
|
* @author Mark Holmquist <mtraceur@member.fsf.org>
|
|
|
|
* @copyright Copyright © 2013, Mark Holmquist
|
|
|
|
*/
|
|
|
|
|
|
|
|
class MultimediaViewerHooks {
|
2013-10-29 20:26:07 +00:00
|
|
|
/** Link to more information about this module */
|
|
|
|
protected static $infoLink = '//mediawiki.org/wiki/Special:MyLanguage/Multimedia/About_Media_Viewer';
|
|
|
|
|
|
|
|
/** Link to a page where this module can be discussed */
|
|
|
|
protected static $discussionLink = '//mediawiki.org/wiki/Special:MyLanguage/Talk:Multimedia/About_Media_Viewer';
|
2013-08-07 08:59:08 +00:00
|
|
|
|
2013-11-04 21:40:31 +00:00
|
|
|
/**
|
|
|
|
* Handler for all places where we add the modules
|
|
|
|
* Could be on article pages or on Category pages
|
2013-10-25 23:27:01 +00:00
|
|
|
* @param OutputPage $out
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-11-04 21:40:31 +00:00
|
|
|
protected static function getModules( &$out ) {
|
2013-10-25 23:27:01 +00:00
|
|
|
if ( class_exists( 'BetaFeatures')
|
|
|
|
&& !BetaFeatures::isFeatureEnabled( $out->getUser(), 'multimedia-viewer' ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
2013-11-04 21:40:31 +00:00
|
|
|
|
|
|
|
$out->addModules( array( 'ext.multimediaViewer' ) );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for BeforePageDisplay hook
|
|
|
|
* Add JavaScript to the page when an image is on it
|
|
|
|
* and the user has enabled the feature if BetaFeatures is installed
|
|
|
|
* @param OutputPage $out
|
|
|
|
* @param Skin $skin
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function getModulesForArticle( &$out, &$skin ) {
|
2013-10-25 23:27:01 +00:00
|
|
|
if ( count( $out->getFileSearchOptions() ) > 0 ) {
|
2013-11-04 21:40:31 +00:00
|
|
|
return self::getModules( $out );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for CategoryPageView hook
|
|
|
|
* Add JavaScript to the page if there are images in the category
|
|
|
|
* @param CategoryPage $catPage
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function getModulesForCategory( &$catPage ) {
|
|
|
|
$title = $catPage->getTitle();
|
|
|
|
$cat = Category::newFromTitle( $title );
|
|
|
|
if ( $cat->getFileCount() > 0 ) {
|
|
|
|
$out = $catPage->getContext()->getOutput();
|
|
|
|
return self::getModules( $out );
|
2013-08-07 08:59:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a beta preference to gate the feature
|
2013-10-29 20:26:07 +00:00
|
|
|
public static function getBetaPreferences( $user, &$prefs ) {
|
2013-08-07 08:59:08 +00:00
|
|
|
global $wgExtensionAssetsPath;
|
|
|
|
|
2013-11-25 22:51:31 +00:00
|
|
|
$dir = RequestContext::getMain()->getLanguage()->getDir();
|
|
|
|
|
2013-08-07 08:59:08 +00:00
|
|
|
$prefs['multimedia-viewer'] = array(
|
|
|
|
'label-message' => 'multimediaviewer-pref',
|
|
|
|
'desc-message' => 'multimediaviewer-pref-desc',
|
2013-10-29 20:26:07 +00:00
|
|
|
'info-link' => self::$infoLink,
|
|
|
|
'discussion-link' => self::$discussionLink,
|
2013-11-25 22:51:31 +00:00
|
|
|
'screenshot' => "$wgExtensionAssetsPath/MultimediaViewer/viewer-$dir.svg",
|
2013-08-07 08:59:08 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2013-10-29 20:26:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export variables used in both PHP and JS to keep DRY
|
|
|
|
* @param array $vars
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function resourceLoaderGetConfigVars( &$vars ) {
|
|
|
|
$vars['wgMultimediaViewer'] = array(
|
|
|
|
'infoLink' => self::$infoLink,
|
|
|
|
'discussionLink' => self::$discussionLink,
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-07 08:59:08 +00:00
|
|
|
}
|