function theme_views_slideshow_main_section in Views Slideshow 7.3
Same name and namespace in other branches
- 5 views_slideshow.module \theme_views_slideshow_main_section()
- 6.3 theme/views_slideshow.theme.inc \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()
The current element of the slideshow.
Parameters
array $vars: Theme variables.
Return value
string The html string for the slideshow element.
Related topics
1 theme call to theme_views_slideshow_main_section()
- template_preprocess_views_slideshow in theme/
views_slideshow.theme.inc - Implements hook_preprocess_views_slideshow().
File
- theme/
views_slideshow.theme.inc, line 206 - The theme system, which controls the output of views slideshow.
Code
function theme_views_slideshow_main_section($vars) {
return '<div id="' . $vars['plugin'] . '_main_' . $vars['vss_id'] . '" class="' . $vars['plugin'] . '_main views_slideshow_main">' . $vars['slides'] . '</div>';
}