Created
February 20, 2015 18:42
-
-
Save ronnieduke/ba0085f48a2c7bdda873 to your computer and use it in GitHub Desktop.
Mura Force Page Layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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