yokai / enum-bundle
Simple enumeration system with Symfony integration
Installs: 79 833
Dependents: 1
Suggesters: 0
Security: 0
Stars: 12
Watchers: 6
Forks: 5
Open Issues: 4
Type:symfony-bundle
Requires
- php: ^8.2
- symfony/framework-bundle: ^7.0
Requires (Dev)
- doctrine/annotations: ^1.14
- myclabs/php-enum: ^1.8
- phpstan/phpstan: ^1.11
- phpunit/phpunit: ^9.6
- symfony/form: ^7.0
- symfony/http-kernel: ^7.0
- symfony/translation: ^7.0
- symfony/twig-bundle: ^7.0
- symfony/validator: ^7.0
- symfony/yaml: ^7.0
- symplify/easy-coding-standard: ^12.3
- twig/twig: ^2.0|^3.0
Suggests
- myclabs/php-enum: Integrate with enum object
- symfony/form: Add enum form type
- symfony/framework-bundle: Integrate with Symfony Framework
- symfony/validator: Add enum validation
- twig/twig: Add enum util functions
- 5.x-dev
- v5.0.1
- v5.0.0
- 4.x-dev
- v4.1.0
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- 3.x-dev
- v3.3.0
- v3.2.0
- v3.1.0
- v3.0.0
- v3.0.0-alpha.2
- v3.0.0-alpha
- 2.x-dev
- v2.3
- v2.2
- v2.1
- v2.0
- v1.6
- v1.5
- v1.4
- v1.3
- v1.2
- v1.1
- v1.0
- dev-fixed-extension-deprecation
- dev-post-bump-review
- dev-phpstan
- dev-code-style
- dev-allow-symfony7-and-bump-dependencies
This package is auto-updated.
Last update: 2024-11-05 10:27:48 UTC
README
This repository aims to provide simple enumeration implementation to Symfony.
Installation
Add the bundle as a dependency with Composer
$ composer require yokai/enum-bundle
Enable the bundle in the kernel
<?php return [ Yokai\EnumBundle\YokaiEnumBundle::class => ['all' => true], ];
Getting started
Let's take an example : our application has some members
and each member has a status
which can be :
new
, labelled as "New"validated
, labelled as "Validated"disabled
, labelled as "Disabled"
Creating the enum
We first need to create the class that will handle our enum :
<?php declare(strict_types=1); namespace App\Enum; use Yokai\EnumBundle\Enum; class StatusEnum extends Enum { public function __construct() { parent::__construct(['New' => 'new', 'Validated' => 'validated', 'Disabled' => 'disabled']); } }
That's it, the bundle now knows your enum.
note : every enum has a name. That name is the enum identifier across your application. You can use any string for that purpose, as long it is unique. Using the enum class here is a very common way to do.
Configuring validation
We will now be able to configure Member
's model validation :
<?php declare(strict_types=1); namespace App\Model; use App\Enum\StatusEnum; use Yokai\EnumBundle\Validator\Constraints\Enum; class Member { #[Enum(enum: StatusEnum::class)] public ?string $status = null; }
Setting up the form
Now that validation is configured, the only thing we have to do is to add a field on our form :
<?php declare(strict_types=1); namespace App\Form\Type; use App\Model\Member; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; class MemberType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options): void { $builder // Because we added the #[Enum] constraint to Member::$status property // the bundle will be able to find out the appropriate form type automatically ->add('status') ; } public function configureOptions(OptionsResolver $resolver): void { $resolver->setDefault('data_class', Member::class); } }
Rendering enum label
Display label of any enum value within a Twig template :
{{ member.status|enum_label('App\\Enum\\StatusEnum') }}
Translating your enum
Now, maybe you will need to display the enum label in different locales.
We got you covered here with a dedicated base class for your translated enums :
<?php declare(strict_types=1); namespace App\Enum; use Symfony\Contracts\Translation\TranslatorInterface; use Yokai\EnumBundle\TranslatedEnum; class StatusEnum extends TranslatedEnum { public function __construct(TranslatorInterface $translator) { parent::__construct(['new', 'validated', 'disabled'], $translator, 'status.%s'); } }
Now you can create the translation keys in your catalog :
# translations/messages.en.yaml status.new: New status.validated: Validated status.disabled: Disabled # translations/messages.fr.yaml status.new: Nouveau status.validated: Validé status.disabled: Désactivé
note : the translation key format is generated using the
$transPattern
constructor argument, which must be valid a sprintf pattern (containing one%s
)
More examples
See examples from unit test suite & associated tests.
See example Symfony project in integration test suite.
Recipes
- Creating enums
- Creating translated enums
- Integration with PHP native enum
- Integration with myclabs/php-enum
- Migrating from standard Symfony
- Integration with SonataAdminBundle
MIT License
License can be found here.
Authors
The bundle was originally created by Yann Eugoné. See the list of contributors.
Thank's to PrestaConcept for supporting this bundle.