diff options
author | arun <arun@nubati.net> | 2006-12-08 14:00:56 +0000 |
---|---|---|
committer | arun <arun> | 2006-12-08 14:00:56 +0000 |
commit | f0bbdae184fed051df8ae0e93a41e88c9442a7db (patch) | |
tree | 938102ae35324a9bb3e91492a53b4f48414ec2b6 /functions.php | |
parent | 351e3df476b7cc3d6d3db7ec5833367e449bbdfa (diff) | |
download | e-DoKo-f0bbdae184fed051df8ae0e93a41e88c9442a7db.tar.gz e-DoKo-f0bbdae184fed051df8ae0e93a41e88c9442a7db.tar.bz2 e-DoKo-f0bbdae184fed051df8ae0e93a41e88c9442a7db.zip |
added local time output
Diffstat (limited to 'functions.php')
-rw-r--r-- | functions.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/functions.php b/functions.php index 49e0a1d..ce48513 100644 --- a/functions.php +++ b/functions.php @@ -431,4 +431,18 @@ function display_cards($me,$myturn) return; } +function return_timezone($offset) +{ + switch($offset) + { + case '1': + $zone = "Europe/Berlin"; + break; + default: + $zone = "Europe/London"; + } + + return $zone; +} + ?>
\ No newline at end of file |