You are here

function theme_isbn_formatter_clean in ISBN Field 6

Theme function for 'clean' ISBN field formatter Removes dashes and spaces.

File

./isbn.module, line 324
Defines ISBN field types.

Code

function theme_isbn_formatter_clean($element) {
  $string = isbn_clean($element['#item']['value']);
  return $string;
}