function views_showcase_views_plugins in Views Showcase 7
Same name and namespace in other branches
- 6.2 views_showcase.views.inc \views_showcase_views_plugins()
- 6 views_showcase.views.inc \views_showcase_views_plugins()
Implements hook_views_plugins().
File
- ./
views_showcase.views.inc, line 11 - Defines the View Style Plugins for Views Showcase module.
Code
function views_showcase_views_plugins() {
return array(
'style' => array(
'views_showcase' => array(
'title' => t('Views Showcase'),
'theme' => 'views_showcase_view',
'help' => t('Display a view like a showcase.'),
'handler' => 'views_showcase_plugin_style_showcase',
'path' => drupal_get_path('module', 'views_showcase'),
'uses options' => TRUE,
'uses row plugin' => TRUE,
'uses grouping' => FALSE,
'type' => 'normal',
),
),
);
}