You are here

function node_field_sheet_node_field_info_alter in Node Field 7.2

Implements hook_node_field_info_alter().

File

modules/node_field_sheet/node_field_sheet.module, line 13

Code

function node_field_sheet_node_field_info_alter(&$items) {
  $items += array(
    'sheet' => array(
      'type' => 'sheet',
      'label' => t('Sheet'),
      'widget' => 'node_field_sheet_widget',
      'formatter' => 'node_field_sheet_formatter',
      'settings' => 'node_field_default_field_settings',
    ),
  );
}