Zend Framework
1.12
|
Static Public Member Functions | |
static | setEventCollection (Zend_EventManager_EventCollection $events=null) |
Set the event collection on which this will operate. | |
static | getEventCollection () |
Get event collection on which this operates. | |
static | trigger ($event, $context, $argv=array()) |
Trigger an event. | |
static | triggerUntil ($event, $context, $argv, $callback) |
Trigger listeenrs until return value of one causes a callback to evaluate to true. | |
static | attach ($event, $callback, $priority=1) |
Attach a listener to an event. | |
static | detach (Zend_Stdlib_CallbackHandler $listener) |
Detach a callback from a listener. | |
static | getEvents () |
Retrieve list of events this object manages. | |
static | getListeners ($event) |
Retrieve all listeners for a given event. | |
static | clearListeners ($event) |
Clear all listeners for a given event. | |
Static Protected Attributes | |
static | $events |
|
static |
Attach a listener to an event.
string | $event | |
callback | $callback | |
int | $priority |
|
static |
Clear all listeners for a given event.
string | $event |
|
static |
|
static |
Get event collection on which this operates.
|
static |
Retrieve list of events this object manages.
|
static |
Retrieve all listeners for a given event.
string | $event |
|
static |
Set the event collection on which this will operate.
null | Zend_EventManager_EventCollection | $events |
|
static |
Trigger an event.
string | $event | |
object | string | $context | |
array | object | $argv |
|
static |
Trigger listeenrs until return value of one causes a callback to evaluate to true.
string | $event | |
string | object | $context | |
array | object | $argv | |
callback | $callback |
|
staticprotected |