function file_test_file_load

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

Implements hook_ENTITY_TYPE_load() for file entities.

File

core/modules/file/tests/file_test/file_test.module, line 133

Code

function file_test_file_load($files) {
    foreach ($files as $file) {
        _file_test_log_call('load', [
            $file->id(),
        ]);
        // Assign a value on the object so that we can test that the $file is passed
        // by reference.
        $file->file_test['loaded'] = TRUE;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.