1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/ORM/Id/Assigned.php

47 lines
1.3 KiB
PHP
Raw Normal View History

2008-09-07 17:48:40 +04:00
<?php
/**
* Special generator for application-assigned identifiers (doesnt really generate anything).
*
* @since 2.0
* @author Roman Borschel <roman@code-factory.org>
2008-09-07 17:48:40 +04:00
*/
2008-09-12 14:02:06 +04:00
class Doctrine_ORM_Id_Assigned extends Doctrine_ORM_Id_AbstractIdGenerator
2008-09-07 17:48:40 +04:00
{
/**
* Returns the identifier assigned to the given entity.
2008-09-07 17:48:40 +04:00
*
* @param Doctrine\ORM\Entity $entity
* @return mixed
2008-09-07 17:48:40 +04:00
* @override
*/
public function generate($entity)
2008-09-07 17:48:40 +04:00
{
$class = $this->_em->getClassMetadata(get_class($entity));
if ($class->isIdentifierComposite()) {
$identifier = array();
$idFields = $class->getIdentifierFieldNames();
foreach ($idFields as $idField) {
$identifier[] =
$value = $class->getReflectionProperty($idField)->getValue($entity);
if (isset($value)) {
$identifier[] = $value;
}
}
} else {
$value = $class->getReflectionProperty($class->getSingleIdentifierFieldName())
->getValue($entity);
if (isset($value)) {
$identifier = array($value);
}
2008-09-07 17:48:40 +04:00
}
if ( ! $identifier) {
throw new Doctrine_Exception("Entity '$entity' is missing an assigned ID.");
}
return $identifier;
2008-09-07 17:48:40 +04:00
}
}