<cfcomponent
output="false"
hint="Base component to be extended">
<cffunction
name="GetBaseComponentPath"
access="public"
returntype="string"
output="false"
hint="Returns the base component's (this) file path.">
<cfreturn GetCurrentTemplatePath() />
</cffunction>
<cffunction
name="GetBaseComponenMixintPath"
access="public"
returntype="string"
output="false"
hint="Returns the base component's (this) file path.">
<cfset var strPath = "" />
<cfsavecontent variable="strPath">
<cfinclude template="GetCurrentTemplatePath.cfm" />
</cfsavecontent>
<cfreturn Trim( strPath ) />
</cffunction>
</cfcomponent>