You are here

function phonefield_element_info in Phone Field 7

Implements hook_element_info().

File

./phonefield.module, line 292
Hooks for a module that defines a simple phone number field type.

Code

function phonefield_element_info() {
  $elements = array();
  $elements['phonefield_field'] = array(
    '#input' => TRUE,
    '#process' => array(
      'phonefield_field_process',
    ),
    '#theme' => 'phonefield_field',
    '#theme_wrappers' => array(
      'form_element',
    ),
  );
  return $elements;
}