|
Revision 208, 1.0 kB
(checked in by luis, 7 years ago)
|
|
Finalized App
|
| Line | |
|---|
| 1 | <cfcomponent> |
|---|
| 2 | <!--- Modify the Name of the application---> |
|---|
| 3 | <cfset this.name = "cfcGenerator01"> |
|---|
| 4 | <cfset this.clientManagement = true> |
|---|
| 5 | <cfset this.sessionManagement = true> |
|---|
| 6 | <cfset this.sessionTimeout = createTimeSpan(0,0,30,0)> |
|---|
| 7 | <cfset this.setClientCookies = true> |
|---|
| 8 | |
|---|
| 9 | <cffunction name="onApplicationStart" returnType="boolean" output="false"> |
|---|
| 10 | <cfreturn true> |
|---|
| 11 | <!--- Place Here any application start code ---> |
|---|
| 12 | </cffunction> |
|---|
| 13 | |
|---|
| 14 | <cffunction name="onApplicationEnd" returnType="void" output="false"> |
|---|
| 15 | <cfargument name="applicationScope" required="true"> |
|---|
| 16 | <!--- Place Here any application end code ---> |
|---|
| 17 | </cffunction> |
|---|
| 18 | |
|---|
| 19 | <cffunction name="onSessionStart" returnType="void" output="false"> |
|---|
| 20 | <!--- Place Here any session start code ---> |
|---|
| 21 | </cffunction> |
|---|
| 22 | |
|---|
| 23 | <cffunction name="onSessionEnd" returnType="void" output="false"> |
|---|
| 24 | <cfargument name="sessionScope" type="struct" required="true"> |
|---|
| 25 | <cfargument name="appScope" type="struct" required="false"> |
|---|
| 26 | <!--- Place Here any session end code ---> |
|---|
| 27 | </cffunction> |
|---|
| 28 | |
|---|
| 29 | </cfcomponent> |
|---|