PHP 인터페이스 Neos\Flow\Core\RequestHandlerInterface

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

공개 메소드들

메소드 설명
canHandleRequest ( ) : mixed Checks if the request handler can handle the current request.
getPriority ( ) : integer Returns the priority - how eager the handler is to actually handle the request. An integer > 0 means "I want to handle this request" where "100" is default. "0" means "I am a fallback solution".
handleRequest ( ) : void Handles a raw request

메소드 상세

canHandleRequest() 공개 메소드

Checks if the request handler can handle the current request.
public canHandleRequest ( ) : mixed
리턴 mixed TRUE or an integer > 0 if it can handle the request, otherwise FALSE or an integer < 0

getPriority() 공개 메소드

Returns the priority - how eager the handler is to actually handle the request. An integer > 0 means "I want to handle this request" where "100" is default. "0" means "I am a fallback solution".
public getPriority ( ) : integer
리턴 integer The priority of the request handler

handleRequest() 공개 메소드

Handles a raw request
public handleRequest ( ) : void
리턴 void