function CronForm::runCron
Same name in other branches
- 9 core/modules/system/src/Form/CronForm.php \Drupal\system\Form\CronForm::runCron()
- 8.9.x core/modules/system/src/Form/CronForm.php \Drupal\system\Form\CronForm::runCron()
- 11.x core/modules/system/src/Form/CronForm.php \Drupal\system\Form\CronForm::runCron()
Form submission handler for running cron manually.
File
-
core/
modules/ system/ src/ Form/ CronForm.php, line 166
Class
- CronForm
- Configure cron settings for this site.
Namespace
Drupal\system\FormCode
public function runCron(array &$form, FormStateInterface $form_state) {
if ($this->cron
->run()) {
$this->messenger()
->addStatus($this->t('Cron ran successfully.'));
}
else {
$this->messenger()
->addError($this->t('Cron run failed.'));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.