function map_month
Same name and namespace in other branches
- 7.x drupal-7.x/includes/form.inc \map_month()
Helper function for usage with drupal_map_assoc to display month names.
Related topics
1 call to map_month()
- profile_view_field in drupal-6.x/
modules/ profile/ profile.module
1 string reference to 'map_month'
- expand_date in drupal-6.x/
includes/ form.inc - Roll out a single date element.
Archivo
- drupal-6.x/
includes/ form.inc, line 1743
Código
function map_month($month) {
return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0);
}