You are here

function galleryformatter_theme in Gallery formatter 7

Same name and namespace in other branches
  1. 8 galleryformatter.module \galleryformatter_theme()
  2. 6 galleryformatter.module \galleryformatter_theme()

Implementation of hook_theme().

File

./galleryformatter.module, line 162

Code

function galleryformatter_theme() {
  return array(
    'galleryformatter' => array(
      'variables' => array(
        'slides' => NULL,
        'thumbs' => NULL,
        'settings' => NULL,
        'dimensions' => NULL,
      ),
      'template' => 'theme/galleryformatter',
    ),
  );
}