You are here

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

Getter method for the gallery ID.

Return value

string Returns the id value set for the gallery.

Overrides JuiceboxGalleryInterface::getId

2 calls to JuiceboxGalleryDecorator::getId()
JuiceboxGalleryDrupal::buildContextualLinks in includes/JuiceboxGalleryDrupal.inc
Utility to build a render array of contextual links that can be used to administer a gallery.
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 45
Base decorator class for a Juicebox Gallery.

Class

JuiceboxGalleryDecorator
Base decorator class for a Juicebox Gallery.

Code

public function getId() {
  return $this->gallery
    ->getId();
}