sheetnode_phpexcel.views.inc in Sheetnode 7
Same filename and directory in other branches
Provide views data for sheetnode_phpexcel.
File
modules/sheetnode_phpexcel/sheetnode_phpexcel.views.incView 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
Name | Description |
---|---|
sheetnode_phpexcel_views_plugins | Implementation of hook_views_plugins(). |