Для Drupal 8 мені вдалося додати спеціальну функцію перевірки, яка може насправді вивчити наявні помилки та змінити розмітку помилок на кожному конкретному випадку. У моєму випадку я хотів змінити повідомлення про помилку з поля ent_autocomplete, яке посилалось на користувачів. Якщо було додано недійсного користувача, помилка перевірки читала: "Немає сутностей, що відповідають імені%". Замість слова "сутності" я хотів би сказати "користувачі", щоб бути менш страшним та потенційно заплутаним для користувачів.
По-перше, я використовую ho_form_alter (), щоб додати свою перевірку функції:
/**
* Implements hook_form_alter().
*/
function my_module_form_alter(&$form, FormStateInterface $form_state, $form_id) {
if (in_array($form_id, ['whatever_form_id_you_need_to_alter'])) {
// Add entity autocomplete custom form validation messages alter.
array_unshift($form['#validate'], 'my_module_custom_user_validate');
}
Потім у функції 'my_module_custom_user_validate':
/**
* Custom form validation handler that alters default validation.
* @param $form
* @param \Drupal\Core\Form\FormStateInterface $form_state
*/
function my_module_custom_user_validate(&$form, FormStateInterface $form_state) {
// Check for any errors on the form_state
$errors = $form_state->getErrors();
if ($errors) {
foreach ($errors as $error_key => $error_val) {
// Check to see if the error is related to the desired field:
if (strpos($error_key, 'the_entity_reference_field_machine_name') !== FALSE) {
// Check for the word 'entities', which I want to replace
if (strpos($error_val->getUntranslatedString(), 'entities') == TRUE) {
// Get the original args to pass into the new message
$original_args = $error_val->getArguments();
// Re-construct the error
$error_val->__construct("There are no users matching the name %value", $original_args);
}
}
}
}
}
Сподіваюся, це допомагає!