MediaWiki master
MediaWiki\Gallery\ImageGalleryBase Class Reference

Image gallery. More...

Inherits MediaWiki\Context\ContextSource.

Inherited by MediaWiki\Gallery\TraditionalImageGallery.

Collaboration diagram for MediaWiki\Gallery\ImageGalleryBase:

Public Member Functions

 __construct ( $mode='traditional', ?IContextSource $context=null)
 Create a new image gallery object.
 
 add ( $title, $html='', $alt='', $link='', $handlerOpts=[], $loading=self::LOADING_DEFAULT, ?array $imageOptions=null)
 Add an image to the gallery.
 
 count ()
 
 getContextTitle ()
 Get the contextual title, if applicable.
 
 getImages ()
 Returns the list of images this gallery contains.
 
 insert ( $title, $html='', $alt='', $link='', $handlerOpts=[], $loading=self::LOADING_DEFAULT, ?array $imageOptions=null)
 Add an image at the beginning of the gallery.
 
 isEmpty ()
 isEmpty() returns true if the gallery contains no images
 
 setAdditionalOptions ( $options)
 Allow setting additional options.
 
 setAttributes ( $attribs)
 Set arbitrary attributes to go on the HTML gallery output element.
 
 setCaption ( $caption)
 Set the caption (as plain text)
 
 setCaptionHtml ( $caption)
 Set the caption (as HTML)
 
 setContextTitle ( $title)
 Set the contextual title.
 
 setHeights ( $num)
 Set how high each image will be, in pixels.
 
 setHideBadImages ( $flag=true)
 
 setParser ( $parser)
 Register a parser object.
 
 setPerRow ( $num)
 Set how many images will be displayed per row.
 
 setShowBytes ( $f)
 Enable/Disable showing of the file size of an image in the gallery.
 
 setShowDimensions ( $f)
 Enable/Disable showing of the dimensions of an image in the gallery.
 
 setShowFilename ( $f)
 Enable/Disable showing of the filename of an image in the gallery.
 
 setWidths ( $num)
 Set how wide each image will be, in pixels.
 
 toHTML ()
 Display an html representation of the gallery.
 
- Public Member Functions inherited from MediaWiki\Context\ContextSource
 canUseWikiPage ()
 Check whether a WikiPage object can be get with getWikiPage().
 
 exportSession ()
 Export the resolved user IP, HTTP headers, user ID, and session ID.
 
 getActionName ()
 Get the action name for the current web request.
 
 getAuthority ()
 
 getConfig ()
 
 getContext ()
 Get the base IContextSource object.
 
 getCsrfTokenSet ()
 Get a repository to obtain and match CSRF tokens.
 
 getLanguage ()
 
 getLanguageCode ()
 
 getOutput ()
 
 getRequest ()
 
 getSkin ()
 
 getTiming ()
 
 getTitle ()
 
 getUser ()
 
 getWikiPage ()
 Get the WikiPage object.
 
 msg ( $key,... $params)
 Get a Message object with context set Parameters are the same as wfMessage()
 
 setContext (IContextSource $context)
 

Static Public Member Functions

static factory ( $mode=false, ?IContextSource $context=null)
 Get a new image gallery.
 

Public Attributes

Parser false $mParser
 Registered parser object for output callbacks.
 
const LOADING_DEFAULT = 1
 
const LOADING_LAZY = 2
 

Protected Member Functions

 getRenderLang ()
 Determines the correct language to be used for this image gallery.
 

Protected Attributes

Title null $contextTitle = null
 Contextual title, used when images are being screened against the bad image list.
 
array $mAttribs = []
 
string false $mCaption = false
 Gallery caption.
 
bool int $mCaptionLength = true
 Length to truncate filename to in caption when using "showfilename".
 
int $mHeights
 
bool $mHideBadImages
 Hide bad images?
 
array[] $mImages
 Gallery images.
 
string $mMode
 Gallery mode.
 
int $mPerRow
 
bool $mShowBytes
 Whether to show the filesize in bytes in categories.
 
bool $mShowDimensions
 Whether to show the dimensions in categories.
 
bool $mShowFilename
 Whether to show the filename.
 
int $mWidths
 

Detailed Description

