-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathModuleConfig.cfc
More file actions
54 lines (47 loc) · 1.26 KB
/
ModuleConfig.cfc
File metadata and controls
54 lines (47 loc) · 1.26 KB
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
/**
* Copyright since 2012 by Ortus Solutions, Corp
* www.ortussolutions.com
* ---
* Module Config
*/
component {
// Module Properties
this.title = "Dumb Password";
this.author = "Ortus Solutions";
this.webURL = "https://www.ortussolutions.com";
this.description = "Prevents users from entering dumb passwords";
this.version = "@build.version@+@build.number@";
// If true, looks for views in the parent first, if not found, then in the module. Else vice-versa
this.viewParentLookup = true;
// If true, looks for layouts in the parent first, if not found, then in module. Else vice-versa
this.layoutParentLookup = true;
// Module Entry Point
this.entryPoint = "dumbpassword";
// Model Namespace
this.modelNamespace = "dumbpassword";
// CF Mapping
this.cfmapping = "dumbpassword";
// Module Dependencies
this.dependencies = [];
/**
* Configure
*/
function configure(){
// SES Routes
routes = [
// Convention Route
{ pattern="/:handler/:action?" }
];
}
/**
* Fired when the module is registered and activated.
*/
function onLoad(){
}
/**
* Fired when the module is unregistered and unloaded
*/
function onUnload(){
}
//**************************************** PRIVATE ************************************************//
}