You are here

public function JuiceboxGalleryDecorator::getImages in Juicebox HTML5 Responsive Image Galleries 7.2

Getter method for the gallery images.

Parameters

boolean $filtered: If TRUE any output processing that is specified in the settings will be applied to the returned data (matching the processing that would happen upon rendering the XML). If FALSE the image data is returned in a raw format that matches what was input directly via addImage() or similar.

Return value

array Returns an array of images currently in the gallery.

Overrides JuiceboxGalleryInterface::getImages

1 call to JuiceboxGalleryDecorator::getImages()
JuiceboxGalleryDrupal::buildEmbed in includes/JuiceboxGalleryDrupal.inc
Build a render array of the embed code for a Juicebox gallery after images and options have been added.

File

includes/JuiceboxGalleryDecorator.inc, line 66
Base decorator class for a Juicebox Gallery.

Class

JuiceboxGalleryDecorator
Base decorator class for a Juicebox Gallery.

Code

public function getImages($filtered = FALSE) {
  return $this->gallery
    ->getImages($filtered);
}