You are here

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

Getter method for the gallery options.

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 addOption().

Return value

array Returns an array of options set on the gallery.

Overrides JuiceboxGalleryInterface::getOptions

1 call to JuiceboxGalleryDecorator::getOptions()
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 87
Base decorator class for a Juicebox Gallery.

Class

JuiceboxGalleryDecorator
Base decorator class for a Juicebox Gallery.

Code

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