You are here

function cck_phone_theme in Phone Number 6

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

Implementation of hook_theme().

File

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

Code

function cck_phone_theme() {
  return array(
    'phone_number' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'phone_number_extension' => array(
      'arguments' => array(
        'extension' => '',
      ),
    ),
    'cck_phone_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'cck_phone_formatter_local' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'cck_phone_mobile_tel' => array(
      'arguments' => array(
        'element' => NULL,
        'phone' => '',
      ),
    ),
  );
}