You are here

function image_gallery_theme in Image 6

Same name and namespace in other branches
  1. 7 contrib/image_gallery/image_gallery.module \image_gallery_theme()

Implementation of hook_theme() registry.

File

contrib/image_gallery/image_gallery.module, line 144

Code

function image_gallery_theme() {
  return array(
    'image_gallery' => array(
      'arguments' => array(
        'galleries' => NULL,
        'images' => NULL,
      ),
    ),
    'image_gallery_count' => array(
      'arguments' => array(
        'count' => 0,
      ),
    ),
    'image_gallery_updated' => array(
      'arguments' => array(
        'timestamp' => 0,
      ),
    ),
    'image_gallery_img' => array(
      'arguments' => array(
        'image' => NULL,
        'size' => NULL,
      ),
    ),
  );
}