function date_restrictions_db_timezone in Date Restrictions 7
Helper to get the configured timezone for a field.
Fallbacks to default timezone.
1 call to date_restrictions_db_timezone()
- date_restrictions_dateobject in ./
date_restrictions.module - Helper to instantiate a DateObject based on $element timezone.
File
- ./
date_restrictions.module, line 308
Code
function date_restrictions_db_timezone($element) {
return !empty($element['#field']) ? date_get_timezone_db($element['#field']['settings']['tz_handling']) : date_default_timezone();
}