function CronForm::submitForm
Same name in other branches
- 9 core/modules/system/src/Form/CronForm.php \Drupal\system\Form\CronForm::submitForm()
- 10 core/modules/system/src/Form/CronForm.php \Drupal\system\Form\CronForm::submitForm()
- 11.x core/modules/system/src/Form/CronForm.php \Drupal\system\Form\CronForm::submitForm()
Overrides FormInterface::submitForm
File
-
core/
modules/ system/ src/ Form/ CronForm.php, line 155
Class
- CronForm
- Configure cron settings for this site.
Namespace
Drupal\system\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->config('system.cron')
->set('logging', $form_state->getValue('logging'))
->save();
$this->messenger()
->addStatus(t('The configuration options have been saved.'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.