Class: EventListener

Source Location: /CORE/system/classes/event/EventListener.php

Class EventListener

Class Overview

An EventListener instance is used to receive Events from the system.

Create instances of the is class by extending it and registering within the database.

Located in /CORE/system/classes/event/EventListener.php [line 37]



		
				Author(s):
		
  • Kevin Papst
Information Tags:
Version:  $Id: EventListener.php,v 1.1 2008/03/24 22:43:23 kpapst Exp $
Copyright:  Copyright (C) Kevin Papst
License:  GNU Public License

Methods

[ Top ]
Method Summary
void   handleEvent()   Called by the EventDispatcher.

[ Top ]
Methods
handleEvent  [line 45]

  void handleEvent( Event $event  )

Called by the EventDispatcher.

Overwrite this method for your needs!

Parameters:
Event   $event:  the event that should be handled


[ Top ]