Files
2024-10-23 11:17:42 +03:00

17 lines
407 B
Plaintext

<cfcomponent extends="taffy.core.api">
<cfscript>
this.name = hash(getCurrentTemplatePath());
variables.framework = {};
variables.framework.serializer = "taffy.bonus.AnythingToXmlRepresentation";
function onApplicationStart(){
application.anythingToXml = createObject("component", "anythingtoxml.AnythingToXML").init();
return super.onApplicationStart();
}
</cfscript>
</cfcomponent>