PackedOverlayImageGallery.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /**
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along
  14. * with this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. * http://www.gnu.org/copyleft/gpl.html
  17. *
  18. * @file
  19. */
  20. /**
  21. * Packed overlay image gallery. All images adjusted to be same height and
  22. * image caption being placed over top of image.
  23. */
  24. class PackedOverlayImageGallery extends PackedImageGallery {
  25. /**
  26. * Add the wrapper html around the thumb's caption
  27. *
  28. * @param string $galleryText The caption
  29. * @param MediaTransformOutput|bool $thumb The thumb this caption is for
  30. * or false for bad image.
  31. * @return string
  32. */
  33. protected function wrapGalleryText( $galleryText, $thumb ) {
  34. // If we have no text, do not output anything to avoid
  35. // ugly white overlay.
  36. if ( trim( $galleryText ) === '' ) {
  37. return '';
  38. }
  39. # ATTENTION: The newline after <div class="gallerytext"> is needed to
  40. # accommodate htmltidy which in version 4.8.6 generated crackpot HTML
  41. # in its absence, see: https://phabricator.wikimedia.org/T3765
  42. # -Ævar
  43. $thumbWidth = $this->getGBWidth( $thumb ) - $this->getThumbPadding() - $this->getGBPadding();
  44. $captionWidth = ceil( $thumbWidth - 20 );
  45. $outerWrapper = '<div class="gallerytextwrapper" style="width: ' . $captionWidth . 'px">';
  46. return "\n\t\t\t" . $outerWrapper . '<div class="gallerytext">' . "\n"
  47. . $galleryText
  48. . "\n\t\t\t</div></div>";
  49. }
  50. }