You are here

function phone_theme in Phone 6

Same name and namespace in other branches
  1. 7.2 phone.module \phone_theme()

Implementation of hook_theme().

File

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

Code

function phone_theme() {
  return array(
    'phone_textfield' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'phone_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}