Version: 1.00, by Vowgaming
Developer Last Online: Jun 2012
Category: BB Code Enhancements -
Version: 4.0.x
Rating:
Released: 01-21-2011
Last Update: Never
Installs: 9
Re-useable Code Translations
No support by the author.
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:
Code:
<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 : [timezone]10,3,2011,02,30[/timezone]
Description : Inset gmt time to show time in users local area format must be [timezone]day,month,year,hr,minutes[/timezone] 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 [timezone]day,month,year,hr,min[/timezone] This info must be entered as gmt data
Now if anyone can improve or give and advice feel free.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
I recently made something similar to this, but it was as simple as [gmt]12:45[/gmt].
The issue I ran into was that when a user makes or edits a post with this it goes to a blank page because of the document.write. I don't see anything that you've done to prevent this, so I assume it happens to you as well?
I was not aware of this issue. but now I go back and check and edit a post I see the issue mentioned it does not show up on the inital posting only on editing the post.
This is such a required thing for the site and can put up with this small issue
You can still edit your post and change the time and date but once you submit your changes it takes you to a white page because of the document.write
As I Mentioned in the inital post I'm no profesional so anyone has a better way any help would be great