Skip to content

Instantly share code, notes, and snippets.

@ronnieduke
Created February 20, 2015 18:42
Show Gist options
  • Select an option

  • Save ronnieduke/ba0085f48a2c7bdda873 to your computer and use it in GitHub Desktop.

Select an option

Save ronnieduke/ba0085f48a2c7bdda873 to your computer and use it in GitHub Desktop.
Mura Force Page Layout
// Put this in your site or theme eventHandler.cfc
public any function onApplicationLoad($) {
// make sure 'News' page set to 'News.cfm' Page Template
var bean = $.content();
if ( bean.getValue('subType') == 'News' ) {
bean
.setValue('template', 'news.cfm')
.save();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment