<cfmodule>
Invokes a custom tag for use in cfml templates.
The <cfmodule> tag can help deal with custom tag name conflicts and differs from the use of <cfinclude> in that it does not share or affect the scope of the caller.
Use the template attribute to name a template that contains the custom tag definition, including its path.
Individual attributes or an attributeCollection
may be passed as tag attributes, which will be exclusive to the scope of the module template called.
This tag may have a body.
This tag is also supported within <cfscript>
<cfmodule><!--- body --->[</cfmodule>]
This tag does not use any attributes.
Examples
<cfmodule
template="string"
[attributeCollection="optional structure of attributes"]
[attribute_1]
[attribute_2]
>
See also
- Core CFML Language
- <cfinclude>
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)