Download the PHP package adrenalinkin/entity-helper-bundle without Composer
On this page you can find all versions of the php package adrenalinkin/entity-helper-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download adrenalinkin/entity-helper-bundle
More information about adrenalinkin/entity-helper-bundle
Files in adrenalinkin/entity-helper-bundle
Package entity-helper-bundle
Short Description This bundle provides help for the work with entities which managed by Doctrine
License MIT
Informations about the package entity-helper-bundle
Entity Helper Bundle
Introduction
Helper allows you to perform often required operations with entities which managed by Doctrine
.
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 install globally.
Step 2: Enable the Bundle
Usage
Get entity helper by dependencies container:
Let's say we have an entity AcmeBundle\Entity\User
:
createEntity
Create instance of the class, which managed by Doctrine, by received class name.
getEntityClassFull
Returns full name of the received entity or class name.
In the all cases will be return string value: AcmeBundle\Entity\User
.
getEntityClassShort
Returns short name of the received entity or class name.
In the all cases will be return string value: AcmeBundle:User
.
getEntityIdNames
Returns an array of identifier field names numerically indexed.
In the all cases will be return array value: ['id']
.
getEntityIdName
Returns single identifier field name by received entity object or class name. Important: In that case when entity have several identifier names method will be return only first identifier name.
In the all cases will be return string value: id
.
getEntityIdValues
Returns an array of identifier values by received entity object.
Will be return array value: [1]
.
getEntityIdValue
Returns single identifier field value by received entity object. Important: In that case when entity have several identifier method will be return only first identifier field value.
Will be return numeric value: 1
.
getEntityMetadata
Returns \Doctrine\ORM\Mapping\ClassMetadata
object for received entity or class name.
In the all cases will be return object value: \Doctrine\ORM\Mapping\ClassMetadata
.
isManagedByDoctrine
Determines whether the requested class is under the control of Doctrine
.
In the all cases will be return bool value: true
.
License
All versions of entity-helper-bundle with dependencies
doctrine/orm Version ~2.4
php Version ~5.6||~7.0
symfony/config Version ~2.5||~3.0
symfony/dependency-injection Version ~2.5||~3.0
symfony/http-kernel Version ~2.5||~3.0