2008-08-31 22:27:16 +04:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Id;
|
2008-08-31 22:27:16 +04:00
|
|
|
|
2009-03-14 12:05:52 +03:00
|
|
|
use Doctrine\ORM\EntityManager;
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
abstract class AbstractIdGenerator
|
2009-03-30 23:43:05 +04:00
|
|
|
{
|
2009-01-03 22:50:13 +03:00
|
|
|
/**
|
|
|
|
* Generates an identifier for an entity.
|
|
|
|
*
|
|
|
|
* @param Doctrine\ORM\Entity $entity
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2009-03-30 23:43:05 +04:00
|
|
|
abstract public function generate(EntityManager $em, $entity);
|
2009-01-03 22:50:13 +03: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 12:05:52 +03:00
|
|
|
*
|
2009-01-03 22:50:13 +03:00
|
|
|
* By default, this method returns FALSE. Generators that have this requirement
|
|
|
|
* must override this method and return TRUE.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2009-02-20 08:46:20 +03:00
|
|
|
public function isPostInsertGenerator()
|
|
|
|
{
|
2009-01-03 22:50:13 +03:00
|
|
|
return false;
|
|
|
|
}
|
2009-02-20 08:46:20 +03:00
|
|
|
}
|