Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattlevine/b7938718188839716e78ce028dda8e43 to your computer and use it in GitHub Desktop.
Save mattlevine/b7938718188839716e78ce028dda8e43 to your computer and use it in GitHub Desktop.
Mura CMS : You can easily override nearly any method in Mura with method injection. This example shows you how to do that.
<cfscript>
// drop this in your eventHandler.cfc
public any function yourMethod() {
// you do something here
}
public any function onApplicationLoad($) {
arguments.$.getBean('someBean').injectMethod('someMethod', yourMethod);
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment