Skip to content

Instantly share code, notes, and snippets.

@muracms
Created November 7, 2013 17:54
Show Gist options
  • Select an option

  • Save muracms/7358916 to your computer and use it in GitHub Desktop.

Select an option

Save muracms/7358916 to your computer and use it in GitHub Desktop.
<cfinclude template="plugin/config.cfm" />
<cfsavecontent variable="body">
<cfoutput>
<h2>#pluginConfig.getName()#</h2>
<p>Description of you plugin goes here.</p>
</cfoutput>
</cfsavecontent>
<cfoutput>
#$.getBean('pluginManager').renderAdminTemplate(
body=body
, pageTitle=pluginConfig.getName()
)#
</cfoutput>
$.getBean('pluginManager').renderAdminTemplate(
body={body}
, pageTitle={htmlPageTitle}
, jsLib={prototype|jquery}
, jsLibLoaded={true|false}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment