You are here

function sheetnode_handler_field_cell::option_definition in Sheetnode 6

Same name and namespace in other branches
  1. 7.2 views/sheetnode_handler_field_cell.inc \sheetnode_handler_field_cell::option_definition()
  2. 7 views/sheetnode_handler_field_cell.inc \sheetnode_handler_field_cell::option_definition()

File

views/sheetnode_handler_field_cell.inc, line 4

Class

sheetnode_handler_field_cell

Code

function option_definition() {
  $options = parent::option_definition();
  $options['reference'] = array(
    'default' => '',
  );
  return $options;
}