You are here

function views_ticker_views_plugins in Views Ticker 7.2

Same name and namespace in other branches
  1. 6.2 includes/views_ticker.views.inc \views_ticker_views_plugins()
  2. 7 includes/views_ticker.views.inc \views_ticker_views_plugins()

Implements hook_views_plugin().

File

includes/views_ticker.views.inc, line 11
Views integration for ticker module.

Code

function views_ticker_views_plugins() {
  $plugins['style']['views_ticker'] = array(
    'title' => t('Views Ticker'),
    'help' => t('Display links to items while scrolling through them.'),
    'handler' => 'views_ticker_style_plugin',
    'path' => drupal_get_path('module', 'views_ticker') . '/includes',
    'theme' => 'views_ticker_view',
    'theme path' => drupal_get_path('module', 'views_ticker') . '/includes',
    'uses row plugin' => true,
    'uses options' => true,
    'uses grouping' => false,
    'type' => 'normal',
  );
  return $plugins;
}