PHP 클래스 Neos\Fusion\TypoScriptObjects\AbstractArrayTypoScriptObject

상속: extends AbstractTypoScriptObject, implements ArrayAccess
파일 보기 프로젝트 열기: neos/neos-development-collection

보호된 프로퍼티들

프로퍼티 타입 설명
$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