blogarchive

I recently added a new way to map events in Mura.  You can now simply directly add objects with the new application.pluginManager.addEventHandler() method

  • Nov 6, 2009
  • Matt Levine
  • Developers

I recently added a new way to map events in Mura.  You can now simply directly add objects with the new application.pluginManager.addEventHandler() method;

application.pluginManager.addEventHandler([component intance],'[siteid]')application.pluginManager.addEventHandler('[component path]','[siteid]',[persist])

So there are two ways where this can come in handy.

Using addEventHandler() in the Local EventHandler.cfc

Every site in Mura has it's own eventHandler.cfc where you can define event handling methods without needing to bind it to an actual plugin.  You can find this file at:

/[siteid]/includes/eventHandler.cfc

The problem is that it's only one file and if you need to define a large number of events or if you need your handler to persist between requests you run into problems.  The application.pluginManager.addEventHandler() method solves this issue.  You can now do this:

1. Create Your Event Handler.

For example purposes I'm just going to put a simple handler in the sites includes directory next to the local eventHandler.cfc

EXAMPLEHANDLER.CFC
/[siteid]/includes/exampleHandler.cfc

<cfcomponent extends="mura.cfobject"><cfset hits=0><!--- Mura uses on[name], onGlobal[name] and standard[name] for binding event ---><cffunction name="onExample" output="true" returntype="any"><cfargument name="$"><cfset hits=hits+1><cfset $.event("hits","<strong>Number of Hits:" & hits & "</strong>")></cffunction></cfcomponent>

 

2. Load the Event Handler

Now that the custom handler has been defined you still need to create code to register it so that the  plugin manager can listen for it's defined events. This can be done in the local eventHandler.cfc.

EVENTHANDLER.CFC
/[siteid]/includes/eventHandler.cfc

<cfcomponent extends="mura.cfobject"><cffunction name="onApplicationLoad" output="true" returntype="any"><cfargument name="$"><cfset var exampleHandler=createObject("component","exampleHandler")><cfset $.getBean('pluginManager').addEventHandler(exampleHandler,$.event("siteID"))></cffunction></cfcomponent>

 

3. See It in Action

Since the example handler that we created doesn't have any official Mura events you can use the Mura tag in a test page to see it in action.

(Remove spaces in Mura tags )

[mura ]$.announceEvent('onExample')[/mura ][mura ]$.event('hits')[/mura ]

Now reload your Mura instance and view the page an should see the number of times that the onExample event has been fired since the application was last loaded.

Using addEventHandler() in a Plugin

As an example plugin I stumbled upon a blog post by Steve Good about using jquery to dynamically turn links to mp3 files into a simple flash player. You can read it here.  Here are the main elements of the plugin so you can see how you can map events.

CONFIG.XML
Notice that there's only one handler for onApplicationLoad defined in the XML.

<plugin><name>Simple MP3 Player</name><package>MP3Player</package><directoryFormat>packageOnly</directoryFormat><version>1.0</version><provider>Blue River/Steve Good</provider><providerURL>http://blueriver.com</providerURL><category>Application</category><settings/><eventHandlers><eventHandler event="onApplicationLoad" component="cfcs.eventHandler" persist="true"/></eventHandlers><displayobjects location="global"/></plugin>

PLUGIN.CFC
Every time the plugin is updated or installed it tells Mura to reload.

<cfcomponent output="false" extends="mura.plugin.plugincfc"><cffunction name="install" returntype="void" access="public" output="false"><cfset application.appInitialized=false></cffunction><cffunction name="update" returntype="void" access="public" output="false">    <cfset application.appInitialized=false></cffunction></cfcomponent>

EVENTHANDLER.CFC
Here you can see that the onApplicationLoad() uses the variables.pluginConfig.addEventHandler() to register the entire component and all of it's defined events for all of the plugin's assigned sites.

<cfcomponent extends="mura.plugin.pluginGenericEventHandler"><cffunction name="onApplicationLoad">    <cfargument name="$">    <cfset variables.pluginConfig.addEventHandler(this)></cffunction><cffunction name="onRenderStart" output="false" returntype="any">    <cfargument name="$">    <cfset var renderer=$.getContentRenderer()>    <cfset renderer.showMetaList=listAppend(renderer.showMetaList,"mp3")>    <cfset $.loadJSLib()>    <cfset variables.pluginConfig.addToHTMLHeadQueue("htmlhead/htmlhead.cfm")></cffunction></cfcomponent>

The main thing here is that you can just add an event handler without explicitly mapping events that it's listening for.

If you would like to download this plugin to play around you can download it here.

Anyway, hopefully this makes sense and people find it easy to use. Please feel free to ask questions either here or in the forum. Make sure to update your Mura instance's Core verison to the lastest code before working through these examples.

Developers

Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Michael Evangelista
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Michael Evangelista
Blog Post
By Michael Evangelista
Blog Post
By Grant Shepert
Blog Post
By Matt Levine
Blog Post
By The Mura Team
Blog Post
By Pat Santora
Blog Post
By Pat Santora
Blog Post
By Matt Levine
Blog Post
By Matt Levine
Blog Post
By Matt Levine
Blog Post
By Eddie Ballisty
Blog Post
By Sean Schroeder
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert
Blog Post
By Grant Shepert

Marketers

Blog Post
By Andrew Medal
Blog Post
Blog Post
By Ronnie Duke
Blog Post
By Sean Schroeder