You are here

function oa_events_field_formatter_info in Open Atrium Events 7.2

Implements hook_field_formatter_info().

File

./oa_events.module, line 19
Code for the OA Events feature.

Code

function oa_events_field_formatter_info() {
  return array(
    'oa_events_date_formatter' => array(
      'label' => t('Open Atrium Date Formatter'),
      'field types' => array(
        'datestamp',
      ),
    ),
    'oa_events_upcoming_date' => array(
      'label' => t('Next Upcoming Date'),
      'field types' => array(
        'datestamp',
      ),
    ),
    'oa_events_addthis' => array(
      'label' => t('AddThis Calendar Widget'),
      'field types' => array(
        'datestamp',
      ),
    ),
  );
}