CFML Application Events
As a CFML developer, you should be familiar with using application event handlers. The most commonly used CFML methods are outlined below, with a direct mapping to Mura's methods. Using Mura's methods in your own event handlers allows you to stay on the upgrade path, without having to modify Mura's Application.cfc directly.
| CFML Method | Analogous Mura Event |
|---|---|
| onApplicationStart | onApplicationLoad |
| onApplicationEnd | Not implemented in Mura at this time |
| onSessionStart | onGlobalSessionStart |
| onSessionEnd | onGlobalSessionEnd |
| onRequestStart | onGlobalRequestStart |
| onRequest | Not implemented in Mura at this time |
| onRequestEnd | onGlobalRequestEnd |
| onMissingTemplate | onGlobalMissingTemplate |
| onError | onGlobalError |