You are here

function image_file_move in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/image.module \image_file_move()
  2. 7 modules/image/image.module \image_file_move()
  3. 9 core/modules/image/image.module \image_file_move()

Implements hook_file_move().

File

core/modules/image/image.module, line 175
Exposes global functionality for creating image styles.

Code

function image_file_move(FileInterface $file, FileInterface $source) {

  // Delete any image derivatives at the original image path.
  image_path_flush($source
    ->getFileUri());
}