function sheetnode_plugin_style::option_definition in Sheetnode 6
Same name and namespace in other branches
- 7.2 views/sheetnode_plugin_style.inc \sheetnode_plugin_style::option_definition()
- 7 views/sheetnode_plugin_style.inc \sheetnode_plugin_style::option_definition()
1 call to sheetnode_plugin_style::option_definition()
1 method overrides sheetnode_plugin_style::option_definition()
File
- views/
sheetnode_plugin_style.inc, line 9
Class
Code
function option_definition() {
$options = parent::option_definition();
$options['expansion'] = array(
'default' => SHEETNODE_EXPANSION_VERTICAL,
);
$options['template'] = array(
'default' => FALSE,
);
$options['sheetsave'] = array(
'default' => '',
);
return $options;
}