Method |
Description |
|
__construct ( $name = null, AbstractEntity $parent = null ) |
|
|
_set ( $name, $value ) |
|
|
append ( mixed $value ) |
Append value to array |
|
get ( string $key, mixed $default = null ) : mixed |
Get value or return $default if there is no element set. |
|
getDbValue ( ) |
|
|
getIterator ( ) : Traversable |
(PHP 5 >= 5.0.0)
Retrieve an external iterator |
|
getKeyValidationMessages ( ) : array |
Get key validation messages |
|
getKeyValidators ( ) : mixed |
Get key validators |
|
getValue ( $params = [], $processCallbacks = true ) |
|
|
offsetExists ( mixed $offset ) : boolean |
(PHP 5 >= 5.0.0)
Whether a offset exists |
|
offsetGet ( mixed $offset ) : mixed |
(PHP 5 >= 5.0.0)
Offset to retrieve |
|
offsetSet ( mixed $offset, mixed $value ) : void |
(PHP 5 >= 5.0.0)
Offset to set |
|
offsetUnset ( mixed $offset ) : void |
(PHP 5 >= 5.0.0)
Offset to unset |
|
prepend ( mixed $value ) |
Prepend value to array |
|
set ( string $key, mixed $value ) |
Set value for given key (can be nested key, using dotted notation) |
|
setDefaultValue ( $defaultValue = null ) |
|
|
setKeyValidationMessages ( $messages ) |
Set key validation messages |
|
setKeyValidators ( array $validators ) |
Set key validators |
|
setValue ( $value = null, $fromDb = false ) |
|
|
toArray ( $params = [] ) |
|
|