MediaWiki REL1_34
SlideshowImageGallery.php
Go to the documentation of this file.
1<?php
24 function __construct( $mode = 'traditional', IContextSource $context = null ) {
25 parent::__construct( $mode, $context );
26 // Does not support per row option.
27 $this->mPerRow = 0;
28 }
29
34 protected function getModules() {
35 return [ 'mediawiki.page.gallery.slideshow' ];
36 }
37
38 public function setAdditionalOptions( $params ) {
39 $this->mAttribs['data-showthumbnails'] = isset( $params['showthumbnails'] );
40 }
41}
IContextSource $context
__construct( $mode='traditional', IContextSource $context=null)
Create a new image gallery object.
setAdditionalOptions( $params)
Allow setting additional options.
getModules()
Add javascript adds interface elements.
Interface for objects which can provide a MediaWiki context on request.