You are here

protected function field_timer_text_date_field_base::formatterDisplays in Field Timer 7.2

2 calls to field_timer_text_date_field_base::formatterDisplays()
field_timer_text_date_field_base::getSettingsForm in includes/field_timer_text.inc
@inheritdoc
field_timer_text_date_field_base::getSettingsSummary in includes/field_timer_text.inc
@inheritdoc

File

includes/field_timer_text.inc, line 423
Contains help classes to perform field_timer_text formatter related actions.

Class

field_timer_text_date_field_base
Base class for field_timer_text formatter and date field types.

Code

protected function formatterDisplays() {
  return array(
    'both' => t('Both Start and End dates'),
    'from' => t('Start date only'),
    'to' => t('End date only'),
  );
}