This documentation is for a version that has reached its End Of Life. Such versions are no longer supported and don't receive security updates. Consider updating to a newer version.
4.4. Update Signal Slots¶
If you used Signal Slots to listen for events in you custom code, you need to rewrite them using Symfony Events and Listeners instead.
The application now triggers two Events per operation: one before and one after the relevant thing happens (see for example Bookmark events).
To use them, create Event Listeners in your code, for example:
Use:
1 2 3 4 5 6 7 8 9 10 11 |
|
instead of:
1 2 3 4 5 6 7 8 |
|