When I use the key name of "mod" (with quotes), then when I dump the THIS.CONFIGDATA structure, it shows the parent PATH key, and in it, just the APP and FW keys (along with their inside content). The mod key does not show up at all.
Use this code (saved in testFile.cfm):
<!--- testFile.cfm--->
<cfset configData = {
path = {
app = {
absDataURL = "/acp/app/data/",
absLogicURL = "/acp/app/logic/",
absLogicFQDN = "/acp.app.logic.",
absPresentationURL = "/acp/app/presentation/",
absURL = "/acp/app/",
rootURL = "/acp/"
},
fw = {
absDataURL = "/framework/fw/data/",
absLogicURL = "/framework/fw/logic/",
absLogicFQDN = "/framework.fw.logic.",
absPresentationURL = "/framework/fw/presentation/",
absURL = "/framework/fw/",
rootURL = "/framework/"
},
"mod"= {
absURL = "/acp/mods/",
relDataURL = "/data/",
relLogicURL = "/logic/",
relLogicFQDN = ".logic.",
relPresentationURL = "/presentation/",
rootURL = "/acp/"
}
}
}>
<cfdump var="#configData#">
And post a screen cap of the results.
--
Adam