MediaWiki  1.23.2
PackedOverlayImageGallery.php
Go to the documentation of this file.
1 <?php
33  protected function wrapGalleryText( $galleryText, $thumb ) {
34 
35  // If we have no text, do not output anything to avoid
36  // ugly white overlay.
37  if ( trim( $galleryText ) === '' ) {
38  return '';
39  }
40 
41  # ATTENTION: The newline after <div class="gallerytext"> is needed to
42  # accommodate htmltidy which in version 4.8.6 generated crackpot HTML
43  # in its absence, see: http://bugzilla.wikimedia.org/show_bug.cgi?id=1765
44  # -Ævar
45 
46  $thumbWidth = $this->getGBWidth( $thumb ) - $this->getThumbPadding() - $this->getGBPadding();
47  $captionWidth = ceil( $thumbWidth - 20 );
48 
49  $outerWrapper = '<div class="gallerytextwrapper" style="width: ' . $captionWidth . 'px">';
50 
51  return "\n\t\t\t" . $outerWrapper . '<div class="gallerytext">' . "\n"
52  . $galleryText
53  . "\n\t\t\t</div>";
54  }
55 }
56 
64 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
PackedImageGallery\getThumbPadding
getThumbPadding()
How much padding such the thumb have between image and inner div that that contains the border.
Definition: PackedImageGallery.php:41
PackedImageGallery\getGBPadding
getGBPadding()
Definition: PackedImageGallery.php:45
PackedOverlayImageGallery
Definition: PackedOverlayImageGallery.php:24
PackedImageGallery\getGBWidth
getGBWidth( $thumb)
Definition: PackedImageGallery.php:83
PackedOverlayImageGallery\wrapGalleryText
wrapGalleryText( $galleryText, $thumb)
Add the wrapper html around the thumb's caption.
Definition: PackedOverlayImageGallery.php:33
PackedHoverImageGallery
Same as Packed except different CSS is applied to make the caption only show up on hover.
Definition: PackedOverlayImageGallery.php:63
PackedImageGallery
Definition: PackedImageGallery.php:23