1 system_cron_test.module | system_cron_test_flush_caches() |
Implements hook_flush_caches().
File
- core/
modules/ system/ tests/ system_cron_test/ system_cron_test.module, line 10 - Helper module for CronRunTestCase::testCronCacheExpiration().
Code
function system_cron_test_flush_caches() {
// Set a variable to indicate that this hook was invoked.
state_set('system_cron_test_flush_caches', 1);
return array();
}