You are here

function theme_textformatter_formatter_text_comma_and_period in Text list formatter 6

Theme a textfield as a comma-separated list with an "and" and period.

1 string reference to 'theme_textformatter_formatter_text_comma_and_period'
textformatter_theme in ./textformatter.module
Implementation of hook_theme().

File

./textformatter.module, line 122

Code

function theme_textformatter_formatter_text_comma_and_period($element) {
  $phrase = theme_textformatter_formatter_text_comma_and($element);
  if ($phrase) {
    return $phrase . '.';
  }
  return NULL;
}