Skip to content

Miscellaneous

includedInObject()

includedInObject() — returns any

Used as a shortcut to check if the specified IDs are a part of the main form object. This method should only be used for hasMany associations.

NameTypeRequiredDefaultDescription
objectNamestringyesName of the variable containing the parent object to represent with this form field.
associationstringyesName of the association set in the parent object to represent with this form field.
keysstringyesPrimary keys associated with this form field. Note that these keys should be listed in the order that they appear in the database table.
includedInObject(objectName, association, keys) <!--- Check to see if the customer is subscribed to the Swimsuit Edition. Note that the order of the `keys` argument should match the order of the `customerid` and `publicationid` columns in the `subscriptions` join table --->
<cfif not includedInObject(objectName="customer", association="subscriptions", keys="#customer.key()#,#swimsuitEdition.id#")>
    <cfset assignSalesman(customer)>
</cfif>