Download the PHP package tangoman/relationship-bundle without Composer
On this page you can find all versions of the php package tangoman/relationship-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tangoman/relationship-bundle
More information about tangoman/relationship-bundle
Files in tangoman/relationship-bundle
Package relationship-bundle
Short Description Symfony Relationship Bundle
License MIT
Informations about the package relationship-bundle
TangoMan Relationship Bundle
TangoMan Relationship Bundle provides magic methods for OneToOne, OneToMany, ManyToOne, ManyToMany, relationships.
Installation
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
Step 3: Update your entities
Use TangoMan\RelationshipBundle\Traits\HasRelationships
trait inside your entities,
and define properties with appropriate doctrine annotations.
Step 4: Update your database schema
Open a command console, enter your project directory and execute the following command to update your database schema:
Usage
Entities
- Both entities must use
HasRelationships
trait. - Both entities must define properties with appropriate doctrine annotations.
cascade={"persist"}
annotation is MANDATORY (will allow bidirectional linking between entities).@method
annotation will allow for correct autocomplete in your IDE (optional).- NOTE:
inversedBy
is always on the owning side of the relationship (but I believe you know that already.)
OneToOne relationships
cascade={"remove"}
will avoid orphanItem
onOwner
deletion (optional).
ManyToMany relationships
Entity properties
- Property must own
@var ArrayCollection
- Property name MUST use plural form (as it represents several entities)
@ORM\OrderBy({"name"="ASC"})
will allow to define custom orderBy when fetchingitems
(optional).
Entity constructor
Constructors MUST initialize properties with ArrayCollection
FormTypes
Your formTypes elements from the INVERSE side of relationships MUST own 'by_reference' => false,
attribute
to force use of appropriate setters and getters (i.e. add
and remove
methods).
Note
If you find any bug please report here : Issues
License
Copyright (c) 2018 Matthias Morin
Distributed under the MIT license.
If you like TangoMan Relationship Bundle please star! And follow me on GitHub: TangoMan75 ... And check my other cool projects.