public function JuiceboxGalleryDecorator::getChecksum in Juicebox HTML5 Responsive Image Galleries 7.2
Get a gallery checksum.
Return value
string An md5 hash of the image and option data that can be used to validate the uniqueness of this gallery's data and settings.
Overrides JuiceboxGalleryInterface::getChecksum
1 call to JuiceboxGalleryDecorator::getChecksum()
- 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 101 - Base decorator class for a Juicebox Gallery.
Class
- JuiceboxGalleryDecorator
- Base decorator class for a Juicebox Gallery.
Code
public function getChecksum() {
return $this->gallery
->getChecksum();
}