프로퍼티 | 타입 | 설명 | |
---|---|---|---|
$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 |