Source for file EventListenerList.php
Documentation is available at EventListenerList.php
* EventListenerList class
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
protected $listeners = array();
function add($listener) {
$this->listeners[] = $listener;
$this->events = new ArrayObject();
public function Add($event)
$this->events->Append($event);
foreach ($this->events as $e)
if ($e->GetName() == $event)
|