You are here

function file_test_file_load in Drupal 7

Same name and namespace in other branches
  1. 8 core/modules/file/tests/file_test/file_test.module \file_test_file_load()
  2. 9 core/modules/file/tests/file_test/file_test.module \file_test_file_load()

Implements hook_file_load().

File

modules/simpletest/tests/file_test.module, line 260
Helper module for the file tests.

Code

function file_test_file_load($files) {
  foreach ($files as $file) {
    _file_test_log_call('load', array(
      $file,
    ));

    // Assign a value on the object so that we can test that the $file is passed
    // by reference.
    $file->file_test['loaded'] = TRUE;
  }
}