function FileTestHooks::fileLoad

Implements hook_ENTITY_TYPE_load() for file entities.

Attributes

#[Hook('file_load')]

File

core/modules/file/tests/file_test/src/Hook/FileTestHooks.php, line 23

Class

FileTestHooks
Hook implementations for file_test.

Namespace

Drupal\file_test\Hook

Code

public function fileLoad($files) : void {
  foreach ($files as $file) {
    FileTestHelper::logCall('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.