You are here

function views_jqfx_galleria_theme in Views jQFX Galleria 7

Implements hook_theme().

File

./views_jqfx_galleria.module, line 11
Integrating Galleria with Views jQFX.

Code

function views_jqfx_galleria_theme($existing, $type, $theme, $path) {
  return array(
    'views_jqfx_galleria' => array(
      'variables' => array(
        'view' => NULL,
        'options' => array(),
        'rows' => array(),
        'title' => '',
      ),
      'template' => 'views-jqfx-galleria',
      'file' => 'views_jqfx_galleria.theme.inc',
      'path' => $path . '/theme',
    ),
  );
}