You are here

function theme_partial_date_markup in Partial Date 7

1 theme call to theme_partial_date_markup()
partial_date_field_formatter_view in ./partial_date.module
Implements hook_field_formatter_view().

File

./partial_date.module, line 538
Defines a date element that allows for any combination of date granularity settings.

Code

function theme_partial_date_markup($variables) {
  $element = $variables['element'];
  return $element['#markup'];
}