* (bug 6627) Fix regression in Special:Ipblocklist with table prefix
[mediawiki.git] / includes / ImageGallery.php
blob0935ac30ef841bf4a26cbdaf5d9a330325ea9692
1 <?php
2 if ( ! defined( 'MEDIAWIKI' ) )
3 die( 1 );
5 /**
6 * @package MediaWiki
7 */
9 /**
10 * Image gallery
12 * Add images to the gallery using add(), then render that list to HTML using toHTML().
14 * @package MediaWiki
16 class ImageGallery
18 var $mImages, $mShowBytes, $mShowFilename;
19 var $mCaption = false;
20 var $mSkin = false;
22 /**
23 * Is the gallery on a wiki page (i.e. not a special page)
25 var $mParsing;
27 /**
28 * Create a new image gallery object.
30 function ImageGallery( ) {
31 $this->mImages = array();
32 $this->mShowBytes = true;
33 $this->mShowFilename = true;
34 $this->mParsing = false;
37 /**
38 * Set the "parse" bit so we know to hide "bad" images
40 function setParsing( $val = true ) {
41 $this->mParsing = $val;
44 /**
45 * Set the caption
47 * @param $caption Caption
49 function setCaption( $caption ) {
50 $this->mCaption = $caption;
53 /**
54 * Instruct the class to use a specific skin for rendering
56 * @param $skin Skin object
58 function useSkin( &$skin ) {
59 $this->mSkin =& $skin;
62 /**
63 * Return the skin that should be used
65 * @return Skin object
67 function getSkin() {
68 if( !$this->mSkin ) {
69 global $wgUser;
70 $skin =& $wgUser->getSkin();
71 } else {
72 $skin =& $this->mSkin;
74 return $skin;
77 /**
78 * Add an image to the gallery.
80 * @param $image Image object that is added to the gallery
81 * @param $html String: additional HTML text to be shown. The name and size of the image are always shown.
83 function add( $image, $html='' ) {
84 $this->mImages[] = array( &$image, $html );
87 /**
88 * Add an image at the beginning of the gallery.
90 * @param $image Image object that is added to the gallery
91 * @param $html String: Additional HTML text to be shown. The name and size of the image are always shown.
93 function insert( $image, $html='' ) {
94 array_unshift( $this->mImages, array( &$image, $html ) );
98 /**
99 * isEmpty() returns true if the gallery contains no images
101 function isEmpty() {
102 return empty( $this->mImages );
106 * Enable/Disable showing of the file size of an image in the gallery.
107 * Enabled by default.
109 * @param $f Boolean: set to false to disable.
111 function setShowBytes( $f ) {
112 $this->mShowBytes = ( $f == true);
116 * Enable/Disable showing of the filename of an image in the gallery.
117 * Enabled by default.
119 * @param $f Boolean: set to false to disable.
121 function setShowFilename( $f ) {
122 $this->mShowFilename = ( $f == true);
126 * Return a HTML representation of the image gallery
128 * For each image in the gallery, display
129 * - a thumbnail
130 * - the image name
131 * - the additional text provided when adding the image
132 * - the size of the image
135 function toHTML() {
136 global $wgLang, $wgIgnoreImageErrors, $wgGenerateThumbnailOnParse;
138 $sk =& $this->getSkin();
140 $s = '<table class="gallery" cellspacing="0" cellpadding="0">';
141 if( $this->mCaption )
142 $s .= '<td class="galleryheader" colspan="4"><big>' . htmlspecialchars( $this->mCaption ) . '</big></td>';
144 $i = 0;
145 foreach ( $this->mImages as $pair ) {
146 $img =& $pair[0];
147 $text = $pair[1];
149 $name = $img->getName();
150 $nt = $img->getTitle();
152 if( $nt->getNamespace() != NS_IMAGE ) {
153 # We're dealing with a non-image, spit out the name and be done with it.
154 $thumbhtml = '<div style="height: 152px;">' . htmlspecialchars( $nt->getText() ) . '</div>';
156 else if( $this->mParsing && wfIsBadImage( $nt->getDBkey() ) ) {
157 # The image is blacklisted, just show it as a text link.
158 $thumbhtml = '<div style="height: 152px;">'
159 . $sk->makeKnownLinkObj( $nt, htmlspecialchars( $nt->getText() ) ) . '</div>';
161 else if( !( $thumb = $img->getThumbnail( 120, 120, $wgGenerateThumbnailOnParse ) ) ) {
162 # Error generating thumbnail.
163 $thumbhtml = '<div style="height: 152px;">'
164 . htmlspecialchars( $img->getLastError() ) . '</div>';
166 else {
167 $vpad = floor( ( 150 - $thumb->height ) /2 ) - 2;
168 $thumbhtml = '<div class="thumb" style="padding: ' . $vpad . 'px 0;">'
169 . $sk->makeKnownLinkObj( $nt, $thumb->toHtml() ) . '</div>';
172 //TODO
173 //$ul = $sk->makeLink( $wgContLang->getNsText( Namespace::getUser() ) . ":{$ut}", $ut );
175 if( $this->mShowBytes ) {
176 if( $img->exists() ) {
177 $nb = wfMsgExt( 'nbytes', array( 'parsemag', 'escape'),
178 $wgLang->formatNum( $img->getSize() ) );
179 } else {
180 $nb = wfMsgHtml( 'filemissing' );
182 $nb = "$nb<br />\n";
183 } else {
184 $nb = '';
187 $textlink = $this->mShowFilename ?
188 $sk->makeKnownLinkObj( $nt, htmlspecialchars( $wgLang->truncate( $nt->getText(), 20, '...' ) ) ) . "<br />\n" :
189 '' ;
191 # ATTENTION: The newline after <div class="gallerytext"> is needed to accommodate htmltidy which
192 # in version 4.8.6 generated crackpot html in its absence, see:
193 # http://bugzilla.wikimedia.org/show_bug.cgi?id=1765 -Ævar
195 $s .= ($i%4==0) ? '<tr>' : '';
196 $s .= '<td><div class="gallerybox">' . $thumbhtml
197 . '<div class="gallerytext">' . "\n" . $textlink . $text . $nb
198 . "</div></div></td>\n";
199 $s .= ($i%4==3) ? '</tr>' : '';
200 $i++;
202 if( $i %4 != 0 ) {
203 $s .= "</tr>\n";
205 $s .= '</table>';
207 return $s;
210 } //class