Back
pluginNames()
Returns a list of the names of all installed plugins.
// Check if the Scaffold plugin is installed
<cfif ListFindNoCase("scaffold", pluginNames())>
// do something cool
</cfif>
Copied!