You are here

function form_mode_manager_module_preinstall in Form mode manager 8.2

Implements hook_module_preinstall().

File

./form_mode_manager.install, line 18
Install, update and uninstall functions for the Form Mode Manager module.

Code

function form_mode_manager_module_preinstall($module) {
  \Drupal::configFactory()
    ->getEditable('form_mode_manager.settings')
    ->set("form_modes.user.to_exclude", [
    'register' => 'register',
  ])
    ->save(TRUE);
}