function theme_datetime in Drupal PM (Project Management) 7
Provides theming for the datetime element.
File
- ./
pm.theme.inc, line 39 - Provides theme functions for Project Management modules
Code
function theme_datetime($element) {
return theme('form_element', $element, '<div class="container-inline">' . $element['#children'] . '</div>');
}