artabro/wire/modules/Jquery/JqueryMagnific/JqueryMagnific.module
2024-08-27 11:35:37 +02:00

15 lines
507 B
Text

<?php namespace ProcessWire;
class JqueryMagnific extends ModuleJS {
public static function getModuleInfo() {
return array(
'title' => 'jQuery Magnific Popup',
'version' => '1.1.0',
'summary' => 'Provides lightbox capability for image galleries. Replacement for FancyBox. Uses Magnific Popup by @dimsemenov.',
'href' => 'https://github.com/dimsemenov/Magnific-Popup/'
);
}
// note ModuleJS automatically loads any JS or CSS files with the same basename as this module
}