function file_test_get_calls
Same name in other branches
- 9 core/modules/file/tests/file_test/file_test.module \file_test_get_calls()
- 8.9.x core/modules/file/tests/file_test/file_test.module \file_test_get_calls()
- 10 core/modules/file/tests/file_test/file_test.module \file_test_get_calls()
- 11.x core/modules/file/tests/file_test/file_test.module \file_test_get_calls()
Get the arguments passed to invocation of a given hook since file_test_reset() was last called.
Parameters
$op: One of the hook_file_* operations: 'load', 'validate', 'download', 'insert', 'update', 'copy', 'move', 'delete'.
Return value
Array of the parameters passed to each call.
See also
1 call to file_test_get_calls()
- FileHookTestCase::assertFileHookCalled in modules/
simpletest/ tests/ file.test - Assert that a hook_file_* hook was called a certain number of times.
File
-
modules/
simpletest/ tests/ file_test.module, line 188
Code
function file_test_get_calls($op) {
$results = variable_get('file_test_results', array());
return $results[$op];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.