core:onUninitialize event
The core:onUninitialize event is triggered when the script execution finishes. The event is fired even if the exit() or die() function has been called. The event handler should not accept any parameters.
Event handler example:
public function subscribeEvents()
{
Backend::$events->addEvent('core:onUninitialize', $this, 'core_uninitialize');
}
public function core_uninitialize()
{
// Do something
}
Next: cms:onDeletePage event
Previous: cms:onDisplayPageForm event
Return to Handling LemonStand events

