renaming mediawiki.specials to mediawiki.special (matches the Special-pagename and...
[mediawiki.git] / includes / ImageGallery.php
blobb768073f6d7a375aa695590c146e20bdad376a10
1 <?php
2 if ( ! defined( 'MEDIAWIKI' ) )
3 die( 1 );
5 /**
6 * Image gallery
8 * Add images to the gallery using add(), then render that list to HTML using toHTML().
10 * @ingroup Media
12 class ImageGallery
14 var $mImages, $mShowBytes, $mShowFilename;
15 var $mCaption = false;
16 var $mSkin = false;
17 var $mRevisionId = 0;
19 /**
20 * Hide blacklisted images?
22 var $mHideBadImages;
24 /**
25 * Registered parser object for output callbacks
27 var $mParser;
29 /**
30 * Contextual title, used when images are being screened
31 * against the bad image list
33 private $contextTitle = false;
35 private $mAttribs = array();
37 /**
38 * Create a new image gallery object.
40 function __construct( ) {
41 global $wgGalleryOptions;
42 $this->mImages = array();
43 $this->mShowBytes = $wgGalleryOptions['showBytes'];
44 $this->mShowFilename = true;
45 $this->mParser = false;
46 $this->mHideBadImages = false;
47 $this->mPerRow = $wgGalleryOptions['imagesPerRow'];
48 $this->mWidths = $wgGalleryOptions['imageWidth'];
49 $this->mHeights = $wgGalleryOptions['imageHeight'];
50 $this->mCaptionLength = $wgGalleryOptions['captionLength'];
53 /**
54 * Register a parser object
56 function setParser( $parser ) {
57 $this->mParser = $parser;
60 /**
61 * Set bad image flag
63 function setHideBadImages( $flag = true ) {
64 $this->mHideBadImages = $flag;
67 /**
68 * Set the caption (as plain text)
70 * @param $caption Caption
72 function setCaption( $caption ) {
73 $this->mCaption = htmlspecialchars( $caption );
76 /**
77 * Set the caption (as HTML)
79 * @param $caption String: Caption
81 public function setCaptionHtml( $caption ) {
82 $this->mCaption = $caption;
85 /**
86 * Set how many images will be displayed per row.
88 * @param $num Integer > 0; invalid numbers will be rejected
90 public function setPerRow( $num ) {
91 if ($num > 0) {
92 $this->mPerRow = (int)$num;
96 /**
97 * Set how wide each image will be, in pixels.
99 * @param $num Integer > 0; invalid numbers will be ignored
101 public function setWidths( $num ) {
102 if ($num > 0) {
103 $this->mWidths = (int)$num;
108 * Set how high each image will be, in pixels.
110 * @param $num Integer > 0; invalid numbers will be ignored
112 public function setHeights( $num ) {
113 if ($num > 0) {
114 $this->mHeights = (int)$num;
119 * Instruct the class to use a specific skin for rendering
121 * @param $skin Skin object
123 function useSkin( $skin ) {
124 $this->mSkin = $skin;
128 * Return the skin that should be used
130 * @return Skin object
132 function getSkin() {
133 if( !$this->mSkin ) {
134 global $wgUser;
135 $skin = $wgUser->getSkin();
136 } else {
137 $skin = $this->mSkin;
139 return $skin;
143 * Add an image to the gallery.
145 * @param $title Title object of the image that is added to the gallery
146 * @param $html String: additional HTML text to be shown. The name and size of the image are always shown.
148 function add( $title, $html='' ) {
149 if ( $title instanceof File ) {
150 // Old calling convention
151 $title = $title->getTitle();
153 $this->mImages[] = array( $title, $html );
154 wfDebug( "ImageGallery::add " . $title->getText() . "\n" );
158 * Add an image at the beginning of the gallery.
160 * @param $title Title object of the image that is added to the gallery
161 * @param $html String: Additional HTML text to be shown. The name and size of the image are always shown.
163 function insert( $title, $html='' ) {
164 if ( $title instanceof File ) {
165 // Old calling convention
166 $title = $title->getTitle();
168 array_unshift( $this->mImages, array( &$title, $html ) );
173 * isEmpty() returns true if the gallery contains no images
175 function isEmpty() {
176 return empty( $this->mImages );
180 * Enable/Disable showing of the file size of an image in the gallery.
181 * Enabled by default.
183 * @param $f Boolean: set to false to disable.
185 function setShowBytes( $f ) {
186 $this->mShowBytes = (bool)$f;
190 * Enable/Disable showing of the filename of an image in the gallery.
191 * Enabled by default.
193 * @param $f Boolean: set to false to disable.
195 function setShowFilename( $f ) {
196 $this->mShowFilename = (bool)$f;
200 * Set arbitrary attributes to go on the HTML gallery output element.
201 * Should be suitable for a &lt;table&gt; element.
203 * Note -- if taking from user input, you should probably run through
204 * Sanitizer::validateAttributes() first.
206 * @param $attribs Array of HTML attribute pairs
208 function setAttributes( $attribs ) {
209 $this->mAttribs = $attribs;
213 * Return a HTML representation of the image gallery
215 * For each image in the gallery, display
216 * - a thumbnail
217 * - the image name
218 * - the additional text provided when adding the image
219 * - the size of the image
222 function toHTML() {
223 global $wgLang;
225 $sk = $this->getSkin();
227 $attribs = Sanitizer::mergeAttributes(
228 array(
229 'class' => 'gallery',
230 'cellspacing' => '0',
231 'cellpadding' => '0' ),
232 $this->mAttribs );
233 $s = Xml::openElement( 'table', $attribs );
234 if( $this->mCaption )
235 $s .= "\n\t<caption>{$this->mCaption}</caption>";
237 $params = array( 'width' => $this->mWidths, 'height' => $this->mHeights );
238 $i = 0;
239 foreach ( $this->mImages as $pair ) {
240 $nt = $pair[0];
241 $text = $pair[1]; # "text" means "caption" here
243 # Give extensions a chance to select the file revision for us
244 $time = $descQuery = false;
245 wfRunHooks( 'BeforeGalleryFindFile', array( &$this, &$nt, &$time, &$descQuery ) );
247 if ( $nt->getNamespace() == NS_FILE ) {
248 $img = wfFindFile( $nt, array( 'time' => $time ) );
249 } else {
250 $img = false;
253 if( !$img ) {
254 # We're dealing with a non-image, spit out the name and be done with it.
255 $thumbhtml = "\n\t\t\t".'<div style="height: '.($this->mHeights*1.25+2).'px;">'
256 . htmlspecialchars( $nt->getText() ) . '</div>';
257 } elseif( $this->mHideBadImages && wfIsBadImage( $nt->getDBkey(), $this->getContextTitle() ) ) {
258 # The image is blacklisted, just show it as a text link.
259 $thumbhtml = "\n\t\t\t".'<div style="height: '.($this->mHeights*1.25+2).'px;">' .
260 $sk->link(
261 $nt,
262 htmlspecialchars( $nt->getText() ),
263 array(),
264 array(),
265 array( 'known', 'noclasses' )
267 '</div>';
268 } elseif( !( $thumb = $img->transform( $params ) ) ) {
269 # Error generating thumbnail.
270 $thumbhtml = "\n\t\t\t".'<div style="height: '.($this->mHeights*1.25+2).'px;">'
271 . htmlspecialchars( $img->getLastError() ) . '</div>';
272 } else {
273 $vpad = floor( ( 1.25*$this->mHeights - $thumb->height ) /2 ) - 2;
275 $imageParameters = array(
276 'desc-link' => true,
277 'desc-query' => $descQuery
279 # In the absence of a caption, fall back on providing screen readers with the filename as alt text
280 if ( $text == '' ) {
281 $imageParameters['alt'] = $nt->getText();
284 $thumbhtml = "\n\t\t\t".
285 '<div class="thumb" style="padding: ' . $vpad . 'px 0; width: ' .($this->mWidths+30).'px;">'
286 # Auto-margin centering for block-level elements. Needed now that we have video
287 # handlers since they may emit block-level elements as opposed to simple <img> tags.
288 # ref http://css-discuss.incutio.com/?page=CenteringBlockElement
289 . '<div style="margin-left: auto; margin-right: auto; width: ' .$this->mWidths.'px;">'
290 . $thumb->toHtml( $imageParameters ) . '</div></div>';
292 // Call parser transform hook
293 if ( $this->mParser && $img->getHandler() ) {
294 $img->getHandler()->parserTransformHook( $this->mParser, $img );
298 //TODO
299 // $linkTarget = Title::newFromText( $wgContLang->getNsText( MWNamespace::getUser() ) . ":{$ut}" );
300 // $ul = $sk->link( $linkTarget, $ut );
302 if( $this->mShowBytes ) {
303 if( $img ) {
304 $nb = wfMsgExt( 'nbytes', array( 'parsemag', 'escape'),
305 $wgLang->formatNum( $img->getSize() ) );
306 } else {
307 $nb = wfMsgHtml( 'filemissing' );
309 $nb = "$nb<br />\n";
310 } else {
311 $nb = '';
314 $textlink = $this->mShowFilename ?
315 $sk->link(
316 $nt,
317 htmlspecialchars( $wgLang->truncate( $nt->getText(), $this->mCaptionLength ) ),
318 array(),
319 array(),
320 array( 'known', 'noclasses' )
321 ) . "<br />\n" :
322 '' ;
324 # ATTENTION: The newline after <div class="gallerytext"> is needed to accommodate htmltidy which
325 # in version 4.8.6 generated crackpot html in its absence, see:
326 # http://bugzilla.wikimedia.org/show_bug.cgi?id=1765 -Ævar
328 if ( $i % $this->mPerRow == 0 ) {
329 $s .= "\n\t<tr>";
331 $s .=
332 "\n\t\t" . '<td><div class="gallerybox" style="width: '.($this->mWidths+35).'px;">'
333 . $thumbhtml
334 . "\n\t\t\t" . '<div class="gallerytext">' . "\n"
335 . $textlink . $text . $nb
336 . "\n\t\t\t</div>"
337 . "\n\t\t</div></td>";
338 if ( $i % $this->mPerRow == $this->mPerRow - 1 ) {
339 $s .= "\n\t</tr>";
341 ++$i;
343 if( $i % $this->mPerRow != 0 ) {
344 $s .= "\n\t</tr>";
346 $s .= "\n</table>";
348 return $s;
352 * @return Integer: number of images in the gallery
354 public function count() {
355 return count( $this->mImages );
359 * Set the contextual title
361 * @param $title Title: contextual title
363 public function setContextTitle( $title ) {
364 $this->contextTitle = $title;
368 * Get the contextual title, if applicable
370 * @return mixed Title or false
372 public function getContextTitle() {
373 return is_object( $this->contextTitle ) && $this->contextTitle instanceof Title
374 ? $this->contextTitle
375 : false;
378 } //class