Метод | Описание | |
---|---|---|
__construct ( $eventData = null ) | ||
__get ( string $name ) : mixed | Access internal data as if it was a real object | |
__isset ( string $name ) : boolean | Override __isset | |
__set ( string $name, mixed $value ) : void | Set internal data as if it was a real object | |
__unset ( string $name ) : void | Override __unset | |
get ( string $name, mixed $default = null ) : mixed | Get value or return $default if there is no element set. | |
getIterator ( ) : Traversable |
(PHP 5 >= 5.0.0) Retrieve an external iterator |
|
isPropagationStopped ( ) : boolean | Check if propagation for this event is stopped | |
offsetExists ( mixed $offset ) : boolean |
(PHP 5 >= 5.0.0) Whether a offset exists |
|
offsetGet ( mixed $offset ) : mixed |
(PHP 5 >= 5.0.0) Offset to retrieve |
|
offsetSet ( mixed $offset, mixed $value ) : void |
(PHP 5 >= 5.0.0) Offset to set |
|
offsetUnset ( mixed $offset ) : void |
(PHP 5 >= 5.0.0) Offset to unset |
|
stopPropagation ( ) : void | Stops the propagation of the event to further event listeners. | |
toArray ( ) : array | Get event data in form of an array |
public getIterator ( ) : Traversable | ||
Результат | Traversable | An instance of an object implementing Iterator or Traversable |
public isPropagationStopped ( ) : boolean | ||
Результат | boolean |
public offsetExists ( mixed $offset ) : boolean | ||
$offset | mixed | An offset to check for. |
Результат | boolean | true on success or false on failure.
The return value will be casted to boolean if non-boolean was returned. |
public offsetUnset ( mixed $offset ) : void | ||
$offset | mixed | |
Результат | void |
public stopPropagation ( ) : void | ||
Результат | void |