function hook_file_update

Respond to a file being updated.

This hook is called when an existing file is saved.

Parameters

Drupal\file\File $file: The file that has just been updated.

2 functions implement hook_file_update()

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

entity_crud_hook_test_file_update in drupal/core/modules/system/tests/modules/entity_crud_hook_test/entity_crud_hook_test.module
Implements hook_file_update().
file_test_file_update in drupal/core/modules/file/tests/file_test/file_test.module
Implements hook_file_update().

File

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

Code

function hook_file_update(Drupal\file\File $file) {
  $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) {
    $old_filename = $file->filename;
    $file->filename = $file_user->name . '_' . $file->filename;
    $file
      ->save();
    watchdog('file', t('%source has been renamed to %destination', array(
      '%source' => $old_filename,
      '%destination' => $file->filename,
    )));
  }
}