Image gallery.

Add images to the gallery using add(), then render that list to HTML using toHTML().

Stability: stable
to extend

Definition at line 28 of file ImageGalleryBase.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Gallery\ImageGalleryBase::__construct ( $mode = 'traditional',
?IContextSource $context = null )

Create a new image gallery object.

You should not call this directly, but instead use ImageGalleryBase::factory().

Stability: stable
to call
Note
constructors of subclasses must have a compatible signature for use by the factory() method.
Parameters
string$mode
IContextSource | null$context

Reimplemented in MediaWiki\Gallery\PackedImageGallery, and MediaWiki\Gallery\SlideshowImageGallery.

Definition at line 161 of file ImageGalleryBase.php.

References MediaWiki\MainConfigNames\GalleryOptions, MediaWiki\Context\ContextSource\getConfig(), and MediaWiki\Context\ContextSource\setContext().

Member Function Documentation

◆ add()

MediaWiki\Gallery\ImageGalleryBase::add ( $title,
$html = '',
$alt = '',
$link = '',
$handlerOpts = [],
$loading = self::LOADING_DEFAULT,
?array $imageOptions = null )

Add an image to the gallery.

Parameters
Title$titleTitle object of the image that is added to the gallery
string$htmlAdditional HTML text to be shown. The name and size of the image are always shown.
string | null$altAlt text for the image, or null to omit
string$linkOverride image link (optional)
array$handlerOptsArray of options for image handler (aka page number)
int$loadingSets loading attribute of the underlying (optional)
?array$imageOptionsTo supercede the $link param

Definition at line 291 of file ImageGalleryBase.php.

References wfDebug().

◆ count()

MediaWiki\Gallery\ImageGalleryBase::count ( )
Returns
int Number of images in the gallery

Definition at line 406 of file ImageGalleryBase.php.

References MediaWiki\Gallery\ImageGalleryBase\count().

Referenced by MediaWiki\Gallery\ImageGalleryBase\count().

◆ factory()

static MediaWiki\Gallery\ImageGalleryBase::factory ( $mode = false,
?IContextSource $context = null )
static

Get a new image gallery.

This is the method other callers should use to get a gallery.

Parameters
string | false$modeMode to use. False to use the default
IContextSource | null$context
Returns
ImageGalleryBase
Exceptions
ImageGalleryClassNotFoundException

Definition at line 112 of file ImageGalleryBase.php.

References MediaWiki\MainConfigNames\GalleryOptions, and MediaWiki\MediaWikiServices\getInstance().

Referenced by MediaWiki\Category\CategoryViewer\clearCategoryState().

◆ getContextTitle()

MediaWiki\Gallery\ImageGalleryBase::getContextTitle ( )

Get the contextual title, if applicable.

Returns
Title|null

Definition at line 424 of file ImageGalleryBase.php.

References MediaWiki\Gallery\ImageGalleryBase\$contextTitle.

◆ getImages()

MediaWiki\Gallery\ImageGalleryBase::getImages ( )

Returns the list of images this gallery contains.

Returns
array[]

Definition at line 341 of file ImageGalleryBase.php.

References MediaWiki\Gallery\ImageGalleryBase\$mImages.

◆ getRenderLang()

MediaWiki\Gallery\ImageGalleryBase::getRenderLang ( )
protected

Determines the correct language to be used for this image gallery.

Returns
Language

Definition at line 432 of file ImageGalleryBase.php.

References MediaWiki\Context\ContextSource\getLanguage().

Referenced by MediaWiki\Gallery\TraditionalImageGallery\toHTML().

◆ insert()

MediaWiki\Gallery\ImageGalleryBase::insert ( $title,
$html = '',
$alt = '',
$link = '',
$handlerOpts = [],
$loading = self::LOADING_DEFAULT,
?array $imageOptions = null )

Add an image at the beginning of the gallery.

Parameters
Title$titleTitle object of the image that is added to the gallery
string$htmlAdditional HTML text to be shown. The name and size of the image are always shown.
string | null$altAlt text for the image, or null to omit
string$linkOverride image link (optional)
array$handlerOptsArray of options for image handler (aka page number)
int$loadingSets loading attribute of the underlying (optional)
?array$imageOptionsTo supercede the $link param

