Class Action

Object
   |
   --Action

Classes extended from Action:

Located in File: Program_Root/Action.php


An Action is an adapter between the contents of an incoming HTTP request and
 the corresponding business logic that should be executed to process this
 request. The ActionController will select an appropriate Action for each
 request, create an instance (if necessary), and call the perform() method.

Class Variable Summary

Inherited Class Variable Summary

Inherited Method Summary
Inherited From Class Object
Function Description
clone ( )
equals ( [$object = ] )
toString ( )

Method Summary
ActionForward perform ( $actionMapping, $actionForm )
Variable Detail

Method Detail

perform

ActionForward perform ( $actionMapping, $actionForm )

Process the specified HTTP request, and create the corresponding HTTP
 response (or forward to another web component that will create it).
 Return an ActionForward instance describing where and how control should
 be forwarded, or null if the response has already been completed.
 Subclasses must override this method to provide any business logic they
 wish to perform.
Function Parameters:
- ActionMapping $actionMapping:
- ActionForm $actionForm:
Function Info:
Access - public