Свойство | Тип | Описание | |
---|---|---|---|
$request | The current request | ||
$resourceArgumentName | string | Name of the action method argument which acts as the resource for the RESTful controller. If an argument with the specified name is passed to the controller, the show, update and delete actions can be triggered automatically. | |
$response | The response which will be returned by this action controller |
Метод | Описание | |
---|---|---|
initializeCreateAction ( ) : void | Allow creation of resources in createAction() | |
initializeUpdateAction ( ) : void | Allow modification of resources in updateAction() | |
redirectToUri ( mixed $uri, integer $delay, integer $statusCode = 303 ) : void | Redirects the web request to another uri. | |
resolveActionMethodName ( ) : string | Determines the action method and assures that the method exists. |
protected initializeCreateAction ( ) : void | ||
Результат | void |
protected initializeUpdateAction ( ) : void | ||
Результат | void |
protected redirectToUri ( mixed $uri, integer $delay, integer $statusCode = 303 ) : void | ||
$uri | mixed | Either a string representation of a URI or a \Neos\Flow\Http\Uri object |
$delay | integer | (optional) The delay in seconds. Default is no delay. |
$statusCode | integer | (optional) The HTTP status code for the redirect. Default is "303 See Other" |
Результат | void |
protected resolveActionMethodName ( ) : string | ||
Результат | string | The action method name |
protected ActionRequest,Neos\Flow\Mvc $request | ||
Результат |
protected string $resourceArgumentName | ||
Результат | string |