function scald_gallery_theme in Scald: Gallery 7
Same name and namespace in other branches
- 7.2 scald_gallery.module \scald_gallery_theme()
Implements hook_theme().
File
- ./
scald_gallery.module, line 10 - Scald Gallery is a Scald Atom Provider for image galleries.
Code
function scald_gallery_theme() {
return array(
'scald_gallery' => array(
'variables' => array(
'atom' => NULL,
'images' => array(),
'galleria_options' => array(
'width' => '690',
'height' => '450',
'theme' => 'classic',
),
),
'template' => 'scald_gallery',
),
);
}