-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathModuleConfig.cfc
More file actions
47 lines (36 loc) · 806 Bytes
/
ModuleConfig.cfc
File metadata and controls
47 lines (36 loc) · 806 Bytes
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
/**
* Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp
* www.ortussolutions.com
* ---
*/
component {
// Module Properties
this.title = "@MODULE_NAME@";
this.author = "Ortus Solutions";
this.webURL = "https://www.ortussolutions.com";
this.description = "@MODULE_DESCRIPTION@";
this.version = "@build.version@+@build.number@";
// Model Namespace
this.modelNamespace = "@MODULE_SLUG@";
// CF Mapping
this.cfmapping = "@MODULE_SLUG@";
// Dependencies
this.dependencies = [];
/**
* Configure Module
*/
function configure(){
settings = {
};
}
/**
* Fired when the module is registered and activated.
*/
function onLoad(){
}
/**
* Fired when the module is unregistered and unloaded
*/
function onUnload(){
}
}