Request
final class Request
Presenter request.
Constants
FORWARD |
method |
RESTORED |
flag |
VARYING |
flag |
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.
No description
Details
at line 41
__construct(string $name, string|null $method = null, array $params = [], array $post = [], array $files = [], array $flags = [])
No description
at line 55
Request
setPresenterName(string $name)
Sets the presenter name.
at line 65
string
getPresenterName()
Retrieve the presenter name.
at line 74
Request
setParameters(array $params)
Sets variables provided to the presenter.
at line 84
array
getParameters()
Returns all variables provided to the presenter (usually via URL).
at line 93
mixed
getParameter(string $key)
Returns a parameter provided to the presenter.
at line 102
Request
setPost(array $params)
Sets variables provided to the presenter via POST.
at line 113
mixed
getPost(string|null $key = null)
Returns a variable provided to the presenter via POST.
If no key is passed, returns the entire array.
at line 124
Request
setFiles(array $files)
Sets all uploaded files.
at line 134
array
getFiles()
Returns all uploaded files.
at line 143
Request
setMethod(string|null $method)
Sets the method.
at line 153
string|null
getMethod()
Returns the method.
at line 162
bool
isMethod(string $method)
Checks if the method is the given one.
at line 171
Request
setFlag(string $flag, bool $value = true)
Sets the flag.
at line 181
bool
hasFlag(string $flag)
Checks the flag.
at line 187
array
toArray()
No description
Traits
Strict class for better experience.