You are here

views_fluid_grid.views.inc in Views Fluid Grid 7.3

Same filename and directory in other branches
  1. 6 views/views_fluid_grid.views.inc

Integration with Views.

File

views/views_fluid_grid.views.inc
View source
<?php

/**
 * @file
 * Integration with Views.
 */

/**
 * Implementation of hook_views_plugins().
 */
function views_fluid_grid_views_plugins() {
  $module_path = drupal_get_path('module', 'views_fluid_grid');
  return array(
    'module' => 'views_fluid_grid',
    // This just tells our themes are elsewhere.
    'style' => array(
      'fluid_grid' => array(
        'title' => t('Fluid grid'),
        'help' => t('Displays items in a fluid grid.'),
        'handler' => 'views_fluid_grid_plugin_style',
        'path' => $module_path . '/views',
        'theme path' => $module_path . '/theme',
        'theme file' => 'theme.inc',
        'theme' => 'views_fluid_grid_plugin_style',
        'uses row plugin' => TRUE,
        'uses options' => TRUE,
        'uses grouping' => TRUE,
        'type' => 'normal',
        'help topic' => 'style-fluid-grid',
      ),
    ),
  );
}

Functions

Namesort descending Description
views_fluid_grid_views_plugins Implementation of hook_views_plugins().