You are here

function blazy_views_plugins in Blazy 7

Implements hook_views_plugins().

File

./blazy.views.inc, line 26
Provides views data for blazy.module.

Code

function blazy_views_plugins() {
  return [
    'style' => [
      'blazy' => [
        'title' => t('Blazy Grid'),
        'help' => t('Display the results in a Blazy Grid.'),
        'handler' => 'Drupal\\blazy\\Plugin\\views\\style\\BlazyViews',
        'file' => 'BlazyViews.php',
        'path' => drupal_get_path('module', 'blazy') . '/src/Plugin/views/style',
        'register theme' => FALSE,
        'uses grouping' => FALSE,
        'uses row plugin' => TRUE,
        'uses options' => TRUE,
        'type' => 'normal',
        'even empty' => FALSE,
      ],
    ],
  ];
}