You are here

function rotor_views_style_plugins in Rotor Banner 5

Implementation of hook_views_style_plugins()

File

./views.inc, line 13
Provides views integration for Rotor.

Code

function rotor_views_style_plugins() {
  $items['rotor_gallery'] = array(
    'name' => t('Rotor: Rotating nodes'),
    'theme' => 'rotor_gallery_view',
    'validate' => 'views_ui_plugin_validate_list',
    'needs_fields' => TRUE,
  );
  return $items;
}