function event_get_dst_regions in Event 5.2
Same name and namespace in other branches
- 5 event_timezones.inc \event_get_dst_regions()
1 call to event_get_dst_regions()
- event_dst in ./
event.module - Display a page with the timezone and daylight savings time regions.
File
- ./
event.module, line 2896
Code
function event_get_dst_regions() {
static $regions;
if (!is_array($regions)) {
$regions = array(
0 => t('None'),
1 => t('Egypt'),
2 => t('Namibia'),
3 => t('Asia - Former USSR'),
4 => t('Iraq, Syria'),
5 => t('Israel'),
6 => t('Lebanon, Kirgizstan'),
7 => t('Palestine'),
8 => t('Iran'),
9 => t('South Australia'),
10 => t('Australia, Tasmania'),
11 => t('New Zealand'),
12 => t('Tonga'),
13 => t('EU and other European countries'),
14 => t('Russian Federation'),
15 => t('North America'),
16 => t('Cuba'),
17 => t('Brazil'),
18 => t('Chile'),
19 => t('Falklands'),
20 => t('Paraguay'),
);
}
return $regions;
}