Provides common additions to Symfony.
composer require mpom/symfony-extra-bundle
Add to your AppKernel.php:
public function registerBundles()
{
$bundles = array(
// ...
new SymfonyExtraBundle\SymfonyExtraBundle,
// ...
)
}
In your parameters.yml file add 2 new options:
locale: en # default locale
locales: [en, de, it, fr] # all supported locales
Detects user's locale using different strategies (in this order):
- Query
- Cookie
- Accept Header
Provides LocaleManger service (@se_locale_manager)
Provides pagination function for rendering paginations ;D
{{ pagination(totalItems, itemsPerPage, route, currentPage = 1, template ='SymfonyExtraBundle::pagination.html.twig') }}
Formats string as money appending currency symbol (locale-based).
{{ value|money }} # CHF 1'200.00
####Transports:
#####Mandrill Requires installation of "hipaway-travel/mandrill-bundle"
#####File Requires parameter "mailer_local_dir" to be set.
####Plugins:
#####CssToInline
Extracts styles external css file into inline styles for every html message, requires "tijsverkoyen/css-to-inline-styles".
Set option "email_css_file" of section "symfony_extra" of "config.yml" to valid *.less file.