You are here

function cck_phone_theme in Phone Number 7

Same name and namespace in other branches
  1. 6 cck_phone.module \cck_phone_theme()

Implements hook_theme().

File

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

Code

function cck_phone_theme() {
  return array(
    'cck_phone_phone_number' => array(
      'render element' => 'element',
    ),
    'phone_number_extension' => array(
      'variables' => array(
        'extension' => NULL,
      ),
    ),
    'cck_phone_formatter_global_phone_number' => array(
      'variables' => array(
        'element' => NULL,
      ),
    ),
    'cck_phone_formatter_local_phone_number' => array(
      'variables' => array(
        'element' => NULL,
      ),
    ),
  );
}