PHP 인터페이스 Elgg\Services\AjaxResponse

부터: 1.12.0
파일 보기 프로젝트 열기: elgg/elgg 0 사용 예제들

공개 메소드들

메소드 설명
cancel ( ) : self Cancel the response and send a 403 header
getData ( ) : stdClass Get the response data, which will be a stdClass object with property "value"
getTtl ( ) : integer Get the max-age for client caching
isCancelled ( ) : boolean Has the response been cancelled?
setData ( stdClass $data ) : self Set the response data
setTtl ( integer $ttl ) : self Set the max-age for client caching

메소드 상세

cancel() 공개 메소드

Cancel the response and send a 403 header
public cancel ( ) : self
리턴 self

getData() 공개 메소드

Get the response data, which will be a stdClass object with property "value"
public getData ( ) : stdClass
리턴 stdClass

getTtl() 공개 메소드

Get the max-age for client caching
public getTtl ( ) : integer
리턴 integer

isCancelled() 공개 메소드

Has the response been cancelled?
public isCancelled ( ) : boolean
리턴 boolean

setData() 공개 메소드

Set the response data
public setData ( stdClass $data ) : self
$data stdClass Response data. Must be able to be encoded in JSON.
리턴 self

setTtl() 공개 메소드

Set the max-age for client caching
public setTtl ( integer $ttl ) : self
$ttl integer Time to cache in seconds
리턴 self