function hook_file_move

Respond to a file that has been moved.

Parameters

Drupal\file\File $file: The updated file entity after the move.

Drupal\file\File $source: The original file entity before the move.

See also

file_move()

2 functions implement hook_file_move()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

file_test_file_move in drupal/core/modules/file/tests/file_test/file_test.module
Implements hook_file_move().
image_file_move in drupal/core/modules/image/image.module
Implements hook_file_move().
1 invocation of hook_file_move()
file_move in drupal/core/modules/file/file.module
Moves a file to a new location and update the file's database entry.

File

drupal/core/modules/file/file.api.php, line 157
Hooks for file module.

Code

function hook_file_move(Drupal\file\File $file, Drupal\file\File $source) {
  $file_user = user_load($file->uid);

  // Make sure that the file name starts with the owner's user name.
  if (strpos($file->filename, $file_user->name) !== 0) {
    $file->filename = $file_user->name . '_' . $file->filename;
    $file
      ->save();
    watchdog('file', t('Moved file %source has been renamed to %destination', array(
      '%source' => $source->filename,
      '%destination' => $file->filename,
    )));
  }
}