| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * @file 5 * The theme system, which controls the output of views slideshow. 6 * 7 * This just adds a wrapper div to the slideshow. 8 */ 9 10 /** 11 * The current element of the slideshow. 12 * 13 * @ingroup themeable 14 */ 15 function theme_views_slideshow_main_section($id, $hidden_elements, $plugin) { 16 $attributes['id'] = "$plugin}_main_$id}"; 17 $attributes['class'] = "$plugin}_main views_slideshow_main"; 18 $attributes = drupal_attributes($attributes); 19 20 return "<div$attributes>$hidden_elements</div>"; 21 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |