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.
- Package -
phrame
- Version -
$Id: Action.html,v 1.1.1.1 2002/11/19 16:47:22 arcano Exp $
- Author -
Arnold Cano
|
Inherited Class Variable Summary
|
|
Inherited Method Summary
|
Inherited From Class Object
|
|
Method Summary
|
ActionForward perform ( $actionMapping, $actionForm )
|
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