RequestInterface
Contract for an extbase request.
Tags
Table of Contents
Methods
- getArgument() : string|array<string|int, mixed>
- Returns the value of the specified argument.
- getArguments() : mixed
- Returns an array of extbase arguments and their values.
- getControllerObjectName() : string
- Returns the object name of the controller defined by the package key and controller name.
- hasArgument() : mixed
- Checks if an argument of the given name exists (is set).
Methods
getArgument()
Returns the value of the specified argument.
public
getArgument(string $argumentName) : string|array<string|int, mixed>
Parameters
- $argumentName : string
-
Name of the argument
Tags
Return values
string|array<string|int, mixed> —Value of the argument
getArguments()
Returns an array of extbase arguments and their values.
public
getArguments() : mixed
Tags
getControllerObjectName()
Returns the object name of the controller defined by the package key and controller name.
public
getControllerObjectName() : string
Tags
Return values
string —The controller's Object Name
hasArgument()
Checks if an argument of the given name exists (is set).
public
hasArgument(mixed $argumentName) : mixed
Parameters
- $argumentName : mixed