function views_slideshow_ddblock_theme in Views Slideshow: Dynamic Display Block 6
Same name and namespace in other branches
- 6.2 views_slideshow_ddblock.module \views_slideshow_ddblock_theme()
- 7.2 views_slideshow_ddblock.module \views_slideshow_ddblock_theme()
Implements hook_theme().
File
- ./
views_slideshow_ddblock.module, line 20 - Views Slideshow: ddblock adds ddblock functionality to Views Slideshows.
Code
function views_slideshow_ddblock_theme($existing, $type, $theme, $path) {
return array(
'views_slideshow_ddblock' => array(
'arguments' => array(
'view' => NULL,
'options' => array(),
'rows' => array(),
'title' => '',
),
'template' => 'views-slideshow-ddblock',
),
'views_slideshow_ddblock_pager_content' => array(
'arguments' => array(
'views_slideshow_ddblock_pager_settings' => NULL,
'views_slideshow_ddblock_content' => NULL,
),
'template' => 'views-slideshow-ddblock-pager-content',
),
);
}