You are here

function date_tools_wizard_widget_types in Date 7.2

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

Implements hook_widget_types().

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

File

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

Code

function date_tools_wizard_widget_types() {
  $widget_types = array();
  foreach (date_field_widget_info() as $name => $info) {
    if (!strstr($name, '_repeat')) {
      $widget_types[$name] = $info['label'];
    }
  }
  return $widget_types;
}