View Full Version : User Defined Date & Time Format Display
eoc_Jason
10-02-2005, 10:00 PM
User Defined Date & Time Format Display
This is a simple add-in that allows your users to select a US / European date and time format. The "vB" way is supposed to be copying the languages and then setting defaults, but I find this as a much easier and cleaner alternative.
Date Formats:
- US Format
- Expanded US Format
- European Format
- Expanded European Format
Time Formats:
- 12-Hour Time Format
- 24-Hour Time Format
Read the text file as you will need to create two additional user fields. The XML file will create the actual plugin, however it will need to be modified to match up with the two "just created" user fields.
No further modifications are needed. All date / time displays will then be in whatever format the user chooses via their options.
Image attached of UserCP Options. Setting these will globally change any date / time display on the forum (for that user).
Changelog
v1.0.0 - Initial Release
Keyser S?ze
10-03-2005, 05:49 PM
very neat hack my man, very nice, i got alot of users in the UK so they will appreciate this one
Sooner95
10-03-2005, 06:38 PM
same here... thanks
I used this for 3.0.X, will use this for 3.5. Thanks.
MGM out
Boofo
10-04-2005, 08:36 AM
I hate to ask, but a screenshot would be nice on this one. ;)
eoc_Jason
10-04-2005, 05:51 PM
Okay, posted a screenshot in the UserCP... Like I said before, all it does is change how the date / time is formatted on all the pages for the user.
csidlernet
10-05-2005, 02:57 AM
Thanks lots!
/me install
JulianD
12-06-2005, 02:29 PM
Would be nice to have an option for the user to select the Yesterday/Today mode or the detailed mode (1 minute ago, 1 hour ago, 1 day ago.. and so on).
Great hack!
eoc_Jason
12-06-2005, 11:24 PM
You should be able to override that option too. Just folow the same methodology...
Would be nice to have an option for the user to select the Yesterday/Today mode or the detailed mode (1 minute ago, 1 hour ago, 1 day ago.. and so on).
Great hack!
JulianD
12-07-2005, 04:23 PM
You should be able to override that option too. Just folow the same methodology...
Thanks Jason... Some users on my forums complained about the detailed mode so I wanted to give them the option to override this to another mode... I might take a look at your code later.
ShadowOne
04-10-2006, 03:11 PM
Thank You EXACTLY What I Needed....
Bhuwan
04-13-2006, 10:59 PM
Very nice...I've installed this...The only complaint I had was it wasn't doing the bottom portion of the time (All times are in GMT <> The time now is <>).
The reason is becuase that is calcualted BEFORE global_start is executed, so it takes the lang default...I solved this by changing the code a bit and moving it to fetch_userinfo....
zetetic
01-07-2007, 10:55 AM
Nice hack, thanks!
FYI, I've just installed it on 3.6.4 without any issues.
molieman
02-10-2007, 08:09 PM
however it will need to be modified to match up with the two "just created" user fields.
Hi, could you be a bit more specific on what I need to do, regarding modified to match....
Thanks in advance.
Maybe it requires more of an explanation from me.... I installed it in 3.6.4 and it ain't working. Looked pretty straight forward, just want to make sure I'm not missing anything.
Any guidance, will be appreciated :)
molieman
02-11-2007, 02:47 PM
Answered my own question. For those asking the same question....
########## Modify The Plugin Code ##########
AdminCP -> Plugin Manager -> Plugin Manager
Custom Date & Time Formats -> Edit
In the PHP Code look for:
// ############ Date Format as Uservalue ################
switch ($vbulletin->userinfo['field12']) {
Change the 12 (next to field) to the field number matched to the User Profile Field (Field#) you created for "Date Format"
Now look for:
// ############ Time Format as Uservalue ################
switch ($vbulletin->userinfo['field13']) {
Change the 13 (next to field) to the field number matched to the User Profile Field (Field#) you created for "Time Format"
-----------------------------------------
Hope this helps:)
KrisP
02-17-2007, 10:38 PM
delete
Caerydd
02-19-2008, 02:42 PM
Looking for this for 3.6.8 and 3.7.x :( or a confirmation that it's working in 3.6.8
zetetic
06-29-2008, 08:46 PM
It's working for me in 3.7.2 except for one thing, but I'm not sure if this is a new or old issue:
The time at the bottom of the forum index doesn't seem to be affected by this plugin.
imported_silkroad
10-30-2008, 07:45 PM
In vB 3.7, I tried to install this as a product, but it will not install, giving a message to install as a plugin.
In the plugin manager, the following are required:
Product
Hook Location
This specifies the location within the vBulletin code of the hook that will fire this plugin function.
Title Enter a title that describes this plugin.
Execution Order
Use this field to enter the order in which code at the same hook will be executed.
Plugin PHP Code
Use this field to enter the PHP code that you would like to be run.
Could we get some instructions on the hook location in the vBulletin product?
Thanks!
visitangeles
05-03-2009, 06:46 AM
In vB 3.7, I tried to install this as a product, but it will not install, giving a message to install as a plugin.
In the plugin manager, the following are required:
Could we get some instructions on the hook location in the vBulletin product?
Thanks!
has anyone figured out how to install this on 3.8x?
Dunhamzzz
05-25-2009, 04:23 PM
I second the above post. Need a 3.8 version!
rsuplido
09-08-2009, 07:21 PM
This will work on 3.8. Don't upload the XML. Just add the plugin directly using 'Add New Plugin' at the CP.
Product: vbuletin
Hook Location: global_start
Title: Custom Date & Time Formats
Execution Order: 5 - I don't know if this needs to be changed but 5 works fine on mine.
Plugin PHP Code:
if ($vbulletin->userinfo['userid']) {
// ############ Date Format as Uservalue ################
switch ($vbulletin->userinfo['field7']) {
case 'US Format':
$vbulletin->options['dateformat'] = 'm-d-y';
break;
case 'Expanded US Format':
$vbulletin->options['dateformat'] = 'M jS, Y';
break;
case 'European Format':
$vbulletin->options['dateformat'] = 'd-m-y';
break;
case 'Expanded European Format':
$vbulletin->options['dateformat'] = 'jS M Y';
break;
default:
$vbulletin->options['dateformat'] = 'm-d-y';
}
// ############ Time Format as Uservalue ################
switch ($vbulletin->userinfo['field8']) {
case '12-Hour Time Format':
$vbulletin->options['timeformat'] = 'h:i A';
break;
case '24-Hour Time Format':
$vbulletin->options['timeformat'] = 'H:i';
break;
default:
$vbulletin->options['timeformat'] = 'h:i A';
}
}
Note that you still need to create the two user fields specified in the .txt file and change the 'fieldx' fields (I'm using field7 and field8 on mine) on the PHP Code (above) corresponding to the two field id's you have created.
Hope this helps.
MoMan
06-29-2010, 05:43 PM
Very nice...I've installed this...The only complaint I had was it wasn't doing the bottom portion of the time (All times are in GMT <> The time now is <>).
The reason is becuase that is calcualted BEFORE global_start is executed, so it takes the lang default...I solved this by changing the code a bit and moving it to fetch_userinfo....
I've done this as well. Here is the code you need to use if you want to place the hook at fetch_userinfo:
// ############ Date Format as Uservalue ################
switch ($user['field14']) {
case 'US Format':
$vbulletin->options['dateformat'] = 'm-d-y';
break;
case 'Expanded US Format':
$vbulletin->options['dateformat'] = 'M jS, Y';
break;
case 'European Format':
$vbulletin->options['dateformat'] = 'd-m-y';
break;
case 'Expanded European Format':
$vbulletin->options['dateformat'] = 'jS M Y';
break;
default:
$vbulletin->options['dateformat'] = 'm-d-y';
}
// ############ Time Format as Uservalue ################
switch ($user['field15']) {
case '12-Hour Time Format':
$vbulletin->options['timeformat'] = 'h:i A';
break;
case '24-Hour Time Format':
$vbulletin->options['timeformat'] = 'H:i';
break;
default:
$vbulletin->options['timeformat'] = 'h:i A';
}
Remember to change 14 and 15 to whatever your fields are.
Amaury
07-16-2012, 12:48 AM
Is it possible to add more formats or allow users to put in their own custom format via the modification's options in the Admin CP, such as here?
Edit: This would be used on a forum running vBulletin 4.2.0, as seen by my signature, but KH99 said it should work.
I guess I'll answer since the author hasn't been around in a while: You could add additional formats, since with this mod you have to manually create the custom profile fields anyway. You would need to add any additional formats to the custom profile field(s) and to the code in the plugin. (And in any case the plugin would probably need to be edited so that it's using the correct custom field numbers).
To allow a user to enter a custom setting you could create another profile field (or two, for date and time) that are text fields, then have each dropdown have an option for using the custom format. Then the plugin would have to check for the dropdown field being "Custom", and if so use the content of the text field as the format, like:
case 'Custom Date Format':
$vbulletin->options['dateformat'] = $vbulletin->userinfo['fieldX'];
break;
Snowhog
09-02-2012, 09:22 PM
This is a very old MOD, and has never been modified since being posted. Never the less, in vBulletin Version 4.2.0 Patch Level 2 (currently), this 'feature' is lacking and many of our European members have lamented at this lack of what they feel, and I concur with, is an essential user setting.
I followed the instructions and had it setup within just a few minutes.
Marked as Installed, voted as Excellent, and nominated for MOTM.
Snowhog
09-08-2012, 11:37 PM
I guess I'll answer since the author hasn't been around in a while: You could add additional formats, since with this mod you have to manually create the custom profile fields anyway. You would need to add any additional formats to the custom profile field(s) and to the code in the plugin. (And in any case the plugin would probably need to be edited so that it's using the correct custom field numbers).
To allow a user to enter a custom setting you could create another profile field (or two, for date and time) that are text fields, then have each dropdown have an option for using the custom format. Then the plugin would have to check for the dropdown field being "Custom", and if so use the content of the text field as the format, like:
case 'Custom Date Format':
$vbulletin->options['dateformat'] = $vbulletin->userinfo['fieldX'];
break;
This is how we modified the MOD:
if ($vbulletin->userinfo['userid']) {
// ############ Date Format as Uservalue ################
switch ($vbulletin->userinfo['field5']) {
case 'US Format':
$vbulletin->options['dateformat'] = 'm-d-y';
break;
case 'Expanded US Format':
$vbulletin->options['dateformat'] = 'M jS, Y';
break;
case 'European Format':
$vbulletin->options['dateformat'] = 'd-m-y';
break;
case 'Expanded European Format':
$vbulletin->options['dateformat'] = 'jS M Y';
break;
// ### Begin MOD by SteveRiley 2012-09-02 ###
case 'ISO Format':
$vbulletin->options['dateformat'] = 'Y-m-d';
break;
case 'Counting Format':
$vbulletin->options['dateformat'] = 'o:W:N/z';
break;
// ### End MOD by SteveRiley 2012-09-02 ###
default:
$vbulletin->options['dateformat'] = 'm-d-y';
}
// ############ Time Format as Uservalue ################
switch ($vbulletin->userinfo['field6']) {
case '12-Hour Time Format':
$vbulletin->options['timeformat'] = 'h:i A';
break;
case '24-Hour Time Format':
$vbulletin->options['timeformat'] = 'H:i';
break;
// ### Begin MOD by SteveRiley 2012-09-02 ###
case 'Swatch Internet Format':
$vbulletin->options['timeformat'] = 'B';
break;
case 'Unix Epoch Format':
$vbulletin->options['timeformat'] = 'U';
break;
// ### End MOD by SteveRiley 2012-09-02 ###
default:
$vbulletin->options['timeformat'] = 'h:i A';
}
}
fpgeeks
05-06-2013, 01:51 PM
Could someone please explain in simple, step by step instructions how to get this to work in 4.2.0?
fwulfers
10-15-2013, 03:25 PM
I used the original mod instructions and the user comments in this thread to write up complete instructions for vB4: https://vborg.vbsupport.ru/showthread.php?t=303431
Thanks to all who contributed in this thread, hope you don't mind.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.