Definition at line 320 of file ImageGalleryBase.php.

◆ isEmpty()

MediaWiki\Gallery\ImageGalleryBase::isEmpty ( )

isEmpty() returns true if the gallery contains no images

Returns
bool

Definition at line 349 of file ImageGalleryBase.php.

◆ setAdditionalOptions()

MediaWiki\Gallery\ImageGalleryBase::setAdditionalOptions ( $options)

Allow setting additional options.

This is meant to allow extensions to add additional parameters to <gallery> parser tag.

Stability: stable
to override
Parameters
array$optionsAttributes of gallery tag

Reimplemented in MediaWiki\Gallery\SlideshowImageGallery.

Definition at line 276 of file ImageGalleryBase.php.

◆ setAttributes()

MediaWiki\Gallery\ImageGalleryBase::setAttributes ( $attribs)

Set arbitrary attributes to go on the HTML gallery output element.

Should be suitable for a

.

Note – if taking from user input, you should probably run through Sanitizer::validateAttributes() first.

Parameters
array$attribsArray of HTML attribute pairs

Definition at line 392 of file ImageGalleryBase.php.

◆ setCaption()

MediaWiki\Gallery\ImageGalleryBase::setCaption ( $caption)

Set the caption (as plain text)

Parameters
string$caption

Definition at line 206 of file ImageGalleryBase.php.

◆ setCaptionHtml()

MediaWiki\Gallery\ImageGalleryBase::setCaptionHtml ( $caption)

Set the caption (as HTML)

Parameters
string$caption

Definition at line 215 of file ImageGalleryBase.php.

◆ setContextTitle()

MediaWiki\Gallery\ImageGalleryBase::setContextTitle ( $title)

Set the contextual title.

Parameters
Title | null$titleContextual title

Definition at line 415 of file ImageGalleryBase.php.

◆ setHeights()

MediaWiki\Gallery\ImageGalleryBase::setHeights ( $num)

Set how high each image will be, in pixels.

Parameters
string$numNumber. Unit other than 'px is invalid. Invalid numbers and those below 0 are ignored.

Definition at line 255 of file ImageGalleryBase.php.

References MediaWiki\Gallery\ImageGalleryBase\$mParser, MediaWiki\MediaWikiServices\getInstance(), and wfDeprecated().

◆ setHideBadImages()

MediaWiki\Gallery\ImageGalleryBase::setHideBadImages ( $flag = true)
Parameters
bool$flag

Definition at line 197 of file ImageGalleryBase.php.

◆ setParser()

MediaWiki\Gallery\ImageGalleryBase::setParser ( $parser)

Register a parser object.

If you do not set this and the output of this gallery ends up in parser cache, the javascript will break!

Note
This also triggers using the page's target language instead of the user language.
Parameters
Parser$parser

Definition at line 190 of file ImageGalleryBase.php.

◆ setPerRow()

MediaWiki\Gallery\ImageGalleryBase::setPerRow ( $num)

Set how many images will be displayed per row.

Parameters
int$numInteger >= 0; If perrow=0 the gallery layout will adapt to screensize invalid numbers will be rejected

Reimplemented in MediaWiki\Gallery\PackedImageGallery.

Definition at line 225 of file ImageGalleryBase.php.

◆ setShowBytes()

MediaWiki\Gallery\ImageGalleryBase::setShowBytes ( $f)

Enable/Disable showing of the file size of an image in the gallery.

Enabled by default.

Parameters
bool$fSet to false to disable

Definition at line 369 of file ImageGalleryBase.php.

◆ setShowDimensions()

MediaWiki\Gallery\ImageGalleryBase::setShowDimensions ( $f)

Enable/Disable showing of the dimensions of an image in the gallery.

Enabled by default.

Parameters
bool$fSet to false to disable

Definition at line 359 of file ImageGalleryBase.php.

◆ setShowFilename()

MediaWiki\Gallery\ImageGalleryBase::setShowFilename ( $f)

Enable/Disable showing of the filename of an image in the gallery.

Enabled by default.

Parameters
bool$fSet to false to disable

Definition at line 379 of file ImageGalleryBase.php.

◆ setWidths()

