Same name and namespace in other branches
  1. 8.9.x core/modules/contact/contact.module \contact_form_user_form_alter()
  2. 9 core/modules/contact/contact.module \contact_form_user_form_alter()

Implements hook_form_FORM_ID_alter().

Add the enable personal contact form to an individual user's account page.

See also

\Drupal\user\ProfileForm::form()

File

core/modules/contact/contact.module, line 186
Enables the use of personal and site-wide contact forms.

Code

function contact_form_user_form_alter(&$form, FormStateInterface $form_state) {
  $form['contact'] = [
    '#type' => 'details',
    '#title' => t('Contact settings'),
    '#open' => TRUE,
    '#weight' => 5,
  ];
  $account = $form_state
    ->getFormObject()
    ->getEntity();
  if (!\Drupal::currentUser()
    ->isAnonymous() && $account
    ->id()) {
    $account_data = \Drupal::service('user.data')
      ->get('contact', $account
      ->id(), 'enabled');
  }
  $form['contact']['contact'] = [
    '#type' => 'checkbox',
    '#title' => t('Personal contact form'),
    '#default_value' => $account_data ?? \Drupal::config('contact.settings')
      ->get('user_default_enabled'),
    '#description' => t('Allow other users to contact you via a personal contact form which keeps your email address hidden. Note that some privileged users such as site administrators are still able to contact you even if you choose to disable this feature.'),
  ];
  $form['actions']['submit']['#submit'][] = 'contact_user_profile_form_submit';
}