You are here

function sheetnode_field_formatter_info in Sheetnode 5

Same name and namespace in other branches
  1. 6 sheetnode.module \sheetnode_field_formatter_info()
  2. 7.2 sheetnode.module \sheetnode_field_formatter_info()
  3. 7 sheetnode.module \sheetnode_field_formatter_info()

Implementation of hook_field_formatter_info().

File

./sheetnode.module, line 481

Code

function sheetnode_field_formatter_info() {
  return array(
    'default' => array(
      'label' => t('Default'),
      'field types' => array(
        'sheetfield',
      ),
      'multiple values' => CONTENT_HANDLE_CORE,
    ),
    'socialcalc_date' => array(
      'label' => t('SocialCalc'),
      'field types' => array(
        'date',
        'datetime',
        'datestamp',
      ),
      'multiple values' => CONTENT_HANDLE_CORE,
    ),
  );
}