function theme_views_slideshow_main_section in Views Slideshow 6.3
Same name and namespace in other branches
- 5 views_slideshow.module \theme_views_slideshow_main_section()
- 6 views_slideshow.theme.inc \theme_views_slideshow_main_section()
- 6.2 views_slideshow.theme.inc \theme_views_slideshow_main_section()
- 7.3 theme/views_slideshow.theme.inc \theme_views_slideshow_main_section()
The current element of the slideshow.
1 theme call to theme_views_slideshow_main_section()
- _views_slideshow_preprocess_views_slideshow in theme/
views_slideshow.theme.inc - @file The theme system, which controls the output of views slideshow.
File
- theme/
views_slideshow.theme.inc, line 185 - The theme system, which controls the output of views slideshow.
Code
function theme_views_slideshow_main_section($vss_id, $slides, $plugin) {
$attributes['id'] = $plugin . '_main_' . $vss_id;
$attributes['class'] = $plugin . '_main views_slideshow_main';
$attributes = drupal_attributes($attributes);
return "<div{$attributes}>{$slides}</div>";
}