PHP Интерфейс Neos\Flow\Mvc\RequestInterface

Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
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

Описание методов

getControllerObjectName() публичный Метод

Returns the object name of the controller which is supposed to process the request.
public getControllerObjectName ( ) : string
Результат string The controller's object name

getMainRequest() публичный Метод

Returns the top level Request: the one just below the HTTP request
public getMainRequest ( ) : Neos\Flow\Mvc\RequestInterface
Результат Neos\Flow\Mvc\RequestInterface

isDispatched() публичный Метод

The dispatcher will try to dispatch the request again if it has not been addressed yet.
public isDispatched ( ) : boolean
Результат boolean TRUE if this request has been dispatched successfully

isMainRequest() публичный Метод

Checks if this request is the uppermost ActionRequest, just one below the HTTP request.
public isMainRequest ( ) : boolean
Результат boolean

setDispatched() публичный Метод

Sets the dispatched flag
public setDispatched ( boolean $flag ) : void
$flag boolean If this request has been dispatched
Результат void