PDA

View Full Version : Timezone variable in VB


AdmiralGeek
02-04-2008, 09:04 AM
I am writing some PHP that will only allow access to a certain modification on certain days depending on the server's timezone. the code is ready and implements perfect. Even tho i have to compensate for the difference in timezones, the server is located in a different time zone.

But some of the forum users are from a different time zone.

i know i can add multiple || && to the booleans but, is there not a VB variable that controls various functions that is set by the timezone set by the user in the forum control panel?

Dismounted
02-09-2008, 02:05 AM
$vbulletin->userinfo['timezoneoffset']
You also have to compensate for DST, so it would be:
if ($vbulletin->userinfo['dstonoff'])
{
$tzoffset = $vbulletin->userinfo['timezoneoffset'] + 1;
}

Boofo
02-09-2008, 02:07 AM
Or:

$userinfo['tzoffset'] = $userinfo['timezoneoffset'];

if ($userinfo['dstonoff'])
{
// DST is on, add an hour
$userinfo['tzoffset']++;
}

massi64
07-20-2009, 06:31 AM
well i try that , but dosen't work for me i use vbulleting 3.8.3 , a may be the reason ??

please help