You are here

function _webform_theme_number in Webform 6.3

Same name and namespace in other branches
  1. 7.4 components/number.inc \_webform_theme_number()
  2. 7.3 components/number.inc \_webform_theme_number()

Implements _webform_theme_component().

File

components/number.inc, line 44
Webform module number component.

Code

function _webform_theme_number() {
  return array(
    'webform_number' => array(
      'variables' => array(
        'element' => NULL,
      ),
      'file' => 'components/number.inc',
    ),
    'webform_display_number' => array(
      'variables' => 'element',
      'file' => 'components/number.inc',
    ),
  );
}