Array Rows: 12 |
1 | Struct | codePrintHTML | string | 261: <cfset var bResult = variables.instance.hasModule[arguments.module]><br>
262: <cfelse><br>
<b>263: <cfset var modules = getModules()></b><br>
264: <cfset var qCheck = ""><br>
265: <cfset var bResult = false><br>
|
| codePrintPlain | string | 261: <cfset var bResult = variables.instance.hasModule[arguments.module]>
262: <cfelse>
263: <cfset var modules = getModules()>
264: <cfset var qCheck = "">
265: <cfset var bResult = false>
|
| column | | id | | line | | Raw_Trace | string | core.modulemanager_cfc$cf.udfCall1(/turnkey/core/moduleManager.cfc:263) |
| template | string | D:\Websites\turnkey\core\moduleManager.cfc |
| type | |
|
2 | Struct | codePrintHTML | string | 956: <cfargument name="module" type="string" hint="The name of the module to check."><br>
957: <br>
<b>958: <cfreturn getModuleManager().hasModule(module=arguments.module)></b><br>
959: <br>
960: </cffunction><br>
|
| codePrintPlain | string | 956: <cfargument name="module" type="string" hint="The name of the module to check.">
957:
958: <cfreturn getModuleManager().hasModule(module=arguments.module)>
959:
960: </cffunction>
|
| column | | id | | line | | Raw_Trace | string | core.site_cfc$cf.udfCall6(/turnkey/core/site.cfc:958) |
| template | string | D:\Websites\turnkey\core\site.cfc |
| type | |
|
3 | Struct | codePrintHTML | string | 880: with_deleted();<br>
881: <br>
<b>882: if (getTypeManager().getSite().hasModule("VET API")) {</b><br>
883: extend("turnkey.modules.vetapi.types.common.user");<br>
884: }<br>
|
| codePrintPlain | string | 880: with_deleted();
881:
882: if (getTypeManager().getSite().hasModule("VET API")) {
883: extend("turnkey.modules.vetapi.types.common.user");
884: }
|
| column | | id | | line | | Raw_Trace | string | core.type.user_cfc$cf.udfCall2(/turnkey/core/type/user.cfc:882) |
| template | string | D:\Websites\turnkey\core\type\user.cfc |
| type | |
|
4 | Struct | codePrintHTML | string | 3: <cffunction name="configure" access="private" returntype="void" hint="Configures this type" output="no"><br>
4: <cfscript><br>
<b>5: super.configure();</b><br>
6: <br>
7: // type config<br>
|
| codePrintPlain | string | 3: <cffunction name="configure" access="private" returntype="void" hint="Configures this type" output="no">
4: <cfscript>
5: super.configure();
6:
7: // type config
|
| column | | id | | line | | Raw_Trace | string | app.types.user_cfc$cf.udfCall(/app/types/user.cfc:5) |
| template | string | D:\Websites\nsca\root\app\types\user.cfc |
| type | |
|
5 | Struct | codePrintHTML | string | 56: }<br>
57: else {<br>
<b>58: configure();</b><br>
59: }<br>
60: <br>
|
| codePrintPlain | string | 56: }
57: else {
58: configure();
59: }
60:
|
| column | | id | | line | | Raw_Trace | string | core.type_cfc$cf.udfCall1(/turnkey/core/type.cfc:58) |
| template | string | D:\Websites\turnkey\core\type.cfc |
| type | |
|
6 | Struct | codePrintHTML | string | 153: if (not structKeyExists(variables.instance.types, stTypeConfig.uuid)) {<br>
154: try {<br>
<b>155: variables.instance.types[stTypeConfig.uuid] = createObject("component", trim(checkTypePath(path=stTypeConfig.path))).init(datasource=variables.instance.datasource, dbms=variables.instance.dbms, typeManager=this);</b><br>
156: }<br>
157: catch (any Excpt) {<br>
|
| codePrintPlain | string | 153: if (not structKeyExists(variables.instance.types, stTypeConfig.uuid)) {
154: try {
155: variables.instance.types[stTypeConfig.uuid] = createObject("component", trim(checkTypePath(path=stTypeConfig.path))).init(datasource=variables.instance.datasource, dbms=variables.instance.dbms, typeManager=this);
156: }
157: catch (any Excpt) {
|
| column | | id | | line | | Raw_Trace | string | core.typemanager_cfc$cf.udfCall1(/turnkey/core/typeManager.cfc:155) |
| template | string | D:\Websites\turnkey\core\typeManager.cfc |
| type | |
|
7 | Struct | codePrintHTML | string | 1237: <cfargument name="type" type="string" required="yes" hint="The name of the type to get from the typeManager."><br>
1238: <br>
<b>1239: <cfreturn variables.instance.site.getTypeManager().getType(arguments.type)></b><br>
1240: <br>
1241: </cffunction><br>
|
| codePrintPlain | string | 1237: <cfargument name="type" type="string" required="yes" hint="The name of the type to get from the typeManager.">
1238:
1239: <cfreturn variables.instance.site.getTypeManager().getType(arguments.type)>
1240:
1241: </cffunction>
|
| column | | id | | line | | Raw_Trace | string | core.securitymanager_cfc$cf.udfCall3(/turnkey/core/securityManager.cfc:1239) |
| template | string | D:\Websites\turnkey\core\securityManager.cfc |
| type | |
|
8 | Struct | codePrintHTML | string | 518: }<br>
519: <br>
<b>520: user = getType("user").newInstance();</b><br>
521: user.uuid = variables.instance.anonymousUser;<br>
522: user.label = "anonymous user";<br>
|
| codePrintPlain | string | 518: }
519:
520: user = getType("user").newInstance();
521: user.uuid = variables.instance.anonymousUser;
522: user.label = "anonymous user";
|
| column | | id | | line | | Raw_Trace | string | core.securitymanager_cfc$cf.udfCall1(/turnkey/core/securityManager.cfc:520) |
| template | string | D:\Websites\turnkey\core\securityManager.cfc |
| type | |
|
9 | Struct | codePrintHTML | string | 33: <br>
34: <!--- authenticate the user ---><br>
<b>35: <cfset request.site.getSecurityManager().authenticate()></b><br>
36: <br>
37: <!--- check workflow settings - also in admin/application.cfm ---><br>
|
| codePrintPlain | string | 33:
34: <!--- authenticate the user --->
35: <cfset request.site.getSecurityManager().authenticate()>
36:
37: <!--- check workflow settings - also in admin/application.cfm --->
|
| column | | id | | line | | Raw_Trace | string | sites._applicationmain_cfm$cf.call(/turnkey/sites/_applicationMain.cfm:35) |
| template | string | D:\Websites\turnkey\sites\_applicationMain.cfm |
| type | |
|
10 | Struct | codePrintHTML | string | 52: <cf_t_contentCache caching="#attributes.caching#" pageId="#request.pageId#"><br>
53: <br>
<b>54: <cfinclude template="/turnkey/sites/_applicationMain.cfm"></b><br>
55: <br>
56: <!--- check for redirect domain ---><br>
|
| codePrintPlain | string | 52: <cf_t_contentCache caching="#attributes.caching#" pageId="#request.pageId#">
53:
54: <cfinclude template="/turnkey/sites/_applicationMain.cfm">
55:
56: <!--- check for redirect domain --->
|
| column | | id | | line | | Raw_Trace | string | sites._page_cfm$cf.call(/turnkey/sites/_page.cfm:54) |
| template | string | D:\Websites\turnkey\sites\_page.cfm |
| type | |
|
11 | Struct | codePrintHTML | string | 13: <cfset request.cache_string = request.cache_string & cookie.state><br>
14: <br>
<b>15: <cfinclude template="/turnkey/sites/_page.cfm"></b><br>
16: <br>
17: <cfsetting enablecfoutputonly="no"><br>
|
| codePrintPlain | string | 13: <cfset request.cache_string = request.cache_string & cookie.state>
14:
15: <cfinclude template="/turnkey/sites/_page.cfm">
16:
17: <cfsetting enablecfoutputonly="no">
|
| column | | id | | line | | Raw_Trace | string | _page_cfm$cf.call(/_page.cfm:15) |
| template | string | D:\Websites\nsca\root\_page.cfm |
| type | |
|
12 | Struct | codePrintHTML | string | 14: <cfset request.variables.moduleid = "21E09916-19B9-EFA7-D6749053BF6BFCEE"><br>
15: <br>
<b>16: <cfinclude template="/_page.cfm"></b><br>
17: <br>
18: <cfsetting enablecfoutputonly="false"><br>
|
| codePrintPlain | string | 14: <cfset request.variables.moduleid = "21E09916-19B9-EFA7-D6749053BF6BFCEE">
15:
16: <cfinclude template="/_page.cfm">
17:
18: <cfsetting enablecfoutputonly="false">
|
| column | | id | | line | | Raw_Trace | string | training_courses405.locations.mackay_cfm$cf.call(/training-courses/locations/mackay.cfm:16) |
| template | string | D:\Websites\nsca\root\training-courses\locations\mackay.cfm |
| type | |
|