Field::isFixed()

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.

Return value

Bool

Full documentation

List all fields that are not fixed fields:

foreach ( $Customer->getFields() as $Field ){
  if ( !$Field->isFixed() ){
      $txt .= "<div>{$Field->getTitle()}<div>";
  }
}