Quote:
Originally Posted by kh99
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:
Code:
case 'Custom Date Format':
$vbulletin->options['dateformat'] = $vbulletin->userinfo['fieldX'];
break;
|
This is how we modified the MOD:
Code:
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';
}
}