PHP 클래스 Inpsyde\MultilingualPress\Common\Nonce\RequestContext

부터: 3.0.0
상속: implements Context
파일 보기 프로젝트 열기: inpsyde/multilingual-press

공개 메소드들

메소드 설명
__construct ( ) Constructor. Sets up the properties.
offsetExists ( mixed $name ) : boolean Checks if a value with the given name exists.
offsetGet ( string $name ) : mixed Returns the value with the given name.
offsetSet ( string $name, mixed $value ) : void Stores the given value with the given name.
offsetUnset ( string $name ) : void Removes the value with the given name.

메소드 상세

__construct() 공개 메소드

Constructor. Sets up the properties.
부터: 3.0.0
public __construct ( )

offsetExists() 공개 메소드

Checks if a value with the given name exists.
부터: 3.0.0
public offsetExists ( mixed $name ) : boolean
$name mixed The name of a value.
리턴 boolean Whether or not a value with the given name exists.

offsetGet() 공개 메소드

Returns the value with the given name.
부터: 3.0.0
public offsetGet ( string $name ) : mixed
$name string The name of a value.
리턴 mixed The value with the given name.

offsetSet() 공개 메소드

Manipulating values is not allowed.
부터: 3.0.0
public offsetSet ( string $name, mixed $value ) : void
$name string The name of a value.
$value mixed The value.
리턴 void

offsetUnset() 공개 메소드

Manipulating values is not allowed.
부터: 3.0.0
public offsetUnset ( string $name ) : void
$name string The name of a value.
리턴 void