system_cron_test.module 308 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * Helper module for CronRunTestCase::testCronCacheExpiration().
  5. */
  6. /**
  7. * Implements hook_flush_caches().
  8. */
  9. function system_cron_test_flush_caches() {
  10. // Set a variable to indicate that this hook was invoked.
  11. variable_set('system_cron_test_flush_caches', 1);
  12. return array();
  13. }