function drupal_get_user_timezone

Same name in other branches
  1. 8.9.x core/includes/bootstrap.inc \drupal_get_user_timezone()

Returns the time zone of the current user.

4 calls to drupal_get_user_timezone()
drupal_session_initialize in includes/session.inc
Initializes the session handler, starting a session if needed.
drupal_session_regenerate in includes/session.inc
Called when an anonymous user becomes authenticated or vice-versa.
FormatDateUnitTest::testFormatDate in modules/simpletest/tests/common.test
Tests for the format_date() function.
_drupal_bootstrap_page_cache in includes/bootstrap.inc
Attempts to serve a page from the cache.

File

includes/bootstrap.inc, line 2631

Code

function drupal_get_user_timezone() {
    global $user;
    if (variable_get('configurable_timezones', 1) && $user->uid && $user->timezone) {
        return $user->timezone;
    }
    else {
        // Ignore PHP strict notice if time zone has not yet been set in the php.ini
        // configuration.
        return variable_get('date_default_timezone', @date_default_timezone_get());
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.