public function CleanerSettingsForm::submitForm in Cleaner 8.2
Same name and namespace in other branches
- 8 src/Form/CleanerSettingsForm.php \Drupal\cleaner\Form\CleanerSettingsForm::submitForm()
 
Form submission handler.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Overrides ConfigFormBase::submitForm
File
- src/
Form/ CleanerSettingsForm.php, line 268  
Class
- CleanerSettingsForm
 - Class CleanerSettingsForm.
 
Namespace
Drupal\cleaner\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
  $config = $this->configFactory
    ->getEditable('cleaner.settings');
  foreach ($form_state
    ->getValues() as $name => $value) {
    if (stripos($name, 'cleaner') !== FALSE) {
      $config
        ->set($name, $value);
    }
  }
  $config
    ->save();
  parent::submitForm($form, $form_state);
}