vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   BB Code Enhancements - Time Zone Times (https://vborg.vbsupport.ru/showthread.php?t=257590)

Vowgaming 01-21-2011 10:00 PM

Time Zone Times
 
1 Attachment(s)
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.

Dr.osamA 01-24-2011 10:13 AM

5 stars

installed

thank you bro

NovoCiv 02-06-2011 08:03 PM

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?

Vowgaming 02-08-2011 09:08 PM

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


All times are GMT. The time now is 06:39 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00950 seconds
  • Memory Usage 1,716KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete