You are here

function galleria_theme in Galleria 7

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

Implements hook_theme().

File

./galleria.module, line 117
A light-weight, customizable image gallery plugin for Drupal based on jQuery

Code

function galleria_theme() {
  return array(
    'galleria_container' => array(
      'variables' => array(
        'items' => array(),
        'settings' => array(),
      ),
      'template' => 'theme/galleria-container',
      'file' => 'theme/theme.inc',
    ),
    'galleria_form_table' => array(
      'render element' => 'form',
      'file' => 'includes/galleria.admin.inc',
    ),
  );
}