blob: 986dc31ab3f16cc5ba5e3f879ada344184eba5a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* @file
* This file provides testing functionality for update.php.
*/
/**
* Implements hook_cache_flush().
*
* This sets a message to confirm that all caches are cleared whenever
* update.php completes.
*
* @see UpdateScriptFunctionalTest::testRequirements()
*/
function update_script_test_cache_flush() {
drupal_set_message(t('hook_cache_flush() invoked for update_script_test.module.'));
}
|