You are here

public function AccountProxy::getTimeZone in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Session/AccountProxy.php \Drupal\Core\Session\AccountProxy::getTimeZone()

Returns the timezone of this account.

Return value

string Name of the timezone.

Overrides AccountInterface::getTimeZone

File

core/lib/Drupal/Core/Session/AccountProxy.php, line 149
Contains \Drupal\Core\Session\AccountProxy.

Class

AccountProxy
A proxied implementation of AccountInterface.

Namespace

Drupal\Core\Session

Code

public function getTimeZone() {
  return $this
    ->getAccount()
    ->getTimeZone();
}