map_month

5 form.inc map_month($month)
6 form.inc map_month($month)
7 form.inc map_month($month)
8 form.inc map_month($month)

Helper function for usage with drupal_map_assoc to display month names.

Related topics

1 call to map_month()

1 string reference to 'map_month'

File

includes/form.inc, line 876

Code

function map_month($month) {
  return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0);
}
Login or register to post comments