PHP Класс Neos\Fusion\TypoScriptObjects\AbstractArrayTypoScriptObject

Наследование: extends AbstractTypoScriptObject, implements ArrayAccess
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$ignoreProperties array If you iterate over "properties" these in here should usually be ignored. For example additional properties in "Case" that are not "Matchers".
$properties array List of properties which have been set using array access. We store this for *every* TypoScript object in order to do things like: x = Foo { a = 'foo' b = ${this.a + 'bar'} }

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

Метод Описание
offsetExists ( mixed $offset ) : boolean
offsetGet ( mixed $offset ) : mixed
offsetSet ( mixed $offset, mixed $value ) : void
offsetUnset ( mixed $offset ) : void
setIgnoreProperties ( array $ignoreProperties = [] ) : void

Описание методов

offsetExists() публичный Метод

public offsetExists ( mixed $offset ) : boolean
$offset mixed
Результат boolean

offsetGet() публичный Метод

public offsetGet ( mixed $offset ) : mixed
$offset mixed
Результат mixed

offsetSet() публичный Метод

public offsetSet ( mixed $offset, mixed $value ) : void
$offset mixed
$value mixed
Результат void

offsetUnset() публичный Метод

public offsetUnset ( mixed $offset ) : void
$offset mixed
Результат void

setIgnoreProperties() публичный Метод

public setIgnoreProperties ( array $ignoreProperties = [] ) : void
$ignoreProperties array
Результат void

Описание свойств

$ignoreProperties защищенное свойство

If you iterate over "properties" these in here should usually be ignored. For example additional properties in "Case" that are not "Matchers".
protected array $ignoreProperties
Результат array

$properties защищенное свойство

List of properties which have been set using array access. We store this for *every* TypoScript object in order to do things like: x = Foo { a = 'foo' b = ${this.a + 'bar'} }
protected array $properties
Результат array