You are here

function theme_views_slideshow_no_display_teaser in Views Slideshow 6

Same name and namespace in other branches
  1. 5 views_slideshow.module \theme_views_slideshow_no_display_teaser()

The html that will be placed into the element in its turn during its frame.

1 theme call to theme_views_slideshow_no_display_teaser()
theme_views_slideshow_no_display_section in ./views_slideshow.theme.inc
These are the slideshow elements themselves; not actually displayed, but used to give the html to the main element.

File

./views_slideshow.theme.inc, line 86

Code

function theme_views_slideshow_no_display_teaser($item, $id, $count) {
  $hidden = $count ? 'class="views_slideshow_hidden"' : '';
  $output = '  <div id="views_slideshow_div_' . $id . '_' . $count . '" ' . $hidden . '>' . "\n  ";
  $output .= $item . "\n";
  $output .= '  </div><!--close views_slideshow_div_' . $id . '_' . $count . '-->' . "\n\n";
  return $output;
}