| 7 file_test.module | _file_test_get_return($op) |
| 8 file_test.module | _file_test_get_return($op) |
Load the appropriate return value.
Parameters
$op: One of the hook_file_[validate,download] operations.
Return value
Value set by file_test_set_return().
See also
2 calls to _file_test_get_return()
File
- modules/
simpletest/ tests/ file_test.module, line 227 - Helper module for the file tests.
Code
function _file_test_get_return($op) {
$return = variable_get('file_test_return', array($op => NULL));
return $return[$op];
}
Login or register to post comments