function sheetnode_feed_plugin_style::option_definition in Sheetnode 7.2
Same name and namespace in other branches
- 6 views/sheetnode_plugin_style.inc \sheetnode_feed_plugin_style::option_definition()
- 7 views/sheetnode_plugin_style.inc \sheetnode_feed_plugin_style::option_definition()
Set sheetnode feed option definition.
Overrides sheetnode_plugin_style::option_definition
1 call to sheetnode_feed_plugin_style::option_definition()
- sheetnode_phpexcel_plugin_style::option_definition in modules/
sheetnode_phpexcel/ sheetnode_phpexcel_plugin_style.inc - Set sheetnode feed option definition.
1 method overrides sheetnode_feed_plugin_style::option_definition()
- sheetnode_phpexcel_plugin_style::option_definition in modules/
sheetnode_phpexcel/ sheetnode_phpexcel_plugin_style.inc - Set sheetnode feed option definition.
File
- views/
sheetnode_plugin_style.inc, line 608
Class
- sheetnode_feed_plugin_style
- Extension for sheetnode feed plugin style.
Code
function option_definition() {
$options = parent::option_definition();
$options['inherit'] = array(
'default' => TRUE,
);
return $options;
}