You are here

function views_horizontal_slider_views_plugins in Views Horizontal Slider 7

File

./views_horizontal_slider.views.inc, line 14
Provide views data and handlers for views_horizontal_slider.module *

Code

function views_horizontal_slider_views_plugins() {
  return array(
    'module' => 'views_horizontal_slider',
    'style' => array(
      'views_horizontal_slider' => array(
        'title' => t('Horizontal Slider'),
        'help' => t('Displays Content with a Horizontal Slider Effect.'),
        'handler' => 'views_horizontal_slider_style_plugin',
        // views_horizontal_slider_style_plugin points to views_horizontal_slider_style_plugin.inc
        'uses row plugin' => TRUE,
        'uses options' => TRUE,
        'uses grouping' => FALSE,
        'type' => 'normal',
        'path' => drupal_get_path('module', 'views_horizontal_slider'),
        'theme path' => drupal_get_path('module', 'views_horizontal_slider'),
        'theme' => 'views_horizontal_slider_view',
      ),
    ),
  );
}