interface CronInterface
Same name in other branches
- 9 core/lib/Drupal/Core/CronInterface.php \Drupal\Core\CronInterface
- 8.9.x core/lib/Drupal/Core/CronInterface.php \Drupal\Core\CronInterface
- 11.x core/lib/Drupal/Core/CronInterface.php \Drupal\Core\CronInterface
An interface for running cron tasks.
Hierarchy
- interface \Drupal\Core\CronInterface
Expanded class hierarchy of CronInterface
All classes that implement CronInterface
See also
https://www.drupal.org/docs/administering-a-drupal-site/cron-automated-…
3 files declare their use of CronInterface
- AutomatedCron.php in core/
modules/ automated_cron/ src/ EventSubscriber/ AutomatedCron.php - CronController.php in core/
modules/ system/ src/ CronController.php - CronForm.php in core/
modules/ system/ src/ Form/ CronForm.php
File
-
core/
lib/ Drupal/ Core/ CronInterface.php, line 10
Namespace
Drupal\CoreView source
interface CronInterface {
/**
* Executes a cron run.
*
* Do not call this function from a test. Use $this->cronRun() instead.
*
* @return bool
* TRUE upon success, FALSE otherwise.
*/
public function run();
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
CronInterface::run | public | function | Executes a cron run. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.