MediaWiki\Gallery\ImageGalleryBase::setWidths ( $num)

Set how wide each image will be, in pixels.

Parameters
string$numNumber. Unit other than 'px is invalid. Invalid numbers and those below 0 are ignored.

Definition at line 237 of file ImageGalleryBase.php.

References MediaWiki\Gallery\ImageGalleryBase\$mParser, MediaWiki\MediaWikiServices\getInstance(), and wfDeprecated().

◆ toHTML()

MediaWiki\Gallery\ImageGalleryBase::toHTML ( )
abstract

Display an html representation of the gallery.

Returns
string The html

Reimplemented in MediaWiki\Gallery\TraditionalImageGallery.

Member Data Documentation

◆ $contextTitle

Title null MediaWiki\Gallery\ImageGalleryBase::$contextTitle = null
protected

Contextual title, used when images are being screened against the bad image list.

Definition at line 86 of file ImageGalleryBase.php.

Referenced by MediaWiki\Gallery\ImageGalleryBase\getContextTitle().

◆ $mAttribs

array MediaWiki\Gallery\ImageGalleryBase::$mAttribs = []
protected

Definition at line 89 of file ImageGalleryBase.php.

◆ $mCaption

string false MediaWiki\Gallery\ImageGalleryBase::$mCaption = false
protected

Gallery caption.

Default: false

Definition at line 61 of file ImageGalleryBase.php.

◆ $mCaptionLength

bool int MediaWiki\Gallery\ImageGalleryBase::$mCaptionLength = true
protected

Length to truncate filename to in caption when using "showfilename".

A value of 'true' will truncate the filename to one line using CSS and will be the behaviour after deprecation.

Definition at line 70 of file ImageGalleryBase.php.

Referenced by MediaWiki\Gallery\TraditionalImageGallery\getCaptionLength().

◆ $mHeights

int MediaWiki\Gallery\ImageGalleryBase::$mHeights
protected

◆ $mHideBadImages

bool MediaWiki\Gallery\ImageGalleryBase::$mHideBadImages
protected

Hide bad images?

Definition at line 75 of file ImageGalleryBase.php.

◆ $mImages

array [] MediaWiki\Gallery\ImageGalleryBase::$mImages
protected

Gallery images.

Definition at line 36 of file ImageGalleryBase.php.

Referenced by MediaWiki\Gallery\ImageGalleryBase\getImages().

◆ $mMode

string MediaWiki\Gallery\ImageGalleryBase::$mMode
protected

Gallery mode.

Default: traditional

Definition at line 56 of file ImageGalleryBase.php.

◆ $mParser

Parser false MediaWiki\Gallery\ImageGalleryBase::$mParser

Registered parser object for output callbacks.

Definition at line 80 of file ImageGalleryBase.php.

Referenced by MediaWiki\Gallery\ImageGalleryBase\setHeights(), and MediaWiki\Gallery\ImageGalleryBase\setWidths().

◆ $mPerRow

int MediaWiki\Gallery\ImageGalleryBase::$mPerRow
protected

Definition at line 92 of file ImageGalleryBase.php.

◆ $mShowBytes

bool MediaWiki\Gallery\ImageGalleryBase::$mShowBytes
protected

Whether to show the filesize in bytes in categories.

Definition at line 41 of file ImageGalleryBase.php.

◆ $mShowDimensions

bool MediaWiki\Gallery\ImageGalleryBase::$mShowDimensions
protected

Whether to show the dimensions in categories.

Definition at line 46 of file ImageGalleryBase.php.

◆ $mShowFilename

bool MediaWiki\Gallery\ImageGalleryBase::$mShowFilename
protected

Whether to show the filename.

Default: true

Definition at line 51 of file ImageGalleryBase.php.

◆ $mWidths

int MediaWiki\Gallery\ImageGalleryBase::$mWidths
protected

◆ LOADING_DEFAULT

const MediaWiki\Gallery\ImageGalleryBase::LOADING_DEFAULT = 1

Definition at line 29 of file ImageGalleryBase.php.

◆ LOADING_LAZY

const MediaWiki\Gallery\ImageGalleryBase::LOADING_LAZY = 2

The documentation for this class was generated from the following file: