Метод |
Описание |
|
__construct ( array $attributes = [] ) |
constructor |
|
__get ( string $key ) : mixed |
Dynamically retrieve the value of an attribute. |
|
all ( ) : array |
Get all of the items in the config entity. |
|
clear ( ) : void |
entities clear |
|
fill ( array $attributes ) : void |
Fill all attributes |
|
get ( string $name, mixed $default = null ) : mixed |
get value, chain of responsibility |
|
getAttributes ( ) : array |
returns current attributes |
|
getDepth ( ) : integer |
depth level |
|
getIterator ( ) : ArrayIterator |
Get an iterator for the items. |
|
getParent ( ) : ConfigEntity |
get adjacency parent |
|
getPure ( string $name, mixed $default = null ) : mixed |
get pure value |
|
getPureAll ( ) : array |
get pure object to array |
|
offsetExists ( string $offset ) : boolean |
Determine if a given offset exists. |
|
offsetGet ( string $offset ) : mixed |
Get the value at a given offset. |
|
offsetSet ( string $offset, mixed $value ) : void |
Set the value at a given offset. |
|
offsetUnset ( string $offset ) : void |
Unset the value at a given offset. |
|
set ( string $name, mixed $value ) : void |
set entity value |
|
setParent ( ConfigEntity $ancestor ) : void |
make hierarchy to upper |
|