You are here

function theme_partial_date_element in Partial Date 7

The theme wrapper for a single date component. todo: floating support.

1 theme call to theme_partial_date_element()
partial_date_element_info in ./partial_date.module
Implements hook_element_info().

File

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

Code

function theme_partial_date_element($variables) {
  $element = $variables['element'];
  return '<div class="partial-date-element clearfix">' . drupal_render_children($element) . '</div>';
}