PHP Class atk4\data\Field

Inheritance: use trait atk4\core\TrackableTrait
Afficher le fichier Open project: atk4/data

Méthodes publiques

Свойство Type Description
$actual string | null Actual field name.
$dateTimeClass For example, 'DateTime', 'Carbon' etc.
$dateTimeZoneClass For example, 'DateTimeZone', 'Carbon' etc.
$default mixed Default value of field.
$enum array | null For several types enum can provide list of available options.
$join Join | null Join object.
$mandatory boolean | string Can contain error message for UI.
$never_persist boolean Setting this to true will never actually load or store the field in the database. It will action as normal, but will be skipped by load/iterate/update/insert.
$never_save boolean Setting this to true will never actually store the field in the database. It will action as normal, but will be skipped by update/insert.
$persist_format string For example, for date it can be 'Y-m-d', for datetime - 'Y-m-d H:i:s' etc.
$persist_timezone string For example, 'IST', 'UTC', 'Europe/Riga' etc.
$read_only boolean For example, expressions are read only.
$serialize null | boolean | array Value can be array [$encode_callback, $decode_callback].
$system boolean Is it system field? System fields will be always loaded and saved.
$type string Values are: 'string', 'boolean', 'integer', 'money', 'float', 'date', 'datetime', 'time', 'array', 'object'. Can also be set to unspecified type for your own custom handling.
$typecast null | boolean | array Value can be array [$typecast_save_callback, $typecast_load_callback].
$ui array Array with UI flags like editable, visible and hidden.

Méthodes publiques

Méthode Description
__construct ( array $defaults = [] ) Constructor. You can pass field properties as array.
__debugInfo ( ) : array Returns array with useful debug info for var_dump.
get ( ) : mixed Returns field value.
isEditable ( ) : boolean Returns if field should be editable in UI.
isHidden ( ) : boolean Returns if field should be hidden in UI.
isVisible ( ) : boolean Returns if field should be visible in UI.
normalize ( mixed $value ) : mixed Depending on the type of a current field, this will perform some normalization for strict types.
set ( mixed $value ) Sets field value.

Method Details

__construct() public méthode

Constructor. You can pass field properties as array.
public __construct ( array $defaults = [] )
$defaults array

__debugInfo() public méthode

Returns array with useful debug info for var_dump.
public __debugInfo ( ) : array
Résultat array

get() public méthode

Returns field value.
public get ( ) : mixed
Résultat mixed

isEditable() public méthode

Returns if field should be editable in UI.
public isEditable ( ) : boolean
Résultat boolean

isHidden() public méthode

Returns if field should be hidden in UI.
public isHidden ( ) : boolean
Résultat boolean

isVisible() public méthode

Returns if field should be visible in UI.
public isVisible ( ) : boolean
Résultat boolean

normalize() public méthode

Depending on the type of a current field, this will perform some normalization for strict types.
public normalize ( mixed $value ) : mixed
$value mixed
Résultat mixed

set() public méthode

Sets field value.
public set ( mixed $value )
$value mixed

Property Details

$actual public_oe property

Actual field name.
public string|null $actual
Résultat string | null

$dateTimeClass public_oe property

For example, 'DateTime', 'Carbon' etc.
public $dateTimeClass

$dateTimeZoneClass public_oe property

For example, 'DateTimeZone', 'Carbon' etc.
public $dateTimeZoneClass

$default public_oe property

Default value of field.
public mixed $default
Résultat mixed

$enum public_oe property

For several types enum can provide list of available options.
public array|null $enum
Résultat array | null

$join public_oe property

Join object.
public Join,atk4\data|null $join
Résultat Join | null

$mandatory public_oe property

Can contain error message for UI.
public bool|string $mandatory
Résultat boolean | string

$never_persist public_oe property

Setting this to true will never actually load or store the field in the database. It will action as normal, but will be skipped by load/iterate/update/insert.
public bool $never_persist
Résultat boolean

$never_save public_oe property

Setting this to true will never actually store the field in the database. It will action as normal, but will be skipped by update/insert.
public bool $never_save
Résultat boolean

$persist_format public_oe property

For example, for date it can be 'Y-m-d', for datetime - 'Y-m-d H:i:s' etc.
public string $persist_format
Résultat string

$persist_timezone public_oe property

For example, 'IST', 'UTC', 'Europe/Riga' etc.
public string $persist_timezone
Résultat string

$read_only public_oe property

For example, expressions are read only.
public bool $read_only
Résultat boolean

$serialize public_oe property

Value can be array [$encode_callback, $decode_callback].
public null|bool|array $serialize
Résultat null | boolean | array

$system public_oe property

Is it system field? System fields will be always loaded and saved.
public bool $system
Résultat boolean

$type public_oe property

Values are: 'string', 'boolean', 'integer', 'money', 'float', 'date', 'datetime', 'time', 'array', 'object'. Can also be set to unspecified type for your own custom handling.
public string $type
Résultat string

$typecast public_oe property

Value can be array [$typecast_save_callback, $typecast_load_callback].
public null|bool|array $typecast
Résultat null | boolean | array

$ui public_oe property

Array with UI flags like editable, visible and hidden.
public array $ui
Résultat array