Extension:LightboxThumbs
From MediaWiki.org
|
Release status: beta |
|||
|---|---|---|---|
| Implementation | Skin, User interface | ||
| Description | Displays full-size images with Lightbox 2 when clicking on thumbnails. | ||
| Author(s) | AlxndrTalk | ||
| Last Version | 0.1.3 (12 May 2009) | ||
| MediaWiki | 1.11-1.13 | ||
| License | CC BY-NC 3 | ||
| Download | LightboxThumbs.php | ||
| Example | Oberwiki's new images | ||
|
|||
|
check usage (experimental) |
|||
Contents |
[edit] Description
LightboxThumbs incorporates Lokesh Dhakar's fullsize image viewer Lightbox 2 into MediaWiki's thumbnails and image galleries.
When a user clicks on a thumbnailed image or an image in a gallery, the page darkens and the image is displayed full-size "on top of" the page. A caption below the image includes the image's title and a link to its description page, along with the caption on the thumbnail, if any. Clicking anywhere off the image returns everything to normal.
Images in galleries are treated as being part of a slideshow, and have "previous" and "next" images.
[edit] Bugs
- Very large images may take over your screen! That is, it doesn't do any resizing.
- If there are multiple galleries on one page, they are treated as being part of one big slideshow.
- May not work with images that have slashes in the name.
- v0.1.3 does not work on versions of MediaWiki before 1.10 (or thereabouts). Try v0.1.2.
[edit] Caveat ūsor
This was originally developed on an installation of 1.11 with an old custom skin and a bunch of extensions and a lot of general hackery. Unforeseen behavior is a very real possibility.
That said, let me know and I'll try to help fix anything that goes wrong.
[edit] Props
Thanks to Piotr, Timmy, and Georges for helping me debug and test new versions of this extension.
[edit] Installation
- Copy LightboxThumbs.php and save into your extensions/ directory.
- Download Lokesh Dhakar's Lightbox 2 and place somewhere on your server.
- Rename lightbox2 directory to lightbox and move to the extensions directory.*
- Edit lightbox.js: change fileLoadingImage and fileBottomNavCloseImage so they're indicating where the images actually are.*
- Edit LocalSettings.php:
- Add
$lightboxThumbsFilesDir = '/w/extensions/lightbox';
to localsettings.php - After that, add the usual line to bring in the extension:
include_once("$IP/extensions/LightboxThumbs.php");
- Add
*Note: Please make sure that the js files can be read.
[edit] See also
A perhaps more elegant version of this extension is its predecessor, the Lightbox2 hack. Its elegance lies not in its deployment, however; you must edit lightbox.js, Linker.php, MediaTransformOutput.php and ImageGallery.php.