function Cron::setCronLastTime
Same name in other branches
- 9 core/lib/Drupal/Core/Cron.php \Drupal\Core\Cron::setCronLastTime()
- 8.9.x core/lib/Drupal/Core/Cron.php \Drupal\Core\Cron::setCronLastTime()
- 11.x core/lib/Drupal/Core/Cron.php \Drupal\Core\Cron::setCronLastTime()
Records and logs the request time for this cron invocation.
File
-
core/
lib/ Drupal/ Core/ Cron.php, line 185
Class
- Cron
- The Drupal core Cron service.
Namespace
Drupal\CoreCode
protected function setCronLastTime() {
// Record cron time.
$request_time = $this->time
->getRequestTime();
$this->state
->set('system.cron_last', $request_time);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.