DateFormatter::country

protected DateFormatter::country()

Returns the default country from config.

Return value

string The config setting for country.default.

File

core/lib/Drupal/Core/Datetime/DateFormatter.php, line 339

Class

DateFormatter
Provides a service to handle various date related functionality.

Namespace

Drupal\Core\Datetime

Code

protected function country() {
  if ($this->country === NULL) {
    $this->country = \Drupal::config('system.date')->get('country.default');
  }
  return $this->country;
}
doc_Drupal
2016-10-29 09:00:45
Comments
Leave a Comment

Please login to continue.