/*
Flexible Upload plugin
WP 2.1 specific code
Author: Antoine Choppin
Author URI: http://blog.japonophile.com/
*/
if ( !is_admin() ) {
return;
}
/**
* fup_upload_tabs
* This filter will substitute our version of wp_upload_form to
* the default action of the 'Upload' tab
*/
function fup_upload_tabs($tabs) {
// For now, only overload the 'upload' tab
$tabs['upload'] = array(__('Upload'), 'upload_files',
'fup_upload_tab_upload', 0);
return $tabs;
}
add_filter('wp_upload_tabs', 'fup_upload_tabs');
/**
* fup_upload_tab_upload
* Does basically the same as what wp_upload_form does, except that
* it adds options to resize and create thumbnail
*/