You are here

function _automatic_updates_update_settings_form_submit in Automatic Updates 8.2

Submit function for the 'update_settings' form.

1 string reference to '_automatic_updates_update_settings_form_submit'
automatic_updates_form_update_settings_alter in ./automatic_updates.module
Implements hook_form_FORM_ID_alter() for 'update_settings' form.

File

./automatic_updates.module, line 129
Contains hook implementations for Automatic Updates.

Code

function _automatic_updates_update_settings_form_submit(array &$form, FormStateInterface $form_state) {
  \Drupal::configFactory()
    ->getEditable('automatic_updates.settings')
    ->set('cron', $form_state
    ->getValue('automatic_updates_cron'))
    ->save();
}