-
Returns the event name.
returns The event name
-
(array) getParameters ()
Browse code
Returns the event parameters.
returns The event parameters
-
(mixed) getReturnValue ()
Browse code
Returns the return value.
returns The return value
-
Returns the subject.
returns The subject
-
(Boolean) isProcessed ()
Browse code
Returns whether the event has been processed by a listener or not.
returns true if the event has been processed, false otherwise
-
(Boolean) offsetExists ($name)
Browse code
Returns true if the parameter exists (implements the ArrayAccess interface).
returns true if the parameter exists, false otherwise
-
(mixed) offsetGet ($name)
Browse code
Returns a parameter value (implements the ArrayAccess interface).
returns The parameter value
-
offsetSet ($name, $value)
Browse code
| $name |
The parameter name |
| $value |
The parameter value |
Sets a parameter (implements the ArrayAccess interface).
-
Removes a parameter (implements the ArrayAccess interface).
-
setProcessed ($processed)
Browse code
| $processed |
The processed flag value |
Sets the processed flag.
-
setReturnValue ($value)
Browse code
Sets the return value for this event.
-
__construct ($subject, $name, $parameters)
Browse code
| $subject |
The subject |
| $name |
The event name |
| $parameters |
An array of parameters |
Constructs a new sfEvent.