MediaWiki  1.29.1
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: https://phabricator.wikimedia.org/T3765
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></div>";
54  }
55 }
56 
64 }
PackedImageGallery\getThumbPadding
getThumbPadding()
How much padding the thumb has between the image and the inner div that contains the border.
Definition: PackedImageGallery.php:41
PackedImageGallery\getGBPadding
getGBPadding()
Definition: PackedImageGallery.php:45
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
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