2017 © Pedro Peláez
 

library yii-event-interceptor

A component, that allows to intercept events raised by observed components.

image

bwoester/yii-event-interceptor

A component, that allows to intercept events raised by observed components.

  • Friday, January 2, 2015
  • by bwoester
  • Repository
  • 2 Watchers
  • 7 Stars
  • 8,797 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 3 Versions
  • 1 % Grown

The README.md

yii-event-interceptor

The EventInterceptor is a CComponent which raises an onEventIntercepted event whenever the observed component raises an event. The onEventIntercepted event contains the name of the intercepted event, as well as the intercepted event itself., (*1)

It is mainly meant as a tool for other components and can be used like this:, (*2)


// create interceptor $eventInterceptor = new EventInterceptor(); // initialize it: pass the object that should be observed. By default, the // EventInterceptor will attach itself to all events defined by $subject. // If you only want to intercept some special events, use: // $eventInterceptor->initialize( $subject, array('onFoo', 'onBar') ); $eventInterceptor->initialize( $subject ); // whenever the EventInterceptor intercepted an event of $subject, it will // raise an onEventIntercepted event. Attach an event handler to this event // that cares for processing. The event handler can be any valid php callback: // $eventInterceptor->onEventIntercepted = 'handleInterceptedEvent_inGlobalFunction'; // $eventInterceptor->onEventIntercepted = array( 'Foo', 'handleInterceptedEvent_inStaticMethod' ); // $eventInterceptor->onEventIntercepted = array( $obj, 'handleInterceptedEvent_inMethod' ); $eventInterceptor->onEventIntercepted = function( InterceptionEvent $event ) { $sender = $event->sender; // will always be the EventInterceptor $originalEvent = $event->getInterceptedEvent(); $originalSender = $event->getInterceptedEvent()->sender; // our $subject // also available: $originalEventName = $event->getInterceptedEventName(); };

The Versions

02/01 2015

dev-master

9999999-dev https://github.com/bwoester/yii-event-interceptor

A component, that allows to intercept events raised by observed components.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.1.0

 

by Benjamin Wöster

component yii event intercept

02/01 2015

v1.0.2

1.0.2.0 https://github.com/bwoester/yii-event-interceptor

A component, that allows to intercept events raised by observed components.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.1.0

 

by Benjamin Wöster

component yii event intercept

21/10 2013

v1.0.1

1.0.1.0 https://github.com/bwoester/yii-event-interceptor

A component, that allows to intercept events raised by observed components.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.1.0

 

by Benjamin Wöster

component yii event intercept