You are here

function simplify_form_user_form_alter in Simplify 8

Implements hook_form_FORM_ID_alter() for user_form().

Simplifies the "user edition form" to hide elements depending on settings.

File

./simplify.module, line 224
Hooks implemented by the simplify module.

Code

function simplify_form_user_form_alter(&$form, FormStateInterface $form_state, $form_id) {

  // Get array of fields to hide.
  $fields = _simplify_get_config_value('simplify_users_global');

  // Hide fields.
  simplify_hide_fields($fields, $form);
}