function sheetnode_phpexcel_views_plugins in Sheetnode 5
Same name and namespace in other branches
- 6 modules/sheetnode_phpexcel/sheetnode_phpexcel.views.inc \sheetnode_phpexcel_views_plugins()
- 7.2 modules/sheetnode_phpexcel/sheetnode_phpexcel.views.inc \sheetnode_phpexcel_views_plugins()
- 7 modules/sheetnode_phpexcel/sheetnode_phpexcel.views.inc \sheetnode_phpexcel_views_plugins()
Implementation of hook_views_plugins().
File
- modules/
sheetnode_phpexcel/ sheetnode_phpexcel.views.inc, line 6
Code
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',
),
),
);
}