You are here

function galleria_theme in Galleria 6

Same name and namespace in other branches
  1. 7 galleria.module \galleria_theme()

Implementation of hook_theme().

File

./galleria.module, line 100
Turns a node into a Galleria image gallery.

Code

function galleria_theme() {
  return array(
    'galleria' => array(
      'template' => 'galleria',
      'arguments' => array(
        'images' => NULL,
      ),
    ),
    'galleria_lightbox_link' => array(
      'arguments' => array(
        'nid' => NULL,
      ),
    ),
    'galleria_formatter_imagefield_galleria' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'galleria_files' => array(
      'arguments' => array(
        'node' => NULL,
      ),
    ),
  );
}