You are here

function theme_phone_part_label_extension in Phone 7.2

Returns HTML for a phone 'extension' label.

1 theme call to theme_phone_part_label_extension()
phone_element_process in includes/phone.element.inc
Process an individual phone element.

File

includes/phone.element.inc, line 304
Provides FAPI implementation for a phone element.

Code

function theme_phone_part_label_extension($variables) {
  return t('Extension', array(), array(
    'context' => 'phone',
  ));
}