Recommend this page to a friend! |
Classes of Filip Štamcar | Eventy | README.md | Download |
|
DownloadEventyClassic[![Latest Stable Version][icon-stable-version]][link-packagist] [![Latest Untable Version][icon-unstable-version]][link-packagist] [![Total Downloads][icon-downloads]][link-packagist] [![License][icon-license]][link-license] [![PHP][icon-php]][link-php] [![Linux Build Status][icon-travis]][link-travis] [![Windows Build Status][icon-appveyor]][link-appveyor] [![Code Coverage][icon-coverage]][link-coverage] [![Code Quality][icon-quality]][link-quality] WordPress style actions and filters in classic (pure) PHP. AboutActions are pieces of code you want to execute at certain points in your code. Actions never return anything but merely serve as the option to hook in to your existing code without having to mess things up. Filters are made to modify entities. They always return some kind of value. By default they return their first parameter and you should too. This project is a fork from Eventy for Laravel. The difference is that this project supports PHP 5.4 or later and it doesn't have any dependencies. Also, there are some differences in syntax. Use CasesEventyClassic is best used as a way to allow extensibility to your code. Whether you're creating a package or an application, Eventy can bring the extensibility you need. For example, EventyClassic can lay down the foundation for a plugin based system. You offer an "action" that allows plugins to register themselves. You might offer a "filter" so plugins can change the contents of an array in the core. You could even offer an "action" so plugins can modify the menu of your application. InstallationRequirementsEventyClassic requires PHP 5.4.0 or higher. Using ComposerThe reccomended way to install EventyClassic is with Composer, dependency manager for PHP.
You would only need to include autoloader and namespace in your script.
Ideally, class instance should be placed to dependency injection service. Manually InstallationAlternatively, you could download files from GitHub and then manually include them in your script. You whould need to include all files and namespace in your script.
Ideally, class instance should be placed to dependency injection service. UsageActionsTo listen to your hooks, you attach listeners. For example if you wanted to hook in to the above hook, you could do:
The first parameter is the name of the hook. The second would be a callback. This could be a Closure, an array callback ( You can then run actions:
Again the first argument must be the name of the hook. All subsequent parameters are sent to the action as parameters. These can be anything you'd like. For example you might want to tell the listeners that this is attached to a certain model. Then you would pass this as one of the arguments. FiltersFilters work in much the same way as actions and have the exact same build-up as actions. The most significant difference is that filters always return their value. This is how you add a listener to this filter:
The filter would now return You could use this in conjunction with the previous hook:
You can then run filters:
If no listeners are attached to this hook, the filter would simply return [icon-stable-version]: https://img.shields.io/packagist/v/filips123/eventy.svg?style=flat-square&label=Latest+Stable+Version [icon-unstable-version]: https://img.shields.io/packagist/vpre/filips123/eventy.svg?style=flat-square&label=Latest+Unstable+Version [icon-downloads]: https://img.shields.io/packagist/dt/filips123/eventy.svg?style=flat-square&label=Downloads [icon-license]: https://img.shields.io/packagist/l/filips123/eventy.svg?style=flat-square&label=License [icon-php]: https://img.shields.io/packagist/php-v/filips123/eventy.svg?style=flat-square&label=PHP [icon-travis]: https://img.shields.io/travis/com/filips123/eventy.svg?style=flat-square&label=Linux+Build+Status [icon-appveyor]: https://img.shields.io/appveyor/ci/filips123/eventy.svg?style=flat-square&label=Windows+Build+Status [icon-coverage]: https://img.shields.io/scrutinizer/coverage/g/filips123/eventy.svg?style=flat-square&label=Code+Coverage [icon-quality]: https://img.shields.io/scrutinizer/g/filips123/eventy.svg?style=flat-square&label=Code+Quality [link-packagist]: https://packagist.org/packages/filips123/eventy/ [link-license]: https://choosealicense.com/licenses/mit/ [link-php]: https://php.net/ [link-travis]: https://travis-ci.com/filips123/eventy/ [link-appveyor]: https://ci.appveyor.com/project/filips123/eventy/ [link-coverage]: https://scrutinizer-ci.com/g/filips123/eventy/code-structure/ [link-quality]: https://scrutinizer-ci.com/g/filips123/eventy/ |