Twig Components / Methods / country_timezones
Note: You are currently reading the documentation for Bolt 5.0. Looking for the documentation for Bolt 5.2 instead?
country_timezones(country)
is a Twig function to return the names of the timezones associated with a given country code:
{# Europe/Paris #}
{{ country_timezones('FR')|join(', ') }}
NoteΒΆ
The country_timezones function is part of the IntlExtension which is not installed by default. Install it first:
$ composer require twig/intl-extra</pre>
Then, on Symfony projects, install the twig/extra-bundle:
$ composer require twig/extra-bundle</pre>
Otherwise, add the extension explicitly on the Twig environment:
```twig
use Twig\Extra\Intl\IntlExtension;
$twig = new \Twig\Environment(...);
$twig->addExtension(new IntlExtension());</pre>
Source: Twig
Edit this page on GitHub
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.