function user_file_move

Implements hook_file_move().

File

modules/user/user.module, line 923

Code

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();
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.