davidrockin/podiya

PHP event library following Mediator pattern using Observer implementation

1.0 2014-08-28 22:42 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:40:14 UTC


README

Podiya (Ukrainian for 'event') is a PHP library that provides a simple and easy to use functionality that allows you to create events (or hooks) that are handled by listeners. Podiya can be used in an application to allow other developers create plugins that can extend and/or improve the functionality of the application. Latest Stable Version Total Downloads Latest Unstable Version License

Events

Events (or hooks) are thrown by the application, in which listeners (from plugins) handle the events. For example, if the application were to display a blog post, the application would make several event calls that will be handled by listeners to display the post, comments, and author information.