Media upload finished hook

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.

Topic media-library thickbox uploads Wordpress

Category Web


it's a longshot but,

add_attachment hook actually fires after the first file finished uploading:

add_action('add_attachment','redirect_uploader_flow');

I'm using it to load a custom interface for resizing an Image loading in the current TB window:

jQuery("#TB_iframeContent",window.parent.document).attr('src',"<?php echo get_window_url($id) ?>");

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.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.