Request
class Request
Presenter request.
Constants
FORWARD |
method |
SECURED |
flag |
RESTORED |
flag |
VARYING |
flag |
Properties
string | $presenterName | ||
array | $parameters | ||
array | $post | ||
array | $files | ||
string|null | $method |
Methods
No description
Sets the presenter name.
Retrieve the presenter name.
Sets variables provided to the presenter.
Returns all variables provided to the presenter (usually via URL).
Returns a parameter provided to the presenter.
Returns a variable provided to the presenter via POST.
Returns all uploaded files.
Returns the method.
Checks if the method is the given one.
Checks the flag.
Details
at line 65
__construct($name, $method = null, array $params = [], array $post = [], array $files = [], array $flags = [])
No description
at line 81
Request
setPresenterName($name)
Sets the presenter name.
at line 92
string
getPresenterName()
Retrieve the presenter name.
at line 102
Request
setParameters(array $params)
Sets variables provided to the presenter.
at line 113
array
getParameters()
Returns all variables provided to the presenter (usually via URL).
at line 124
mixed
getParameter($key)
Returns a parameter provided to the presenter.
at line 134
Request
setPost(array $params)
Sets variables provided to the presenter via POST.
at line 147
mixed
getPost($key = null)
Returns a variable provided to the presenter via POST.
If no key is passed, returns the entire array.
at line 165
Request
setFiles(array $files)
Sets all uploaded files.
at line 176
array
getFiles()
Returns all uploaded files.
at line 187
Request
setMethod($method)
Sets the method.
at line 198
string|null
getMethod()
Returns the method.
at line 209
bool
isMethod($method)
Checks if the method is the given one.
at line 221
Request
setFlag($flag, $value = true)
Sets the flag.
at line 233
bool
hasFlag($flag)
Checks the flag.