1
0
mirror of synced 2024-12-05 03:06:05 +03:00
doctrine2/lib/Doctrine/ORM/Events.php

168 lines
5.3 KiB
PHP
Raw Permalink Normal View History

<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
2012-05-26 16:37:00 +04:00
* and is licensed under the MIT license. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace Doctrine\ORM;
/**
* Container for all ORM events.
*
* This class cannot be instantiated.
*
* @author Roman Borschel <roman@code-factory.org>
* @since 2.0
*/
final class Events
{
/**
* Private constructor. This class is not meant to be instantiated.
*/
private function __construct()
{
}
2009-07-18 22:06:30 +04:00
/**
2009-07-24 15:33:38 +04:00
* The preRemove event occurs for a given entity before the respective
* EntityManager remove operation for that entity is executed.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* This is an entity lifecycle event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
2009-07-24 15:33:38 +04:00
const preRemove = 'preRemove';
2009-07-18 22:06:30 +04:00
/**
2011-12-20 01:56:19 +04:00
* The postRemove event occurs for an entity after the entity has
2009-07-18 22:06:30 +04:00
* been deleted. It will be invoked after the database delete operations.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* This is an entity lifecycle event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
2009-07-24 15:33:38 +04:00
const postRemove = 'postRemove';
2009-07-18 22:06:30 +04:00
/**
2009-07-24 15:33:38 +04:00
* The prePersist event occurs for a given entity before the respective
* EntityManager persist operation for that entity is executed.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* This is an entity lifecycle event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
2009-07-24 15:33:38 +04:00
const prePersist = 'prePersist';
2009-07-18 22:06:30 +04:00
/**
2011-12-20 01:56:19 +04:00
* The postPersist event occurs for an entity after the entity has
2009-07-18 22:06:30 +04:00
* been made persistent. It will be invoked after the database insert operations.
2009-07-24 15:33:38 +04:00
* Generated primary key values are available in the postPersist event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* This is an entity lifecycle event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
2009-07-24 15:33:38 +04:00
const postPersist = 'postPersist';
2009-07-18 22:06:30 +04:00
/**
2011-12-20 01:56:19 +04:00
* The preUpdate event occurs before the database update operations to
* entity data.
*
2009-07-18 22:06:30 +04:00
* This is an entity lifecycle event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
const preUpdate = 'preUpdate';
2009-07-18 22:06:30 +04:00
/**
2011-12-20 01:56:19 +04:00
* The postUpdate event occurs after the database update operations to
* entity data.
*
2009-07-18 22:06:30 +04:00
* This is an entity lifecycle event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
const postUpdate = 'postUpdate';
2009-07-18 22:06:30 +04:00
/**
* The postLoad event occurs for an entity after the entity has been loaded
* into the current EntityManager from the database or after the refresh operation
* has been applied to it.
2011-12-20 01:56:19 +04:00
*
* Note that the postLoad event occurs for an entity before any associations have been
* initialized. Therefore it is not safe to access associations in a postLoad callback
* or event handler.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* This is an entity lifecycle event.
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
const postLoad = 'postLoad';
2009-07-18 22:06:30 +04:00
/**
* The loadClassMetadata event occurs after the mapping metadata for a class
* has been loaded from a mapping source (annotations/xml/yaml).
2011-12-20 01:56:19 +04:00
*
2009-07-18 22:06:30 +04:00
* @var string
*/
const loadClassMetadata = 'loadClassMetadata';
/**
* The onClassMetadataNotFound event occurs whenever loading metadata for a class
* failed.
*
* @var string
*/
const onClassMetadataNotFound = 'onClassMetadataNotFound';
2011-12-20 01:56:19 +04:00
/**
* The preFlush event occurs when the EntityManager#flush() operation is invoked,
2013-03-11 04:08:58 +04:00
* but before any changes to managed entities have been calculated. This event is
* always raised right after EntityManager#flush() call.
*/
const preFlush = 'preFlush';
2010-02-24 22:19:04 +03:00
/**
* The onFlush event occurs when the EntityManager#flush() operation is invoked,
* after any changes to managed entities have been determined but before any
* actual database operations are executed. The event is only raised if there is
* actually something to do for the underlying UnitOfWork. If nothing needs to be done,
* the onFlush event is not raised.
2011-12-20 01:56:19 +04:00
*
2010-02-24 22:19:04 +03:00
* @var string
*/
const onFlush = 'onFlush';
2011-03-22 06:17:08 +03:00
2011-10-22 20:38:51 +04:00
/**
* The postFlush event occurs when the EntityManager#flush() operation is invoked and
* after all actual database operations are executed successfully. The event is only raised if there is
* actually something to do for the underlying UnitOfWork. If nothing needs to be done,
2011-10-22 20:57:48 +04:00
* the postFlush event is not raised. The event won't be raised if an error occurs during the
2011-10-22 20:38:51 +04:00
* flush operation.
2011-12-20 01:56:19 +04:00
*
2011-10-22 20:38:51 +04:00
* @var string
*/
const postFlush = 'postFlush';
2011-12-20 01:56:19 +04:00
2011-03-22 06:17:08 +03:00
/**
* The onClear event occurs when the EntityManager#clear() operation is invoked,
* after all references to entities have been removed from the unit of work.
*
* @var string
*/
const onClear = 'onClear';
2012-05-26 16:37:00 +04:00
}