You are here

public function JuiceboxGalleryInterface::getImages in Juicebox HTML5 Responsive Image Galleries 8.2

Same name and namespace in other branches
  1. 8.3 src/JuiceboxGalleryInterface.php \Drupal\juicebox\JuiceboxGalleryInterface::getImages()

Getter method for the gallery images.

Parameters

bool $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.

1 method overrides JuiceboxGalleryInterface::getImages()
JuiceboxGallery::getImages in src/JuiceboxGallery.php
Getter method for the gallery images.

File

src/JuiceboxGalleryInterface.php, line 113

Class

JuiceboxGalleryInterface
Interface definition for a Juicebox gallery.

Namespace

Drupal\juicebox

Code

public function getImages($filtered = FALSE);