You are here

function theme_cck_time_formatter_default in CCK Time 7

Same name and namespace in other branches
  1. 6 cck_time.module \theme_cck_time_formatter_default()

Theme function for 'default' text field formatter.

1 theme call to theme_cck_time_formatter_default()
cck_time_field_formatter_view in ./cck_time.module
Implements hook_field_formatter_view().

File

./cck_time.module, line 313
Creates a time widget for CCK text fields

Code

function theme_cck_time_formatter_default($variables) {
  return '<span>' . $variables['item'] . '</span>';
}