PHP Класс Inpsyde\MultilingualPress\Common\Nonce\RequestContext

С версии: 3.0.0
Наследование: implements Context
Показать файл Открыть проект

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

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