You are here

function theme_phonefield_formatter_phonefield_plain in Phone Field 7

Theme function for 'plain' text field formatter.

File

./phonefield.module, line 527
Hooks for a module that defines a simple phone number field type.

Code

function theme_phonefield_formatter_phonefield_plain($vars) {
  $element = $vars['element'];
  return !empty($element['phonenumber']) ? check_plain($element['phonenumber']) : t('no phone');
}