You are here

function date_formatter_settings in Date 6.2

2 calls to date_formatter_settings()
date_content_display_form in date/date.module
Insert Date field formatter settings into the Display Fields form.
date_handler_field_multiple::options_form in date/date_handler_field_multiple.inc
Provide 'group multiple values' option, adapted to the needs of the Date module.

File

date/date.module, line 552
Defines date/time field types for the Content Construction Kit (CCK).

Code

function date_formatter_settings($form_state = NULL, $field, $options = array(), $views_form = FALSE) {
  require_once './' . drupal_get_path('module', 'date') . '/date_admin.inc';
  return _date_formatter_settings($form_state, $field, $options, $views_form);
}