function file_test_set_return

Assign a return value for a given operation.

Parameters

$op: One of the hook_file_[validate,download] operations.

$value: Value for the hook to return.

See also

_file_test_get_return()

file_test_reset()

3 calls to file_test_set_return()
DownloadTest::checkUrl in drupal/core/modules/file/lib/Drupal/file/Tests/DownloadTest.php
Download a file from the URL generated by file_create_url().
DownloadTest::testPrivateFileTransfer in drupal/core/modules/file/lib/Drupal/file/Tests/DownloadTest.php
Test the private file transfer system.
ValidateTest::testCallerValidation in drupal/core/modules/file/lib/Drupal/file/Tests/ValidateTest.php
Test that the validators passed into are checked.

File

drupal/core/modules/file/tests/file_test/file_test.module, line 144
Helper module for the file tests.

Code

function file_test_set_return($op, $value) {
  $return = Drupal::state()
    ->get('file_test.return') ?: array();
  $return[$op] = $value;
  Drupal::state()
    ->set('file_test.return', $return);
}