17 lines
564 B
Plaintext
17 lines
564 B
Plaintext
<cfcomponent displayname="Application" output="true">
|
|
|
|
<cfset this.Name = "llmui" />
|
|
<cfset this.applicationTimeout = createTimeSpan(0, 0, 3, 0) />
|
|
<cfset this.sessionmanagement = "Yes" />
|
|
|
|
<cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
|
|
<cfreturn true />
|
|
</cffunction>
|
|
|
|
<cffunction name="OnRequestStart" access="public" returntype="boolean" output="false">
|
|
<cfargument name="targetPage" type="string" required="true" />
|
|
<cfreturn true />
|
|
</cffunction>
|
|
|
|
</cfcomponent>
|