You are here

function date_tools_wizard_field_types in Date 6.2

Same name and namespace in other branches
  1. 8 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()
  2. 7.3 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()
  3. 7 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()
  4. 7.2 date_tools/date_tools.wizard.inc \date_tools_wizard_field_types()
1 call to date_tools_wizard_field_types()
date_tools_wizard_form in date_tools/date_tools.wizard.inc
@file Date Wizard code.

File

date_tools/date_tools.wizard.inc, line 290
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'];

    //.' - '. $info['description'];
  }
  return $field_types;
}