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-12-01 20:28:24 +01:00
|
|
|
if ( ! isset( $_GET['inline'] ) )
|
|
|
|
define( 'IFRAME_REQUEST' , true );
|
2010-10-18 19:58:36 +02:00
|
|
|
|
2008-08-14 08:30:38 +02:00
|
|
|
/** Load WordPress Administration Bootstrap */
|
2013-09-25 02:18:11 +02:00
|
|
|
require_once( dirname( __FILE__ ) . '/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.'));
|
|
|
|
|
2011-07-29 10:59:35 +02:00
|
|
|
wp_enqueue_script('plupload-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');
|
2012-04-05 02:20:28 +02:00
|
|
|
wp_enqueue_script( 'media-gallery' );
|
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
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Require an ID for the edit screen.
|
2008-02-22 18:43:56 +01:00
|
|
|
if ( isset($action) && $action == 'edit' && !$ID )
|
2012-03-07 20:00:12 +01:00
|
|
|
wp_die( __( 'Cheatin’ uh?' ) );
|
2008-01-09 09:14:29 +01:00
|
|
|
|
2012-06-10 19:37:49 +02:00
|
|
|
if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post' , $_REQUEST['post_id'] ) )
|
|
|
|
wp_die( __( 'Cheatin’ uh?' ) );
|
2008-01-09 09:14:29 +01:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Upload type: image, video, file, ..?
|
2014-01-08 05:00:11 +01:00
|
|
|
if ( isset($_GET['type']) ) {
|
2008-09-27 10:17:55 +02:00
|
|
|
$type = strval($_GET['type']);
|
2014-01-08 05:00:11 +01:00
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* Filter the default media upload type in the legacy (pre-3.5.0) media popup.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $type The default media upload type. Possible values include
|
|
|
|
* 'image', 'audio', 'video', 'file', etc. Default 'file'.
|
|
|
|
*/
|
|
|
|
$type = apply_filters( 'media_upload_default_type', 'file' );
|
|
|
|
}
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Tab: gallery, library, or type-specific.
|
2014-01-06 06:48:12 +01:00
|
|
|
if ( isset($_GET['tab']) ) {
|
2008-09-27 10:17:55 +02:00
|
|
|
$tab = strval($_GET['tab']);
|
2014-01-06 06:48:12 +01:00
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* Filter the default tab in the legacy (pre-3.5.0) media popup.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2014-01-08 05:00:11 +01:00
|
|
|
* @param string $type The default media popup tab. Default 'type' (From Computer).
|
2014-01-06 06:48:12 +01:00
|
|
|
*/
|
|
|
|
$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
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Let the action code decide how to handle the request.
|
2014-01-08 05:00:11 +01:00
|
|
|
if ( $tab == 'type' || $tab == 'type_url' || ! array_key_exists( $tab , media_upload_tabs() ) ) {
|
|
|
|
/**
|
|
|
|
* Fires inside specific upload-type views in the legacy (pre-3.5.0)
|
|
|
|
* media popup based on the current tab.
|
|
|
|
*
|
|
|
|
* The dynamic portion of the hook name, $type, refers to the specific
|
|
|
|
* media upload type. Possible values include 'image', 'audio', 'video',
|
|
|
|
* 'file', etc.
|
|
|
|
*
|
|
|
|
* The hook only fires if the current $tab is 'type' (From Computer),
|
|
|
|
* 'type_url' (From URL), or, if the tab does not exist (i.e., has not
|
|
|
|
* been registered via the 'media_upload_tabs' filter.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*/
|
|
|
|
do_action( "media_upload_$type" );
|
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* Fires inside limited and specific upload-tab views in the legacy
|
|
|
|
* (pre-3.5.0) media popup.
|
|
|
|
*
|
|
|
|
* The dynamic portion of the hook name, $tab, refers to the specific
|
|
|
|
* media upload tab. Possible values include 'library' (Media Library),
|
|
|
|
* or any custom tab registered via the 'media_upload_tabs' filter.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*/
|
|
|
|
do_action( "media_upload_$tab" );
|
|
|
|
}
|