You are here

function sheetnode_plugin_style::option_definition in Sheetnode 6

Same name and namespace in other branches
  1. 7.2 views/sheetnode_plugin_style.inc \sheetnode_plugin_style::option_definition()
  2. 7 views/sheetnode_plugin_style.inc \sheetnode_plugin_style::option_definition()
1 call to sheetnode_plugin_style::option_definition()
sheetnode_feed_plugin_style::option_definition in views/sheetnode_plugin_style.inc
1 method overrides sheetnode_plugin_style::option_definition()
sheetnode_feed_plugin_style::option_definition in views/sheetnode_plugin_style.inc

File

views/sheetnode_plugin_style.inc, line 9

Class

sheetnode_plugin_style

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;
}