cleentfaar / trigger-bundle
A Symfony bundle that let's you execute handlers on incoming GET parameters
Installs: 52
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.4
- symfony/framework-bundle: ~2.5
Requires (Dev)
This package is auto-updated.
Last update: 2022-02-01 12:43:44 UTC
README
A Symfony bundle that let's you execute handlers on incoming GET parameters; optionally letting you redirect the client back to an URL with certain parameters stripped.
Documentation
Why not just create my own request listeners, and do what I want from there?
You can of course still do this, and in some specific situations you might need that level of control.
In my projects however, I've noticed that often I just need to execute some business logic and then redirect the user back to the url without that parameter.
Furthermore, the intend of this bundle is to make it easy to have multiple services handle the same request and apply their own logic, instead of making multiple request-listeners with all kinds of different scenarios, each hooking into every request coming through your application! It also helps to prevent repeating code to check whether; the request is using the GET-method, your parameter is available in the query string, etc.