Site Level Component

From ADF Docs
Revision as of 22:59, 23 November 2010 by Ecaxabu (talk | contribs)
Jump to: navigation, search


Page Is Unavailable Due To Site Maintenance, Please Visit Reserve Copy Page


CLICK HERE


Overview

Have some code in a CFC that you would like to make accessible to your site? Building a Site Level Component is one of the easiest ways to take advantage of the ADF.

How to Create a Site Level Component

If you have an existing CFC (or a new CFC that you would like to create) with some methods that you would like to use in CommonSpot Element Filters or in Render Handlers, Custom Scripts or CommonSpot Overrides, you can make them accessible by

  • Create a directory called "components" in your sites /_cs_apps/ directory (e.g. /mySite/_cs_apps/)
  • Place your component (CFC) into the newly created components directory
  • Modify the <cfcomponent> to extend "ADF.core.SiteBase"

<source lang="java"> <cfcomponent extends="ADF.core.SiteBase"> ... {methods} ... </cfocmponent> </source>

Using your Site Level Component

Now that you have loaded your component you can write code as simple as this:

<source lang="java"> <cfset myData = application.ADF.mySiteLevelComponent.methodName("some value")> </source>