|
Open Journal Systems
3.3.0
|
Public Member Functions | |
| __construct ($subject=null, array $arguments=array()) | |
| __construct ($subject=null, array $arguments=array()) | |
| getArgument ($key) | |
| getArgument ($key) | |
| getArguments () | |
| getArguments () | |
| getIterator () | |
| getIterator () | |
| getSubject () | |
| getSubject () | |
| hasArgument ($key) | |
| hasArgument ($key) | |
| offsetExists ($key) | |
| offsetExists ($key) | |
| offsetGet ($key) | |
| offsetGet ($key) | |
| offsetSet ($key, $value) | |
| offsetSet ($key, $value) | |
| offsetUnset ($key) | |
| offsetUnset ($key) | |
| setArgument ($key, $value) | |
| setArgument ($key, $value) | |
| setArguments (array $args=array()) | |
| setArguments (array $args=array()) | |
Public Member Functions inherited from Symfony\Component\EventDispatcher\Event | |
| getDispatcher () | |
| getDispatcher () | |
| getName () | |
| getName () | |
| isPropagationStopped () | |
| isPropagationStopped () | |
| setDispatcher (EventDispatcherInterface $dispatcher) | |
| setDispatcher (EventDispatcherInterface $dispatcher) | |
| setName ($name) | |
| setName ($name) | |
| stopPropagation () | |
| stopPropagation () | |
Protected Attributes | |
| $arguments | |
| $subject | |
Event encapsulation class.
Encapsulates events thus decoupling the observer from the subject they encapsulate.
Definition at line 21 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
| Symfony\Component\EventDispatcher\GenericEvent::__construct | ( | $subject = null, |
|
| array | $arguments = array() |
||
| ) |
Encapsulate an event with $subject and $args.
| mixed | $subject | The subject of the event, usually an object or a callable |
| array | $arguments | Arguments to store in the event |
Definition at line 32 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\$arguments, and Symfony\Component\EventDispatcher\GenericEvent\$subject.
| Symfony\Component\EventDispatcher\GenericEvent::__construct | ( | $subject = null, |
|
| array | $arguments = array() |
||
| ) |
Encapsulate an event with $subject and $args.
| mixed | $subject | The subject of the event, usually an object or a callable |
| array | $arguments | Arguments to store in the event |
Definition at line 32 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\$arguments, and Symfony\Component\EventDispatcher\GenericEvent\$subject.
| Symfony\Component\EventDispatcher\GenericEvent::getArgument | ( | $key | ) |
Get argument by key.
| string | $key | Key |
Definition at line 57 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\hasArgument().
Referenced by Symfony\Component\EventDispatcher\GenericEvent\offsetGet().
| Symfony\Component\EventDispatcher\GenericEvent::getArgument | ( | $key | ) |
Get argument by key.
| string | $key | Key |
Definition at line 57 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\hasArgument().
| Symfony\Component\EventDispatcher\GenericEvent::getArguments | ( | ) |
Getter for all arguments.
Definition at line 86 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\$arguments.
| Symfony\Component\EventDispatcher\GenericEvent::getArguments | ( | ) |
Getter for all arguments.
Definition at line 86 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\$arguments.
| Symfony\Component\EventDispatcher\GenericEvent::getIterator | ( | ) |
IteratorAggregate for iterating over the object like an array.
Definition at line 171 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
| Symfony\Component\EventDispatcher\GenericEvent::getIterator | ( | ) |
IteratorAggregate for iterating over the object like an array.
Definition at line 171 of file vendor/symfony/event-dispatcher/GenericEvent.php.
| Symfony\Component\EventDispatcher\GenericEvent::getSubject | ( | ) |
Getter for subject property.
Definition at line 43 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\$subject.
| Symfony\Component\EventDispatcher\GenericEvent::getSubject | ( | ) |
Getter for subject property.
Definition at line 43 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\$subject.
| Symfony\Component\EventDispatcher\GenericEvent::hasArgument | ( | $key | ) |
Has argument.
| string | $key | Key of arguments array |
Definition at line 112 of file vendor/symfony/event-dispatcher/GenericEvent.php.
| Symfony\Component\EventDispatcher\GenericEvent::hasArgument | ( | $key | ) |
Has argument.
| string | $key | Key of arguments array |
Definition at line 112 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
Referenced by Symfony\Component\EventDispatcher\GenericEvent\getArgument(), Symfony\Component\EventDispatcher\GenericEvent\offsetExists(), and Symfony\Component\EventDispatcher\GenericEvent\offsetUnset().
| Symfony\Component\EventDispatcher\GenericEvent::offsetExists | ( | $key | ) |
ArrayAccess has argument.
| string | $key | Array key |
Definition at line 161 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\hasArgument().
| Symfony\Component\EventDispatcher\GenericEvent::offsetExists | ( | $key | ) |
ArrayAccess has argument.
| string | $key | Array key |
Definition at line 161 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\hasArgument().
| Symfony\Component\EventDispatcher\GenericEvent::offsetGet | ( | $key | ) |
ArrayAccess for argument getter.
| string | $key | Array key |
Definition at line 126 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\getArgument().
| Symfony\Component\EventDispatcher\GenericEvent::offsetGet | ( | $key | ) |
ArrayAccess for argument getter.
| string | $key | Array key |
Definition at line 126 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\getArgument().
| Symfony\Component\EventDispatcher\GenericEvent::offsetSet | ( | $key, | |
| $value | |||
| ) |
ArrayAccess for argument setter.
| string | $key | Array key to set |
| mixed | $value | Value |
Definition at line 137 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\setArgument().
| Symfony\Component\EventDispatcher\GenericEvent::offsetSet | ( | $key, | |
| $value | |||
| ) |
ArrayAccess for argument setter.
| string | $key | Array key to set |
| mixed | $value | Value |
Definition at line 137 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\setArgument().
| Symfony\Component\EventDispatcher\GenericEvent::offsetUnset | ( | $key | ) |
ArrayAccess for unset argument.
| string | $key | Array key |
Definition at line 147 of file vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\hasArgument().
| Symfony\Component\EventDispatcher\GenericEvent::offsetUnset | ( | $key | ) |
ArrayAccess for unset argument.
| string | $key | Array key |
Definition at line 147 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
References Symfony\Component\EventDispatcher\GenericEvent\hasArgument().
| Symfony\Component\EventDispatcher\GenericEvent::setArgument | ( | $key, | |
| $value | |||
| ) |
Add argument to event.
| string | $key | Argument name |
| mixed | $value | Value |
Definition at line 74 of file vendor/symfony/event-dispatcher/GenericEvent.php.
| Symfony\Component\EventDispatcher\GenericEvent::setArgument | ( | $key, | |
| $value | |||
| ) |
Add argument to event.
| string | $key | Argument name |
| mixed | $value | Value |
Definition at line 74 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
Referenced by Symfony\Component\EventDispatcher\GenericEvent\offsetSet().
| Symfony\Component\EventDispatcher\GenericEvent::setArguments | ( | array | $args = array() | ) |
Set args property.
| array | $args | Arguments |
Definition at line 98 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
| Symfony\Component\EventDispatcher\GenericEvent::setArguments | ( | array | $args = array() | ) |
Set args property.
| array | $args | Arguments |
Definition at line 98 of file vendor/symfony/event-dispatcher/GenericEvent.php.
|
protected |
Definition at line 24 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
Referenced by Symfony\Component\EventDispatcher\GenericEvent\__construct(), and Symfony\Component\EventDispatcher\GenericEvent\getArguments().
|
protected |
Definition at line 23 of file lib/vendor/symfony/event-dispatcher/GenericEvent.php.
Referenced by Symfony\Component\EventDispatcher\GenericEvent\__construct(), and Symfony\Component\EventDispatcher\GenericEvent\getSubject().