Download the PHP package hostnet/entity-translation-bundle without Composer
On this page you can find all versions of the php package hostnet/entity-translation-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hostnet/entity-translation-bundle
More information about hostnet/entity-translation-bundle
Files in hostnet/entity-translation-bundle
Package entity-translation-bundle
Short Description Translation bundle to help with rendering pretty names for enum-like classes.
License MIT
Informations about the package entity-translation-bundle
entity-translation-bundle
This bundle allows the automation of translating an enum value to a human readable string, for example, displaying a status text instead of the enum-value of a status code.
In it's essence, it allows to map a value to a translation within the domain that is the class name. What this means in practice is that you can use it as follows:
Or in a twig template:
Requirements
The entity translation bundle requires at least php 7.3 and the symfony translation component. For specific requirements, please check composer.json
Installation
Installing is pretty straightforward, this package is available on packagist.
Example
Register The Bundle in your AppKernel
This bundle makes use of the translator which is registered by the framework bundle. So make sure you register this bundle after the FrameworkBundle
.
Usage
Simply add an enum.en.yml
to the translations folder in the Resources folder of one of your bundles. This will contain the translations for a given enum. The translation keys are the fully qualified namespaces in lowercase and an _
between CamelCase words. So for instance the enum AppBundle\Entity\SetupStatus
would become app_bundle.entity.setup_status
.
Consider the following class:
Your AppBundle/Resources/translations/enum.en.yml
could look as followed:
The translator will then pick up all enum classes defined in your translation file.
All versions of entity-translation-bundle with dependencies
doctrine/annotations Version ^1.3
symfony/config Version ^5.4|^6.0
symfony/dependency-injection Version ^5.4|^6.0
symfony/framework-bundle Version ^5.4|^6.0
symfony/http-kernel Version ^5.4|^6.0
symfony/routing Version ^5.4|^6.0
symfony/translation Version ^5.4|^6.0
symfony/yaml Version ^5.4|^6.0