Load ADF Components into Site
Load ADF Library Components into a Site
Loading the ADF Library components into the site is controlled in the Site Configuration.
To enable the full ADF Library components automatically loaded into the sites application.ADF scope, follow the instructions for ADF Library Components. Note: this will load the most recent versions of the ADF Library component.
To load a specific version of an ADF Library component into the sites application.ADF scope, follow the instructions for ADF Library Components Overrides.
ADF Library components are automatically loaded into the sites application.ADF scope
Following are instructions to load the ADF library components into a sites application.ADF scope:
- Open the ADF.cfc in the sites "_cs_apps" directory.
- Locate the Define the ADF components... section at the top of the file.
- Set an application.ADF structure to the ADF library component with the structure key as the short name for the component (name without the version numbers).
- Here is a sample for adding the Scripts_1_0 ADF library component into the application.ADF.scripts variable:
application.ADF["scripts"] = server.ADF.objectFactory.getBean("scripts_1_0");
The scripts component is now accessible via application scope for the site.
application.ADF.scripts
See the Site Configuration - Library Components wiki page for more details.
Related Guides
- ADF Installation
- Adding Site Level Components (non application)