You are here

function views_slideshow_ddblock_theme in Views Slideshow: Dynamic Display Block 7.2

Same name and namespace in other branches
  1. 6.2 views_slideshow_ddblock.module \views_slideshow_ddblock_theme()
  2. 6 views_slideshow_ddblock.module \views_slideshow_ddblock_theme()

Implements hook_theme().

File

./views_slideshow_ddblock.module, line 46
Views Slideshow: ddblock adds ddblock functionality to Views Slideshows.

Code

function views_slideshow_ddblock_theme($existing, $type, $theme, $path) {
  return array(
    'views_slideshow_ddblock_pager_content' => array(
      'variables' => array(
        'views_slideshow_ddblock_pager_settings' => NULL,
        'views_slideshow_ddblock_pager_content' => NULL,
      ),
      'template' => 'theme/views-slideshow-ddblock-pager-content',
      'file' => 'theme/views_slideshow_ddblock.theme.inc',
    ),
    'views_slideshow_ddblock_main_frame' => array(
      'variables' => array(
        'vss_id' => NULL,
        'view' => NULL,
        'settings' => NULL,
        'rows' => NULL,
      ),
      'template' => 'theme/views-slideshow-ddblock-main-frame',
      'file' => 'theme/views_slideshow_ddblock.theme.inc',
    ),
    'views_slideshow_ddblock_mappings_table' => array(
      'render element' => 'form',
    ),
  );
}