function user_file_move
Implements hook_file_move().
Archivo
- drupal-7.x/
modules/ user/ user.module, line 890 - Enables the user registration and login system.
Código
function user_file_move($file, $source) {
// If a user's picture is replaced with a new one, update the record in
// the users table.
if (isset($file->fid) && isset($source->fid) && $file->fid != $source->fid) {
db_update('users')->fields(array(
'picture' => $file->fid,
))->condition('picture', $source->fid)->execute();
}
}