You are here

function theme_rotor_items in Rotor Banner 5.7

Same name and namespace in other branches
  1. 5 rotor.module \theme_rotor_items()
  2. 6 rotor.module \theme_rotor_items()

Theme for the rotor items list.

Parameters

array $items The array of items.:

1 theme call to theme_rotor_items()
theme_rotor_block in ./rotor.module
Theme function for the block

File

./rotor.module, line 353
A rotor banner consists in a set of images that will be changing. This module is made using jquery.

Code

function theme_rotor_items($items = array()) {
  $output = '';
  foreach ($items as $item) {
    $output .= theme('rotor_item', $item);
  }
  return $output;
}