18 lines
586 B
Plaintext
18 lines
586 B
Plaintext
<cfsilent>
|
|
<cfparam name="ATTRIBUTES.titleMap" default=#structNew()#/>
|
|
<cfparam name="ATTRIBUTES.sortArray" default=#arrayNew(1)#/>
|
|
|
|
<cfset attributeList="titleMap,sortArray"/>
|
|
|
|
<cfset extraAttributes=structNew()/>
|
|
<cfloop collection=#ATTRIBUTES# item="attr">
|
|
<cfif NOT listFindNoCase(attributeList, attr)>
|
|
<cfset val="#structFind(ATTRIBUTES, attr)#"/>
|
|
<cfif IsSimpleValue(val)>
|
|
<cfset structInsert(extraAttributes, attr, val)/>
|
|
</cfif>
|
|
</cfif>
|
|
</cfloop>
|
|
|
|
</cfsilent><!---
|
|
---><cfif thisTag.executionMode is "start"><tr><cfelseif thisTag.executionMode is "end"></tr></cfif> |