2008-01-09 09:14:29 +01:00
< ? php
2008-08-14 08:30:38 +02:00
/**
* Manage media uploaded file .
*
* There are many filters in here for media . Plugins can extend functionality
* by hooking into the filters .
*
* @ package WordPress
* @ subpackage Administration
*/
2010-10-18 19:58:36 +02:00
define ( 'WP_SHOW_ADMIN_BAR' , false );
2008-08-14 08:30:38 +02:00
/** Load WordPress Administration Bootstrap */
2010-04-18 08:14:45 +02:00
require_once ( './admin.php' );
2008-09-27 10:17:55 +02:00
if ( ! current_user_can ( 'upload_files' ))
wp_die ( __ ( 'You do not have permission to upload files.' ));
2009-05-17 14:29:58 +02:00
wp_enqueue_script ( 'swfupload-all' );
2008-01-25 20:21:11 +01:00
wp_enqueue_script ( 'swfupload-handlers' );
2009-09-11 00:07:33 +02:00
wp_enqueue_script ( 'image-edit' );
2009-10-08 00:18:09 +02:00
wp_enqueue_script ( 'set-post-thumbnail' );
2009-09-11 00:07:33 +02:00
wp_enqueue_style ( 'imgareaselect' );
2008-01-09 09:14:29 +01:00
@ header ( 'Content-Type: ' . get_option ( 'html_type' ) . '; charset=' . get_option ( 'blog_charset' ));
// IDs should be integers
2008-08-14 08:30:38 +02:00
$ID = isset ( $ID ) ? ( int ) $ID : 0 ;
2008-02-22 18:43:56 +01:00
$post_id = isset ( $post_id ) ? ( int ) $post_id : 0 ;
2008-01-09 09:14:29 +01:00
// Require an ID for the edit screen
2008-02-22 18:43:56 +01:00
if ( isset ( $action ) && $action == 'edit' && ! $ID )
2008-01-09 09:14:29 +01:00
wp_die ( __ ( " You are not allowed to be here " ));
2008-09-27 10:17:55 +02:00
if ( isset ( $_GET [ 'inline' ]) ) {
2009-06-25 08:09:22 +02:00
$errors = array ();
2008-12-09 19:03:31 +01:00
2008-09-27 10:17:55 +02:00
if ( isset ( $_POST [ 'html-upload' ]) && ! empty ( $_FILES ) ) {
// Upload File button was clicked
$id = media_handle_upload ( 'async-upload' , $_REQUEST [ 'post_id' ]);
unset ( $_FILES );
if ( is_wp_error ( $id ) ) {
$errors [ 'upload_error' ] = $id ;
$id = false ;
}
}
2008-02-28 22:29:51 +01:00
2009-06-25 08:09:22 +02:00
if ( isset ( $_GET [ 'upload-page-form' ]) ) {
$errors = array_merge ( $errors , ( array ) media_upload_form_handler ());
$location = 'upload.php' ;
if ( $errors )
$location .= '?message=3' ;
wp_redirect ( admin_url ( $location ) );
}
2008-10-17 22:02:03 +02:00
$title = __ ( 'Upload New Media' );
2008-11-29 19:09:09 +01:00
$parent_file = 'upload.php' ;
2010-05-26 00:38:29 +02:00
add_contextual_help ( $current_screen ,
2010-06-02 07:54:14 +02:00
'<p>' . __ ( 'You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share.' ) . '</p>' .
'<p>' . __ ( 'There are two options for uploading files: <em>Select Files</em> will open the Flash-based uploader (multiple file upload allowed), or you can use the <em>Browser Uploader</em>. Clicking <em>Select Files</em> opens a navigation window showing you files in your operating system. Selecting <em>Open</em> after clicking on the file you want activates a progress bar on the uploader screen. Basic image editing is available after upload is complete. Make sure you click <em>Save</em> before leaving this screen.' ) . '</p>' .
2010-05-27 13:52:15 +02:00
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
2010-06-03 23:00:39 +02:00
'<p>' . __ ( '<a href="http://codex.wordpress.org/Media_Add_New_SubPanel" target="_blank">Documentation on Uploading Media Files</a>' ) . '</p>' .
'<p>' . __ ( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
2010-05-26 00:38:29 +02:00
);
2010-04-18 08:14:45 +02:00
require_once ( './admin-header.php' ); ?>
2008-09-27 10:17:55 +02:00
< div class = " wrap " >
2008-11-26 14:51:25 +01:00
< ? php screen_icon (); ?>
2009-05-18 17:11:07 +02:00
< h2 >< ? php echo esc_html ( $title ); ?> </h2>
2008-01-09 09:14:29 +01:00
2010-06-08 16:02:16 +02:00
< form enctype = " multipart/form-data " method = " post " action = " <?php echo admin_url('media-upload.php?inline=&upload-page-form='); ?> " class = " media-upload-form type-form validate " id = " file-form " >
2008-10-17 22:02:03 +02:00
2008-09-27 10:17:55 +02:00
< ? php media_upload_form (); ?>
2008-10-17 22:02:03 +02:00
2008-09-27 10:17:55 +02:00
< script type = " text/javascript " >
jQuery ( function ( $ ){
var preloaded = $ ( " .media-item.preloaded " );
if ( preloaded . length > 0 ) {
preloaded . each ( function (){ prepareMediaItem ({ id : this . id . replace ( / [ ^ 0 - 9 ] / g , '' )}, '' );});
}
updateMediaForm ();
post_id = 0 ;
shortform = 1 ;
});
</ script >
< input type = " hidden " name = " post_id " id = " post_id " value = " 0 " />
< ? php wp_nonce_field ( 'media-form' ); ?>
2010-05-26 05:57:55 +02:00
< div id = " media-items " class = " hide-if-no-js " > </ div >
2010-10-28 23:56:43 +02:00
< ? php submit_button ( __ ( 'Save all changes' ), 'button savebutton hide-if-no-js' , 'save' ); ?>
2008-09-27 10:17:55 +02:00
</ form >
</ div >
< ? php
2010-04-18 08:14:45 +02:00
include ( './admin-footer.php' );
2008-03-10 22:49:08 +01:00
2008-09-27 10:17:55 +02:00
} else {
2008-01-09 09:14:29 +01:00
2008-09-27 10:17:55 +02:00
// upload type: image, video, file, ..?
if ( isset ( $_GET [ 'type' ]) )
$type = strval ( $_GET [ 'type' ]);
else
$type = apply_filters ( 'media_upload_default_type' , 'file' );
2008-12-09 19:03:31 +01:00
2008-09-27 10:17:55 +02:00
// tab: gallery, library, or type-specific
if ( isset ( $_GET [ 'tab' ]) )
$tab = strval ( $_GET [ 'tab' ]);
else
$tab = apply_filters ( 'media_upload_default_tab' , 'type' );
2008-12-09 19:03:31 +01:00
2008-09-27 10:17:55 +02:00
$body_id = 'media-upload' ;
2008-12-09 19:03:31 +01:00
2008-09-27 10:17:55 +02:00
// let the action code decide how to handle the request
2008-11-26 03:27:37 +01:00
if ( $tab == 'type' || $tab == 'type_url' )
2008-09-27 10:17:55 +02:00
do_action ( " media_upload_ $type " );
else
do_action ( " media_upload_ $tab " );
}
2008-01-25 20:21:11 +01:00
?>