map_month

  1. drupal
    1. 4.7
    2. 5
    3. 6 form.inc
    4. 7 form.inc
Versions
4.7 – 7 map_month($month)

Helper function for usage with drupal_map_assoc to display month names.

Related topics

Code

includes/form.inc, line 877

<?php
function map_month($month) {
  return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0);
}
?>