connectsb / localebundle
Bundle for managing locales
Package info
github.com/ConnectSB/symfony2-locale-bundle
Type:symfony-bundle
pkg:composer/connectsb/localebundle
dev-master
2014-12-17 11:02 UTC
Requires
- symfony/symfony: >=2.1
This package is not auto-updated.
Last update: 2026-03-10 11:02:32 UTC
README
With this bundle you can get the country names of locales.
1) Installation
First you have to add the folowing lines to your composer.json file:
{ "require": { "connectsb/localebundle": "dev-master" } }
You also have to add the LocaleBundle to your AppKernel.php:
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new ConnectSB\TranslationBundle\ConnectSBLocaleBundle() ); } }
2) Usage
In the controller you can get the country of the language with the following method:
$this->get('connect_sb_locale_service')->getCountryOfLocale('en');
In Twig you can use the locale_to_country filter.