PHP Interface Neos\Flow\Mvc\RequestInterface

Afficher le fichier Open project: neos/flow-development-collection Interface Usage Examples

Méthodes publiques

Méthode Description
getControllerObjectName ( ) : string Returns the object name of the controller which is supposed to process the request.
getMainRequest ( ) : Neos\Flow\Mvc\RequestInterface Returns the top level Request: the one just below the HTTP request
isDispatched ( ) : boolean If this request has been dispatched and addressed by the responsible controller and the response is ready to be sent.
isMainRequest ( ) : boolean Checks if this request is the uppermost ActionRequest, just one below the HTTP request.
setDispatched ( boolean $flag ) : void Sets the dispatched flag

Method Details

getControllerObjectName() public méthode

Returns the object name of the controller which is supposed to process the request.
public getControllerObjectName ( ) : string
Résultat string The controller's object name

getMainRequest() public méthode

Returns the top level Request: the one just below the HTTP request
public getMainRequest ( ) : Neos\Flow\Mvc\RequestInterface
Résultat Neos\Flow\Mvc\RequestInterface

isDispatched() public méthode

The dispatcher will try to dispatch the request again if it has not been addressed yet.
public isDispatched ( ) : boolean
Résultat boolean TRUE if this request has been dispatched successfully

isMainRequest() public méthode

Checks if this request is the uppermost ActionRequest, just one below the HTTP request.
public isMainRequest ( ) : boolean
Résultat boolean

setDispatched() public méthode

Sets the dispatched flag
public setDispatched ( boolean $flag ) : void
$flag boolean If this request has been dispatched
Résultat void