PHP 인터페이스 Neos\Flow\Mvc\RequestInterface

파일 보기 프로젝트 열기: neos/flow-development-collection 0 사용 예제들

공개 메소드들

메소드 설명
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