Implements hook_theme().

File

contrib/views_slideshow_simple_pager/views_slideshow_simple_pager.module, line 22

Code

function views_slideshow_simple_pager_theme($existing, $type, $theme, $path) {
    return array(
        'views_slideshow_simple_pager' => array(
            'variables' => array(
                'vss_id' => NULL,
                'view' => NULL,
                'settings' => array(),
                'location' => NULL,
                'attributes' => array(),
            ),
            'template' => 'theme/views-slideshow-pager-fields',
            'path' => drupal_get_path('module', 'views_slideshow'),
        ),
    );
}