mediawiki-extensions-Multim.../MultimediaViewer.php
Mark Holmquist a66be06ae9 Add creation time to list
Fallback to upload time for now.

Helps to have:

* core
:* I77303d8e535fc1c42e14cfb853814e5c434a81ec
* CommonsMetadata
:* I5e6bc45f9751641e16426231dabcc8277b86fee0

Change-Id: I822b48cebbace51cd8f68adc45a68a1c93ec29db
2013-10-24 15:21:17 -07:00

95 lines
2.6 KiB
PHP

<?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,
* 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 MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
*
* @file
* @ingroup extensions
* @author Mark Holmquist <mtraceur@member.fsf.org>
* @copyright Copyright © 2013, Mark Holmquist
*/
$moduleInfo = array(
'localBasePath' => __DIR__,
'remoteExtPath' => 'MultimediaViewer',
);
$wgExtensionMessagesFiles['MultimediaViewer'] = __DIR__ . '/MultimediaViewer.i18n.php';
$wgResourceModules['multilightbox.interface'] = array_merge( array(
'scripts' => array(
'js/multilightbox/lightboxinterface.js',
),
'styles' => array(
'css/multilightbox.css',
),
), $moduleInfo );
$wgResourceModules['multilightbox.image'] = array_merge( array(
'scripts' => array(
'js/multilightbox/lightboximage.js',
),
), $moduleInfo );
$wgResourceModules['multilightbox'] = array_merge( array(
'scripts' => array(
'js/multilightbox/multilightbox.js',
),
'dependencies' => array(
'multilightbox.interface',
),
), $moduleInfo );
$wgResourceModules['ext.multimediaViewer'] = array_merge( array(
'scripts' => array(
'js/ext.multimediaViewer.js',
),
'styles' => array(
'css/ext.multimediaViewer.css',
),
'dependencies' => array(
'multilightbox',
'multilightbox.image',
'mediawiki.Title',
),
'messages' => array(
'multimediaviewer-file-page',
'multimediaviewer-repository',
'multimediaviewer-datetime-created',
'multimediaviewer-datetime-uploaded',
),
), $moduleInfo );
$wgAutoloadClasses['MultimediaViewerHooks'] = __DIR__ . '/MultimediaViewerHooks.php';
$wgHooks['GetBetaFeaturePreferences'][] = 'MultimediaViewerHooks::getBetaPreferences';
$wgHooks['BeforePageDisplay'][] = 'MultimediaViewerHooks::getModules';
$wgExtensionCredits['other'][] = array(
'path' => __FILE__,
'name' => 'MultimediaViewer',
'descriptionmsg' => 'multimediaviewer-desc',
'version' => '0.1',
'author' => array(
'MarkTraceur (Mark Holmquist)',
),
'url' => 'https://mediawiki.org/wiki/Extension:MultimediaViewer',
);