function date_get_dst_regions in Date 5
1 call to date_get_dst_regions()
- date_is_dst in ./
date_timezones.inc - Check if time is in Daylight Savings Time
File
- ./
date_timezones.inc, line 163
Code
function date_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;
}