Field::isFixed()
Version 3.8
Check if field is a fixed field
Version 3.8
Check if field is a fixed field
Fixed field is a field that framework creates automatically. For exmaple id, creator, modified_at.
Bool
List all fields that are not fixed fields:
foreach ( $Customer->getFields() as $Field ){
if ( !$Field->isFixed() ){
$txt .= "<div>{$Field->getTitle()}<div>";
}
}