Class Request
The request object stores information about the web request and how it was routed, as well as stores data setup by the controller, including view file and loaded data.
Located in /class.request.php (line 23)
Arguments supplied with this request that are passed to the action method
Data loaded by the controller and utilized by the view file
Is this connection secure (HTTPS)?
A copy of the controller handling this request
The controller action method being invoked for this request
The name of the controller handling this request
The request type (GET, POST, etc)
The URI after custom route rules have written the original
The URI of the Request
The name of the view file loaded for this request
Constructor. Determines information about the request type and connection type and stores it within the class.
Returns true if the current request is a GET request, or false otherwise.
Returns true if the current request is a POST request, or false otherwise.
Returns true if the current request came via a secure connection, or false otherwise.
Documentation generated on Thu, 25 Feb 2010 15:59:41 -0500 by phpDocumentor 1.4.3

