Event dispatcher
, (*1)
A minimalistic event dispatcher (observer) interface that was part of the Semantic MediaWiki code base and
is now being deployed as independent library., (*2)
Requirements
PHP 5.3/HHVM 3.3 or later, (*3)
Installation
The recommended installation method for this library is by either adding
the dependency to your composer.json., (*4)
{
"require": {
"onoi/event-dispatcher": "~1.0"
}
}
Usage
class BarListener implements EventListener {
public function execute( DispatchContext $dispatchContext = null ) {
// Do something
}
public function isPropagationStopped() {
return false;
}
}
```php
class ListenerCollectionRegistry implements EventListenerCollection {, (*5)
private $eventListenerCollection;
public function __construct( EventListenerCollection $eventListenerCollection ) {
$this->eventListenerCollection = $eventListenerCollection;
}
public function getCollection() {
return $this->addToListenerCollection()->getCollection();
}
private function addToListenerCollection() {
$this->eventListenerCollection->registerCallback( 'do.something', function() {
// Do something
} );
$this->eventListenerCollection->registerListener( 'notify.bar', new BarListener() );
return $this->eventListenerCollection;
}
}, (*6)
```php
$eventDispatcherFactory = new EventDispatcherFactory();
$listenerCollectionRegistry = new ListenerCollectionRegistry(
$eventDispatcherFactory->newGenericEventListenerCollection()
);
$eventDispatcher = $eventDispatcherFactory->newGenericEventDispatcher();
$eventDispatcher->addListenerCollection( $listenerCollectionRegistry );
class Foo {
use EventDispatcherAwareTrait;
public function doSomething() {
// No context
$this->eventDispatcher->dispatch( 'do.something' );
$dispatchContext = new DispatchContext();
$dispatchContext->set( 'dosomethingelse', new \stdClass );
// Using `DispatchContext`
$this->eventDispatcher->dispatch( 'notify.bar', $dispatchContext );
// Using an array as context which is later converted into
// a `DispatchContext`
$this->eventDispatcher->dispatch( 'notify.foo', [ 'Bar' => 123 ] );
}
}
$instance = new Foo();
$instance->setEventDispatcher( $eventDispatcher );
$instance->doSomething();
Contribution and support
If you want to contribute work to the project please subscribe to the
developers mailing list and have a look at the contribution guidelinee. A list of people who have made contributions in the past can be found here., (*7)
Tests
The library provides unit tests that covers the core-functionality normally run by the continues integration platform. Tests can also be executed manually using the PHPUnit configuration file found in the root directory., (*8)
Release notes
License
GNU General Public License 2.0 or later., (*11)