You are here

function date_tools_wizard_field_types in Date 7.2

Same name and namespace in other branches
  1. 8 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()
  2. 6.2 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()
  3. 7.3 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()
  4. 7 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()

Implements hook_field_types().

1 call to date_tools_wizard_field_types()
date_tools_wizard_form in date_tools/date_tools.wizard.inc
Implements hook_form().

File

date_tools/date_tools.wizard.inc, line 316
The Date Wizard code.

Code

function date_tools_wizard_field_types() {
  $field_types = array();
  foreach (date_field_info() as $name => $info) {
    $field_types[$name] = $info['label'];
  }
  return $field_types;
}