2006-05-30 12:42:10 +04:00
|
|
|
<?php
|
2006-09-12 14:15:58 +04:00
|
|
|
/*
|
2008-07-21 00:13:24 +04:00
|
|
|
* $Id: EventListener.php 4653 2008-07-10 17:17:58Z romanb $
|
2006-09-12 14:15:58 +04:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
2008-01-23 01:52:53 +03:00
|
|
|
* <http://www.phpdoctrine.org>.
|
2006-09-12 14:15:58 +04:00
|
|
|
*/
|
2008-08-01 22:46:14 +04:00
|
|
|
|
|
|
|
#namespace Doctrine::Common::Events;
|
2008-06-05 23:01:58 +04:00
|
|
|
|
2006-05-30 12:42:10 +04:00
|
|
|
/**
|
2008-08-01 22:46:14 +04:00
|
|
|
* An EventSubscriber knows itself what events it is interested in.
|
|
|
|
* If an EventSubscriber is added to an EventManager, the manager invokes
|
|
|
|
* getSubscribedEvents() and registers the subscriber as a listener for all
|
|
|
|
* returned events.
|
2006-05-30 12:42:10 +04:00
|
|
|
*
|
2008-08-01 22:46:14 +04:00
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2006-12-29 17:01:31 +03:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
2008-02-22 21:11:35 +03:00
|
|
|
* @link www.phpdoctrine.org
|
2008-07-10 21:17:58 +04:00
|
|
|
* @since 2.0
|
2008-07-21 00:13:24 +04:00
|
|
|
* @version $Revision: 4653 $
|
2006-12-29 17:01:31 +03:00
|
|
|
*/
|
2008-07-10 21:17:58 +04:00
|
|
|
interface Doctrine_EventSubscriber
|
2006-12-29 17:40:47 +03:00
|
|
|
{
|
2008-07-10 21:17:58 +04:00
|
|
|
public function getSubscribedEvents();
|
2007-10-06 01:47:38 +04:00
|
|
|
}
|