You are here

function cck_phone_element_info in Phone Number 7

Implements hook_element_info().

File

./cck_phone.module, line 715
Defines phone number fields for CCK. Provide some verifications on the phone numbers

Code

function cck_phone_element_info() {
  $path = drupal_get_path('module', 'cck_phone');
  $types['phone_number'] = array(
    '#input' => TRUE,
    '#process' => array(
      'cck_phone_phone_number_process',
    ),
    '#element_validate' => array(
      'cck_phone_phone_number_validate',
    ),
    '#theme' => 'cck_phone_phone_number',
    '#theme_wrappers' => array(
      'form_element',
    ),
    '#attached' => array(
      'css' => array(
        $path . '/cck_phone.css',
      ),
    ),
  );
  return $types;
}