Hi All,
I’ve been building some new field types and was wondering is there a convention behind naming types?
All default types within the CRM system are lowercase
All class names are camelCased
However the DynamicFields module is looking for Forms using the ucfirst version of the field type for example.
<SUITECRM_DIR>/modules/DynamicFields/templates/Fields/Forms/$type.php
lets say the field type is bool for example;
I’ve named by form php file bool.php however DynamicFields is looking for a Bool.php
are lowercase field types only for built-in types?
why the difference in FieldCases and FieldViewer for handling types?
I’m going with UpperCase for now as this at least will allow my custom form to appear in Studio