Where help text are stored?

Goodmorning,
Where help text (that it is possibile to show on hover of field in Edit view) configured in studio for fields, are stored?
I need to know if I can export from an SuiteCRM instance to another instance

Thank you so much
B.

I don’t know, but that is easy to find… just write a distinctive string in one of them, for example, hlep_txet

Now run a find in files:

grep -irn hlep_txet *
cache/modules/Contacts/Contactvardefs.php:147:
     'help' => 'hlep_txet of description!',

custom/modules/Contacts/Ext/Vardefs/vardefs.ext.php:164:
    $dictionary['Contact']['fields']['description']['help']='hlep_txet of description!';

custom/Extension/modules/Contacts/Ext/Vardefs/_override_sugarfield_description.php:4:
    $dictionary['Contact']['fields']['description']['help']='hlep_txet of description!';

The two first ones are auxiliary (automatically produced), the one you want to use is the third one from custom/Extension

1 Like