system_cron_test.module in Drupal 7
Helper module for CronRunTestCase::testCronCacheExpiration().
File
modules/system/tests/system_cron_test.moduleView source
<?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();
}
Functions
Name | Description |
---|---|
system_cron_test_flush_caches | Implements hook_flush_caches(). |