You are here

function hook_tmgmt_smartling_locked_fields_base_form_id_list_alter in TMGMT Translator Smartling 8.4

Alter list of base form ids of entities which are enabled for lock fields mechanism.

Parameters

array $forms_to_enable_locked_fields:

1 invocation of hook_tmgmt_smartling_locked_fields_base_form_id_list_alter()
tmgmt_smartling_form_alter in ./tmgmt_smartling.module

File

./tmgmt_smartling.api.php, line 61
Hooks provided by the TMGMT Smartling module.

Code

function hook_tmgmt_smartling_locked_fields_base_form_id_list_alter(array &$forms_to_enable_locked_fields) {
  $forms_to_enable_locked_fields[] = 'my_custom_entity_base_form';
}