Studio is tool for current installation. If you want to use git I recommend creating file(s) in custom directory.
- Create file in directory: custom/Extension/modules/<module_name>/Ext/Vardefs/<file_name>.php
β It works for all modules (system and custom).
β Several fileds can be in one file.
β You can redefine parameters of system modules fields. - Write description of field, for an example:
$dictionary["<modile_name>"]["fields"]["number"] = array (
'required' => true,
'name' => 'number',
'vname' => 'LBL_NUMBER',
'type' => 'int',
'readonly' => true,
'len' => 11,
'auto_increment' => false,
'massupdate' => 0,
'no_default' => false,
'comments' => '',
'help' => '',
'importable' => true,
'duplicate_merge' => 'disabled',
'duplicate_merge_dom_value' => '0',
'audited' => false,
'reportable' => true,
'unified_search' => false,
'merge_filter' => 'disabled',
);
- Add language file (if need) βcustom/Extension/modules/<modile_name>/Ext/Language/en_us.<any_suffix>.phpβ
$mod_strings['LBL_NUMBER'] = 'Number';
- Run βQuick Rapair and Rebuildβ
This is a standard method for SuiteCRM 7.