Vowgaming
01-21-2011, 10:00 PM
I have seen this requested a few times and required this for my own site so I thought it would be nice to share my solution.
This bbcode will take a date and time submitted in gmt time and display it in the time of the readers time zone
I have tried this on my site with just a 4 users and seems to work fine im using 4.1 but see no reason why this should not work on earlier versions
I would also like to state, I do not know javascript and im sure others could improve this code and please do so, but in it's current form it does what it needs
Go to you admincp, custom bb code, add new bbcode
Title: timezone
BB Code Tag Name : timezone
Replacement:
<script type="text/javascript">
text1a = "{param}";
var myarray = text1a.split(',');
var d = new Date();
d.setUTCDate(myarray[0]);
d.setUTCMonth(myarray[1]-1);
d.setUTCHours(myarray[3]);
d.setUTCMinutes(myarray[4]);
d.setUTCSeconds(0);
document.write(d + "<br />");
</script>
Example : 10,3,2011,02,30
Description : Inset gmt time to show time in users local area format must be day,month,year,hr,minutes must be put in as gmt time and each item seperated by a ,
Use {option} : no
Button Image : here I used a link to a picture of a clock
Remove Tag If Empty: Yes
Disable BB Code Within This BB Code: Yes
Disable Smilies Within This BB Code: Yes
Disable Word Wrapping Within This BB Code: Yes
Disable Automatic Link Parsing Within This BB Code: Yes
That it now save
Usage is day,month,year,hr,min
This info must be entered as gmt data
Now if anyone can improve or give and advice feel free.
This bbcode will take a date and time submitted in gmt time and display it in the time of the readers time zone
I have tried this on my site with just a 4 users and seems to work fine im using 4.1 but see no reason why this should not work on earlier versions
I would also like to state, I do not know javascript and im sure others could improve this code and please do so, but in it's current form it does what it needs
Go to you admincp, custom bb code, add new bbcode
Title: timezone
BB Code Tag Name : timezone
Replacement:
<script type="text/javascript">
text1a = "{param}";
var myarray = text1a.split(',');
var d = new Date();
d.setUTCDate(myarray[0]);
d.setUTCMonth(myarray[1]-1);
d.setUTCHours(myarray[3]);
d.setUTCMinutes(myarray[4]);
d.setUTCSeconds(0);
document.write(d + "<br />");
</script>
Example : 10,3,2011,02,30
Description : Inset gmt time to show time in users local area format must be day,month,year,hr,minutes must be put in as gmt time and each item seperated by a ,
Use {option} : no
Button Image : here I used a link to a picture of a clock
Remove Tag If Empty: Yes
Disable BB Code Within This BB Code: Yes
Disable Smilies Within This BB Code: Yes
Disable Word Wrapping Within This BB Code: Yes
Disable Automatic Link Parsing Within This BB Code: Yes
That it now save
Usage is day,month,year,hr,min
This info must be entered as gmt data
Now if anyone can improve or give and advice feel free.