You are here

public static function User::getAllowedTimezones in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::getAllowedTimezones()

Defines allowed timezones for the field's AllowedValues constraint.

Return value

string[] The allowed values.

File

core/modules/user/src/Entity/User.php, line 562
Contains \Drupal\user\Entity\User.

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public static function getAllowedTimezones() {
  return array_keys(system_time_zones());
}