2008-08-31 18:27:16 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\ORM\Id;
|
2008-08-31 18:27:16 +00:00
|
|
|
|
2009-03-14 09:05:52 +00:00
|
|
|
use Doctrine\ORM\EntityManager;
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
abstract class AbstractIdGenerator
|
2009-03-30 19:43:05 +00:00
|
|
|
{
|
2009-01-03 19:50:13 +00:00
|
|
|
/**
|
|
|
|
* Generates an identifier for an entity.
|
|
|
|
*
|
|
|
|
* @param Doctrine\ORM\Entity $entity
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2009-03-30 19:43:05 +00:00
|
|
|
abstract public function generate(EntityManager $em, $entity);
|
2009-01-03 19:50:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets whether this generator is a post-insert generator which means that
|
|
|
|
* {@link generate()} must be called after the entity has been inserted
|
|
|
|
* into the database.
|
2009-03-14 09:05:52 +00:00
|
|
|
*
|
2009-01-03 19:50:13 +00:00
|
|
|
* By default, this method returns FALSE. Generators that have this requirement
|
|
|
|
* must override this method and return TRUE.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2009-02-20 05:46:20 +00:00
|
|
|
public function isPostInsertGenerator()
|
|
|
|
{
|
2009-01-03 19:50:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-02-20 05:46:20 +00:00
|
|
|
}
|