Difference between revisions of "ADF Applications"

From ADF Docs
Jump to: navigation, search
(Overview)
 
(4 intermediate revisions by one other user not shown)
Line 18: Line 18:
 
ADF Applications can contain many different parts and can be simple or complex.  Depending on what you are trying to accomplish will determine what makes up your application.  There are however 2 things that each ADF Application must have (in order to be considered a true application)
 
ADF Applications can contain many different parts and can be simple or complex.  Depending on what you are trying to accomplish will determine what makes up your application.  There are however 2 things that each ADF Application must have (in order to be considered a true application)
 
# An [[App Bean Config|appBeanConfig.cfm]]
 
# An [[App Bean Config|appBeanConfig.cfm]]
# An [[App.cfc]] located in your applications /components directory.
+
# An [[Site_Configuration_(ADF.cfc)|App.cfc]] located in your applications /components directory.
  
 
ADF Application's however can also have any of the following:
 
ADF Application's however can also have any of the following:
* [[Application Site Config]]
+
 
* [[Custom Application ADF Library Overrides]]
 
 
* [[Application Components]]
 
* [[Application Components]]
 
* [[Custom Field Types]]
 
* [[Custom Field Types]]
 +
* [[Application Configuration at the Site Level (XML)]]
 +
* [[Application Configuration at the Site Level (Element)]]
 
* [[CCAPI]] calls
 
* [[CCAPI]] calls
 +
* [[Custom Application ADF Library Overrides]]
 
* [[General Chooser]](s)
 
* [[General Chooser]](s)
  
Line 33: Line 35:
 
* [[Distributing your ADF Application]]
 
* [[Distributing your ADF Application]]
 
* [[Documenting your ADF Application]]
 
* [[Documenting your ADF Application]]
 +
* [[Configure SVN for your ADF Application]]
 
* [[Maintaining your ADF Application]]
 
* [[Maintaining your ADF Application]]
  
 
[[Category: How-to Guide]]
 
[[Category: How-to Guide]]

Latest revision as of 16:36, 21 April 2010

Overview

What is an ADF Application?

ADF Applications are essentially a combination of:

  • Custom code (e.g. custom scripts, render handlers, datasheet modules etc...)
  • CommonSpot Components (e.g. Custom Elements, Custom Field Types, Display Templates etc...)
  • CFC Components

What can I do with an ADF Application?

You can pretty much do anything with an ADF Application. You can:

  • use it to control settings for your custom coding projects
  • build interfaces to Custom Elements to make it easier to integrate with Custom data
  • construct and distribute entire applications that drive core content management functionality like Profiles, Facebook Integration or Sharpoint connectivity.

What makes up an ADF Application

ADF Applications can contain many different parts and can be simple or complex. Depending on what you are trying to accomplish will determine what makes up your application. There are however 2 things that each ADF Application must have (in order to be considered a true application)

  1. An appBeanConfig.cfm
  2. An App.cfc located in your applications /components directory.

ADF Application's however can also have any of the following:

Guides