Same name and namespace in other branches
  1. 10 core/modules/file/tests/file_test/file_test.module \_file_test_get_return()
  2. 8.9.x core/modules/file/tests/file_test/file_test.module \_file_test_get_return()
  3. 9 core/modules/file/tests/file_test/file_test.module \_file_test_get_return()

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

file_test_set_return()

file_test_reset()

2 calls to _file_test_get_return()
file_test_file_download in modules/simpletest/tests/file_test.module
Implements hook_file_download().
file_test_file_validate in modules/simpletest/tests/file_test.module
Implements hook_file_validate().

File

modules/simpletest/tests/file_test.module, line 235
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];
}