byscripts / static-entity-bundle
Add Symfony3 and Symfony4 ParamConverter and FormType to StaticEntity
Installs: 531
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 2
Open Issues: 4
Type:symfony-bundle
Requires
- php: >=5.3.3
- byscripts/static-entity: ~2.0
- sensio/framework-extra-bundle: ~3.0
- symfony/config: ~3.0|^4.0
- symfony/dependency-injection: ~3.0|^4.0
- symfony/form: ~3.0|^4.0
- symfony/http-foundation: ~3.0|^4.0
- symfony/http-kernel: ~3.0|^4.0
- symfony/options-resolver: ~3.0|^4.0
Requires (Dev)
- symfony/browser-kit: ~3.0|^4.0
- symfony/expression-language: ~3.0|^4.0
- symfony/finder: ~3.0|^4.0
- symfony/templating: ~3.0|^4.0
- symfony/twig-bundle: ~3.0|^4.0
- symfony/validator: ~3.0|^4.0
- symfony/yaml: ~3.0|^4.0
This package is auto-updated.
Last update: 2024-10-30 01:53:39 UTC
README
This bundle brings ParamConverter and FormType supports to Symfony 3 and Symfony 4 for the StaticEntity library.
If you just need to use StaticEntity, and don't need the FormType and ParamConverter support, then this bundle is NOT required.
You can use StaticEntity in your project like any other library.
This 4.x branch supports Symfony 3 and Symfony 4
Use branch 3.x for SymfonyFrameworkBundle 3.x (Used by Symfony 2.4+)
For support of SensioFrameworkBundle 2.x (Used by Symfony 2.3), use the 1.x branch
Installation
Add the package in your composer.json
At command line, run composer require byscripts/static-entity-bundle:~4.0
Enable the Bundle
Symfony 3
Add Byscripts\Bundle\StaticEntityBundle\ByscriptsStaticEntityBundle
to the app/AppKernel.php
file.
Symfony 4
Add Byscripts\Bundle\StaticEntityBundle\ByscriptsStaticEntityBundle::class => ['all' => true]
to the config/bundles.php
file.
Usage
Create a static entity
First, create a static entity on your project (for example, in src/AppBundle/StaticEntity
)
<?php namespace AppBundle\StaticEntity; use Byscripts\StaticEntity\StaticEntity; class Civility extends StaticEntity { private $name; private $shortName; public static function getDataSet() { return array( 'mr' => array('name' => 'Mister', 'shortName' => 'Mr'), 'mrs' => array('name' => 'Misses', 'shortName' => 'Mrs'), ); } }
For more details on usage of Static Entities, look at StaticEntity README.md
Use the FormType
$builder->add('civility', StaticEntityType, $parameters);
List of parameters
| class | required | FQCN of the static entity | null | | function | optional | The function to use to get SE instances | getAll |
StaticEntityType
extends the native ChoiceType
and can use any of its options.
Use the ParamConverter
class MyController { public function myAction(Civility $civility) { $name = $civility->getName(); } }