popsu-d7/modules/system/tests/system_cron_test.module
Bachir Soussi Chiadmi 1a06561593 core security update
2016-10-13 12:11:14 +02:00

16 lines
308 B
Plaintext

<?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();
}