You are here

sheetnode_phpexcel.views.inc in Sheetnode 7.2

Provide views data for sheetnode_phpexcel.

File

modules/sheetnode_phpexcel/sheetnode_phpexcel.views.inc
View source
<?php

/**
 * @file
 * Provide views data for sheetnode_phpexcel.
 */

/**
 * Implementation of hook_views_plugins().
 */
function sheetnode_phpexcel_views_plugins() {
  return array(
    'style' => array(
      'sheet_phpexcel' => array(
        'title' => t('Spreadsheet file'),
        'help' => t('Download the view as a spreadsheet file.'),
        'handler' => 'sheetnode_phpexcel_plugin_style',
        'parent' => 'sheet',
        'uses row plugin' => FALSE,
        'uses fields' => TRUE,
        'uses options' => TRUE,
        'type' => 'feed',
      ),
    ),
  );
}

Functions

Namesort descending Description
sheetnode_phpexcel_views_plugins Implementation of hook_views_plugins().