You are here

function views_showcase_views_plugins in Views Showcase 6.2

Same name and namespace in other branches
  1. 6 views_showcase.views.inc \views_showcase_views_plugins()
  2. 7 views_showcase.views.inc \views_showcase_views_plugins()

@file Provide the views showcase plugin definition.

File

./views_showcase.views.inc, line 9
Provide the views showcase plugin definition.

Code

function views_showcase_views_plugins() {
  return array(
    'module' => 'views_showcase',
    'style' => array(
      'views_showcase' => array(
        'title' => t('Views Showcase'),
        'theme' => 'views_showcase_view',
        'help' => t('Display a view like a showcase.'),
        'handler' => 'views_showcase_style_plugin',
        'uses row plugin' => FALSE,
        'uses fields' => TRUE,
        'uses options' => TRUE,
        'type' => 'normal',
      ),
    ),
  );
}