1KA_F2F/frontend/drupal/modules/system/tests/system_cron_test.module

16 lines
308 B
Plaintext
Raw Normal View History

2020-08-14 13:36:36 +02:00
<?php
/**
* @file
* Helper module for CronRunTestCase::testCronCacheExpiration().
*/
/**
* Implements hook_flush_caches().
*/
function system_cron_test_flush_caches() {
// Set a variable to indicate that this hook was invoked.
variable_set('system_cron_test_flush_caches', 1);
return array();
}