You are here

function scald_gallery_theme in Scald: Gallery 7.2

Same name and namespace in other branches
  1. 7 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(),
        'options' => array(),
      ),
      'template' => 'scald_gallery',
    ),
  );
}