<cfcomponent
output="false"
hint="I define application settings and event handlers.">
<cfset THIS.Name = "TagPathDemo" />
<cfset THIS.ApplicationTimeout = CreateTimeSpan( 0, 0, 0, 15 ) />
<cfset THIS.Mappings[ "/com" ] = (
GetDirectoryFromPath( GetCurrentTemplatePath() ) &
"components\"
) />
<cffunction
name="OnApplicationStart"
access="public"
returntype="boolean"
output="false"
hint="I fire when an application needs to be initialized.">
<cfset THIS.CustomTagPaths = (
GetDirectoryFromPath( GetCurrentTemplatePath() ) &
"tags\"
) />
<cfreturn true />
</cffunction>
</cfcomponent>