You are here

function jquery_countdown_date_get_field_settings in jQuery Countdown 6

Helper function to get the widget settings. Based on the galleryformatter module

1 call to jquery_countdown_date_get_field_settings()
theme_jquery_countdown_date_formatter_jquery_countdown_default in jquery_countdown_date/jquery_countdown_date.formatter.inc
@file containes the cck formatter settings

File

jquery_countdown_date/jquery_countdown_date.module, line 71
provides a jquery.countdown formatter for "date" field and settings in the date widget

Code

function jquery_countdown_date_get_field_settings($field_name, $content_type) {
  $field = content_fields($field_name, $content_type);
  return $field['widget'];
}