MediaWiki master
ImageGalleryBase.php
Go to the documentation of this file.
1<?php
32
40abstract class ImageGalleryBase extends ContextSource {
41 public const LOADING_DEFAULT = 1;
42 public const LOADING_LAZY = 2;
43
48 protected $mImages;
49
53 protected $mShowBytes;
54
59
63 protected $mShowFilename;
64
68 protected $mMode;
69
73 protected $mCaption = false;
74
82 protected $mCaptionLength = true;
83
87 protected $mHideBadImages;
88
92 public $mParser;
93
98 protected $contextTitle = null;
99
101 protected $mAttribs = [];
102
104 protected $mPerRow;
105
107 protected $mWidths;
108
110 protected $mHeights;
111
113 private static $modeMapping;
114
124 public static function factory( $mode = false, ?IContextSource $context = null ) {
125 self::loadModes();
126 if ( !$context ) {
127 $context = RequestContext::getMainAndWarn( __METHOD__ );
128 }
129 if ( !$mode ) {
130 $galleryOptions = $context->getConfig()->get( MainConfigNames::GalleryOptions );
131 $mode = $galleryOptions['mode'];
132 }
133
134 $mode = MediaWikiServices::getInstance()->getContentLanguage()->lc( $mode );
135
136 if ( isset( self::$modeMapping[$mode] ) ) {
137 $class = self::$modeMapping[$mode];
138 return new $class( $mode, $context );
139 } else {
140 throw new ImageGalleryClassNotFoundException( "No gallery class registered for mode $mode" );
141 }
142 }
143
144 private static function loadModes() {
145 if ( self::$modeMapping === null ) {
146 self::$modeMapping = [
147 'traditional' => TraditionalImageGallery::class,
148 'nolines' => NolinesImageGallery::class,
149 'packed' => PackedImageGallery::class,
150 'packed-hover' => PackedHoverImageGallery::class,
151 'packed-overlay' => PackedOverlayImageGallery::class,
152 'slideshow' => SlideshowImageGallery::class,
153 ];
154 // Allow extensions to make a new gallery format.
155 ( new HookRunner( MediaWikiServices::getInstance()->getHookContainer() ) )
156 ->onGalleryGetModes( self::$modeMapping );
157 }
158 }
159
173 public function __construct( $mode = 'traditional', ?IContextSource $context = null ) {
174 if ( $context ) {
175 $this->setContext( $context );
176 }
177
178 $galleryOptions = $this->getConfig()->get( MainConfigNames::GalleryOptions );
179 $this->mImages = [];
180 $this->mShowBytes = $galleryOptions['showBytes'];
181 $this->mShowDimensions = $galleryOptions['showDimensions'];
182 $this->mShowFilename = true;
183 $this->mParser = false;
184 $this->mHideBadImages = false;
185 $this->mPerRow = $galleryOptions['imagesPerRow'];
186 $this->mWidths = $galleryOptions['imageWidth'];
187 $this->mHeights = $galleryOptions['imageHeight'];
188 $this->mCaptionLength = $galleryOptions['captionLength'];
189 $this->mMode = $mode;
190 }
191
202 public function setParser( $parser ) {
203 $this->mParser = $parser;
204 }
205
209 public function setHideBadImages( $flag = true ) {
210 $this->mHideBadImages = $flag;
211 }
212
218 public function setCaption( $caption ) {
219 $this->mCaption = htmlspecialchars( $caption );
220 }
221
227 public function setCaptionHtml( $caption ) {
228 $this->mCaption = $caption;
229 }
230
237 public function setPerRow( $num ) {
238 if ( $num >= 0 ) {
239 $this->mPerRow = (int)$num;
240 }
241 }
242
249 public function setWidths( $num ) {
250 $parser = $this->mParser;
251 if ( !$parser ) {
252 wfDeprecated( __METHOD__ . ' without parser', '1.43' );
253 $parser = MediaWikiServices::getInstance()->getParser();
254 }
255 $parsed = $parser->parseWidthParam( $num, false );
256 if ( isset( $parsed['width'] ) && $parsed['width'] > 0 ) {
257 $this->mWidths = $parsed['width'];
258 }
259 }
260
267 public function setHeights( $num ) {
268 $parser = $this->mParser;
269 if ( !$parser ) {
270 wfDeprecated( __METHOD__ . ' without parser', '1.43' );
271 $parser = MediaWikiServices::getInstance()->getParser();
272 }
273 $parsed = $parser->parseWidthParam( $num, false );
274 if ( isset( $parsed['width'] ) && $parsed['width'] > 0 ) {
275 $this->mHeights = $parsed['width'];
276 }
277 }
278
288 public function setAdditionalOptions( $options ) {
289 }
290
303 public function add(
304 $title,
305 $html = '',
306 $alt = '',
307 $link = '',
308 $handlerOpts = [],
309 $loading = self::LOADING_DEFAULT,
310 ?array $imageOptions = null
311 ) {
312 if ( $title instanceof File ) {
313 // Old calling convention
314 $title = $title->getTitle();
315 }
316 $this->mImages[] = [ $title, $html, $alt, $link, $handlerOpts, $loading, $imageOptions ];
317 wfDebug( 'ImageGallery::add ' . $title->getText() );
318 }
319
332 public function insert(
333 $title,
334 $html = '',
335 $alt = '',
336 $link = '',
337 $handlerOpts = [],
338 $loading = self::LOADING_DEFAULT,
339 ?array $imageOptions = null
340 ) {
341 if ( $title instanceof File ) {
342 // Old calling convention
343 $title = $title->getTitle();
344 }
345 array_unshift( $this->mImages, [ $title, $html, $alt, $link, $handlerOpts, $loading, $imageOptions ] );
346 }
347
353 public function getImages() {
354 return $this->mImages;
355 }
356
361 public function isEmpty() {
362 return $this->mImages === [];
363 }
364
371 public function setShowDimensions( $f ) {
372 $this->mShowDimensions = (bool)$f;
373 }
374
381 public function setShowBytes( $f ) {
382 $this->mShowBytes = (bool)$f;
383 }
384
391 public function setShowFilename( $f ) {
392 $this->mShowFilename = (bool)$f;
393 }
394
404 public function setAttributes( $attribs ) {
405 $this->mAttribs = $attribs;
406 }
407
413 abstract public function toHTML();
414
418 public function count() {
419 return count( $this->mImages );
420 }
421
427 public function setContextTitle( $title ) {
428 $this->contextTitle = $title;
429 }
430
436 public function getContextTitle() {
437 return $this->contextTitle;
438 }
439
444 protected function getRenderLang() {
445 return $this->mParser
446 ? $this->mParser->getTargetLanguage()
447 : $this->getLanguage();
448 }
449}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Logs a warning that a deprecated feature was used.
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:79
setShowDimensions( $f)
Enable/Disable showing of the dimensions of an image in the gallery.
Parser false $mParser
Registered parser object for output callbacks.
setHeights( $num)
Set how high each image will be, in pixels.
bool $mShowDimensions
Whether to show the dimensions in categories.
isEmpty()
isEmpty() returns true if the gallery contains no images
setAttributes( $attribs)
Set arbitrary attributes to go on the HTML gallery output element.
bool $mHideBadImages
Hide bad images?
setCaption( $caption)
Set the caption (as plain text)
setHideBadImages( $flag=true)
__construct( $mode='traditional', ?IContextSource $context=null)
Create a new image gallery object.
string false $mCaption
Gallery caption.
Title null $contextTitle
Contextual title, used when images are being screened against the bad image list.
setCaptionHtml( $caption)
Set the caption (as HTML)
bool int $mCaptionLength
Length to truncate filename to in caption when using "showfilename".
getContextTitle()
Get the contextual title, if applicable.
string $mMode
Gallery mode.
setAdditionalOptions( $options)
Allow setting additional options.
setPerRow( $num)
Set how many images will be displayed per row.
static factory( $mode=false, ?IContextSource $context=null)
Get a new image gallery.
setContextTitle( $title)
Set the contextual title.
bool $mShowFilename
Whether to show the filename.
setParser( $parser)
Register a parser object.
insert( $title, $html='', $alt='', $link='', $handlerOpts=[], $loading=self::LOADING_DEFAULT, ?array $imageOptions=null)
Add an image at the beginning of the gallery.
bool $mShowBytes
Whether to show the filesize in bytes in categories.
toHTML()
Display an html representation of the gallery.
setShowBytes( $f)
Enable/Disable showing of the file size of an image in the gallery.
getRenderLang()
Determines the correct language to be used for this image gallery.
setWidths( $num)
Set how wide each image will be, in pixels.
getImages()
Returns the list of images this gallery contains.
add( $title, $html='', $alt='', $link='', $handlerOpts=[], $loading=self::LOADING_DEFAULT, ?array $imageOptions=null)
Add an image to the gallery.
array[] $mImages
Gallery images.
setShowFilename( $f)
Enable/Disable showing of the filename of an image in the gallery.
Class for exceptions thrown by ImageGalleryBase::factory().
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
setContext(IContextSource $context)
Group all the pieces relevant to the context of a request into one instance.
This class provides an implementation of the core hook interfaces, forwarding hook calls to HookConta...
Base class for language-specific code.
Definition Language.php:81
A class containing constants representing the names of configuration variables.
Service locator for MediaWiki core services.
PHP Parser - Processes wiki markup (which uses a more user-friendly syntax, such as "[[link]]" for ma...
Definition Parser.php:145
Represents a title within MediaWiki.
Definition Title.php:78
Interface for objects which can provide a MediaWiki context on request.