You are here

function theme_date_part_label_second in Date 7

Same name and namespace in other branches
  1. 5.2 date_api_elements.inc \theme_date_part_label_second()
  2. 6.2 theme/theme.inc \theme_date_part_label_second()
  3. 6 date_api_elements.inc \theme_date_part_label_second()
  4. 7.3 date_api/theme/theme.inc \theme_date_part_label_second()
  5. 7.2 date_api/theme/theme.inc \theme_date_part_label_second()

File

date_api/theme/theme.inc, line 136
Theme files for Date API.

Code

function theme_date_part_label_second($vars) {
  $part_type = $vars['part_type'];
  $element = $vars['element'];
  return t('Second', array(), array(
    'context' => 'datetime',
  ));
}