function sheetnode_phpexcel_plugin_style::option_definition in Sheetnode 7.2
Same name and namespace in other branches
- 5 modules/sheetnode_phpexcel/sheetnode_phpexcel_plugin_style.inc \sheetnode_phpexcel_plugin_style::option_definition()
- 6 modules/sheetnode_phpexcel/sheetnode_phpexcel_plugin_style.inc \sheetnode_phpexcel_plugin_style::option_definition()
- 7 modules/sheetnode_phpexcel/sheetnode_phpexcel_plugin_style.inc \sheetnode_phpexcel_plugin_style::option_definition()
Set sheetnode feed option definition.
Overrides sheetnode_feed_plugin_style::option_definition
File
- modules/
sheetnode_phpexcel/ sheetnode_phpexcel_plugin_style.inc, line 12 - Views plugin style to run through sheetnode_phpexcel.
Class
- sheetnode_phpexcel_plugin_style
- @file Views plugin style to run through sheetnode_phpexcel.
Code
function option_definition() {
$options = parent::option_definition();
$options['format'] = array(
'default' => '',
);
return $options;
}