I’m developing a plugin which uses wordpress’s thickbox media library to handle media upload and selection. All is well but for the fact that I would like to automatically ‘redirect’ to the ‘media library’-tab after I uploaded/ wordpress finished crunching the file.
So basically i’m looking for a hook that’s fired after the crunching of an uploaded file is finished.
I can’t imagine this would be such an extreme thing but I can’t seem to find the right hook for this.
it’s a longshot but,
add_attachment
hook actually fires after the first file finished uploading:I’m using it to load a custom interface for resizing an Image loading in the current TB window:
The main problem is that it will break multiple file uploads.
I just check hooks database and find one which could help. It is in https://github.com/WordPress/WordPress/blob/3.4-branch/wp-admin/async-upload.php file. It is upload_files_{$tab} and it is used near the end of the file.
If I were you I check this hook in my plugin for more information.