sergeil / doctrine-entity-data-mapper-bundle
Makes it easy to map data coming from client-side onto your Doctrine ORM managed entities.
Installs: 75
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.3.0
- doctrine/doctrine-bundle: ~1.2
- doctrine/orm: ~2.2,>=2.2.3
- sergeil/aux-bundle: ~1.1
- sergeil/expander-bundle: ~1.0
- symfony/symfony: ~2.0|~3.0
Requires (Dev)
- modera/foundation-bundle: ~2.0
- phpunit/phpunit: ~3.0
This package is auto-updated.
Last update: 2024-11-06 10:31:15 UTC
README
Bundle provides tools that simplify mapping data coming from client-side onto Doctrine ORM managed entities.
Features:
- All basic scalar types mapping (boolean, numbers ...)
- All types of associations are supported (+bidirectional aspect of relations is taken care of out of the box)
- Complex data types transformation and mapping - when a value before being mapped onto an entity is transformed
- Additional DI services injection to a setter method when a value is mapped
- Flexible mapping of date/datetimes
Teaser with ManyToMany relation
For an illustration purpose let's take a classical example of User and Group entities and assume that they are bidirectionally linked to each other.
Now, let's take a look at several sample array data-structures that you may pass to EntityDataMapperService and have it properly mapped data onto your entity. For the illustration purpose we assume that we have two users - "Jane Doe" and "John Doe" with corresponding IDs of 1 and 2, and three groups: "Admins", "Users", "Moderators" with IDs 1, 2, 3.
$em = $container->get('doctrine.orm.entity_manager'); $mapper = $container->get('sli_doctrine_entity_data_mapper.mapping.entity_data_mapper'); $adminsGroup = $em->find('MyBundle:Group', 1); $usersGroup = $em->find('MyBundle:Group', 2); $moderatorsGroup = $em->find('MyBundle:Group', 3); $john = new User('John Doe'); $jane = new User('Jane Doe'); $userParams = array( 'groups' => [1, 2] ); $mapper->mapEntity($john, $userParams, array_keys($userParams)); $em->persist($john); $em->persist($jane); $em->flush(); echo count($john->groups); // two elements, groups "Admins" and "Users" were fetched from database by their IDs echo count($adminGroup->users); // one element echo count($usersGroup->users); // one element echo count($moderatorsGroup->users); // zero elements
Now let's presume that during next request we want that $john user would belong only to "Moderators" group:
$userParams = array( 'groups' => [3] ); $mapper->mapEntity($john, $userParams, array_keys($userParams));
Several things just happened:
- "Admins" and "Users" group were removed from User's side Collection
- "John Doe" was removed from "Admins" and "Users" Group's Collections
- "John Doe" was added to "Moderators" group
- "Moderators" group was added to John Doe's groups collection
Installation
Add this dependency to your composer.json:
"sergeil/doctrine-entity-data-mapper-bundle": "dev-develop"
Update your AppKernel class and add this:
new Sli\DoctrineEntityDataMapperBundle\SliDoctrineEntityDataMapperBundle(),
Documentation
See Resources/doc/index.md
.
Licensing
This bundle is under the MIT license. See the complete license in the bundle: Resources/meta/LICENSE