protected function DateFormatter::country in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Datetime/DateFormatter.php \Drupal\Core\Datetime\DateFormatter::country()
Returns the default country from config.
Return value
string The config setting for country.default.
1 call to DateFormatter::country()
- DateFormatter::format in core/
lib/ Drupal/ Core/ Datetime/ DateFormatter.php - Formats a date, using a date type or a custom date format string.
File
- core/
lib/ Drupal/ Core/ Datetime/ DateFormatter.php, line 326 - Contains \Drupal\Core\Datetime\DateFormatter.
Class
- DateFormatter
- Provides a service to handle various date related functionality.
Namespace
Drupal\Core\DatetimeCode
protected function country() {
if ($this->country === NULL) {
$this->country = \Drupal::config('system.date')
->get('country.default');
}
return $this->country;
}