Skip to content

Instantly share code, notes, and snippets.

@stevewithington
Created December 12, 2013 23:09
Show Gist options
  • Save stevewithington/7937205 to your computer and use it in GitHub Desktop.
Save stevewithington/7937205 to your computer and use it in GitHub Desktop.
Mura CMS : If a File or Link content type is a child of the Folder, then we want users to go directly to the file or link ... otherwise, File and Link types linked elsewhere in Mura can be taken to a "Summary" view.
<cfscript>
// drop this in your Site or Theme eventHandler.cfc
public any function onRenderStart($) {
if ( $.event('showMeta') != 2 && $.content().getParent().getValue('type') != 'Folder' ) {
$.event('showMeta', 1);
}
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment