Zend Framework  3.0
Public Attributes | List of all members
EventFeatureEventsInterface Interface Reference

EventFeature event constants. More...

Public Attributes

const EVENT_PRE_INITIALIZE = 'preInitialize'
 
const EVENT_POST_INITIALIZE = 'postInitialize'
 
const EVENT_PRE_SELECT = 'preSelect'
 
const EVENT_POST_SELECT = 'postSelect'
 
const EVENT_PRE_INSERT = 'preInsert'
 
const EVENT_POST_INSERT = 'postInsert'
 
const EVENT_PRE_DELETE = 'preDelete'
 
const EVENT_POST_DELETE = 'postDelete'
 
const EVENT_PRE_UPDATE = 'preUpdate'
 
const EVENT_POST_UPDATE = 'postUpdate'
 

Detailed Description

EventFeature event constants.

This moves the constants introduced in https://github.com/zendframework/zf2/pull/7066 into a separate interface that EventFeature implements; the change keeps backwards compatibility, while simultaneously removing the need to add another hard dependency to the component.

Member Data Documentation

const EVENT_POST_DELETE = 'postDelete'
const EVENT_POST_INITIALIZE = 'postInitialize'
const EVENT_POST_INSERT = 'postInsert'
const EVENT_POST_SELECT = 'postSelect'
const EVENT_POST_UPDATE = 'postUpdate'
const EVENT_PRE_DELETE = 'preDelete'
const EVENT_PRE_INITIALIZE = 'preInitialize'
const EVENT_PRE_INSERT = 'preInsert'
const EVENT_PRE_SELECT = 'preSelect'
const EVENT_PRE_UPDATE = 'preUpdate'