Skip to content

Integrates the Symfony2 EventDispatcher component in your Model classes.

License

Notifications You must be signed in to change notification settings

GoldenLine/EventDispatcherBehavior

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EventDispatcherBehavior

Build Status

Integrate the Symfony2 EventDispatcher component in your Model classes.

Installation

Requires this behavior in your composer.json:

{
    "require": {
        "willdurand/propel-eventdispatcher-behavior": "dev-master"
    }
}

Add the following line to your propel.ini or build.properties configuration file:

propel.behavior.eventdispatcher.class = vendor.willdurand.propel-eventdispatcher-behavior.src.EventDispatcherBehavior

Note: vendor.willdurand.propel-eventdispatcher-behavior.src is the path of the behavior in dot-path notation.

Finally, adds this behavior to your schema.xml:

<database name="foo">
    <table name="a-table">
        <behavior name="event_dispatcher" />
    </table>
</database>

ActiveRecord API

This behavior adds a single method getEventDispatcher(). This method creates an instance of EventDispatcher per class.

Running tests

Install dependencies:

php composer.phar install --dev

Run the test suite:

phpunit

License

This behavior is released under the MIT License. See the bundled LICENSE file for details.

About

Integrates the Symfony2 EventDispatcher component in your Model classes.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%