You are here

public function field_timer_jquery_countdown_led_base::getDefaultSettings in Field Timer 7.2

@inheritdoc

Overrides field_timer_formatter_interface::getDefaultSettings

1 call to field_timer_jquery_countdown_led_base::getDefaultSettings()
field_timer_jquery_countdown_led_date_field_base::getDefaultSettings in includes/field_timer_jquery_countdown_led.inc
@inheritdoc
1 method overrides field_timer_jquery_countdown_led_base::getDefaultSettings()
field_timer_jquery_countdown_led_date_field_base::getDefaultSettings in includes/field_timer_jquery_countdown_led.inc
@inheritdoc

File

includes/field_timer_jquery_countdown_led.inc, line 29
Help file. Contains help classes to perform field_timer_jquery_countdown_led formatter related actions.

Class

field_timer_jquery_countdown_led_base
Base class for field_timer_jquery_countdown_led formatter.

Code

public function getDefaultSettings() {
  return array(
    'type' => 'auto',
    'countdown_theme' => 'green',
    'max_count_of_days' => 2,
    'display_days' => 1,
    'display_hours' => 1,
    'display_minutes' => 1,
    'display_seconds' => 1,
  );
}