Last active
December 27, 2015 15:09
-
-
Save muracms/7345174 to your computer and use it in GitHub Desktop.
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
| /{siteID}/includes/display_objects/dsp_folder.cfm |
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
| /{siteID}/includes/display_objects/custom/extensions/dsp_Folder_News.cfm |
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
| dsp_{Type}_{SubType}.cfm |
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
| /{siteID}/includes/themes/{theme}/display_objects/custom/extensions/dsp_{Type}_{SubType}.cfm |
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
| on[Type]BodyRender | |
| on[Type][SubType]BodyRender |
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
| public any function onPageBlogBodyRender($) { | |
| // setDynamicContent() method is what parses | |
| // and executes the [mura][/mura] tags | |
| WriteOutput($.setDynamicContent($.content('body'))); | |
| // You can create structured output with | |
| // custom attributes | |
| WriteOutput('Product Description: '); | |
| WriteOutput($.content('productDescription')); | |
| } |
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
| public string function onPageBlogBodyRender($) { | |
| return $.setDynamicContent($.content('body')); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment