You are here

function theme_phone_part_label_number in Phone 7.2

Returns HTML for a phone 'number' label.

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

File

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

Code

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