| Versionen | |
|---|---|
| drupal6 – drupal7 | map_month($month) |
Helper function for usage with drupal_map_assoc to display month names.
includes/
<?php
function map_month($month) {
static $months = array(
1 => 'Jan',
2 => 'Feb',
3 => 'Mar',
4 => 'Apr',
5 => 'May',
6 => 'Jun',
7 => 'Jul',
8 => 'Aug',
9 => 'Sep',
10 => 'Oct',
11 => 'Nov',
12 => 'Dec',
);
return t($months[$month]);
}
?>
Kommentare
Kommentar hinzufügen