-
Notifications
You must be signed in to change notification settings - Fork 5
/
Application.cfc
56 lines (46 loc) · 1.85 KB
/
Application.cfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
*/
component{
// Application properties
this.name = hash( getCurrentTemplatePath() );
this.clientManagement = true;
this.sessionManagement = true;
this.sessionTimeout = createTimeSpan(0,0,30,0);
this.setClientCookies = true;
// COLDBOX STATIC PROPERTY, DO NOT CHANGE UNLESS THIS IS NOT THE ROOT OF YOUR COLDBOX APP
COLDBOX_APP_ROOT_PATH = getDirectoryFromPath( getCurrentTemplatePath() );
// The web server mapping to this application. Used for remote purposes or static purposes
COLDBOX_APP_MAPPING = "";
// COLDBOX PROPERTIES
COLDBOX_CONFIG_FILE = "";
// COLDBOX APPLICATION KEY OVERRIDE
COLDBOX_APP_KEY = "";
// LOCATION MAPPINGS
//this.mappings[ "/cbox-cbmongodb" ] = COLDBOX_APP_ROOT_PATH;
this.mappings[ "/tests" ] = COLDBOX_APP_ROOT_PATH & "/tests";
this.mappings[ "/root" ] = COLDBOX_APP_ROOT_PATH;
this.mappings[ "/cbmongodb" ] = COLDBOX_APP_ROOT_PATH & "/modules/cbmongodb";
// application start
public boolean function onApplicationStart(){
application.cbBootstrap = new coldbox.system.Bootstrap( COLDBOX_CONFIG_FILE, COLDBOX_APP_ROOT_PATH, COLDBOX_APP_KEY, COLDBOX_APP_MAPPING );
application.cbBootstrap.loadColdbox();
return true;
}
// request start
public boolean function onRequestStart(String targetPage){
/*if( findNoCase('index.cfm',listLast(arguments.targetPage,"/")) ){
application.cbBootstrap.onRequestStart( arguments.targetPage );
}*/
application.cbBootstrap.onRequestStart( arguments.targetPage );
return true;
}
public void function onSessionStart(){
application.cbBootStrap.onSessionStart();
}
public void function onSessionEnd( struct sessionScope, struct appScope ){
arguments.appScope.cbBootStrap.onSessionEnd( argumentCollection=arguments );
}
public boolean function onMissingTemplate( template ){
return application.cbBootstrap.onMissingTemplate( argumentCollection=arguments );
}
}