You are here

function sheetnode_elements in Sheetnode 5

Same name and namespace in other branches
  1. 6 sheetnode.module \sheetnode_elements()

Implementation of FAPI hook_elements().

File

./sheetnode.module, line 538

Code

function sheetnode_elements() {
  return array(
    'sheetfield_spreadsheet' => array(
      '#input' => TRUE,
      '#columns' => array(
        'value',
      ),
      '#delta' => 0,
      '#process' => array(
        'sheetfield_spreadsheet_process',
      ),
      '#autocomplete_path' => FALSE,
    ),
  );
}