You are here

function _webform_theme_date in Webform 7.3

Same name and namespace in other branches
  1. 6.3 components/date.inc \_webform_theme_date()
  2. 6.2 components/date.inc \_webform_theme_date()
  3. 7.4 components/date.inc \_webform_theme_date()

Implements _webform_theme_component().

File

components/date.inc, line 35
Webform module date component.

Code

function _webform_theme_date() {
  return array(
    'webform_date' => array(
      'render element' => 'element',
      'file' => 'components/date.inc',
    ),
    'webform_display_date' => array(
      'render element' => 'element',
      'file' => 'components/date.inc',
    ),
    'webform_calendar' => array(
      'variables' => array(
        'component' => NULL,
        'calendar_classes' => NULL,
      ),
      'template' => 'templates/webform-calendar',
    ),
  );
}