2008-01-09 03:14:29 -05:00
|
|
|
<?php
|
2008-08-14 02:30:38 -04: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 14:28:24 -05:00
|
|
|
if ( ! isset( $_GET['inline'] ) )
|
|
|
|
define( 'IFRAME_REQUEST' , true );
|
2010-10-18 13:58:36 -04:00
|
|
|
|
2008-08-14 02:30:38 -04:00
|
|
|
/** Load WordPress Administration Bootstrap */
|
2010-04-18 02:14:45 -04:00
|
|
|
require_once('./admin.php');
|
2008-09-27 04:17:55 -04:00
|
|
|
|
|
|
|
if (!current_user_can('upload_files'))
|
|
|
|
wp_die(__('You do not have permission to upload files.'));
|
|
|
|
|
2011-07-29 04:59:35 -04:00
|
|
|
wp_enqueue_script('plupload-handlers');
|
2009-09-10 18:07:33 -04:00
|
|
|
wp_enqueue_script('image-edit');
|
2009-10-07 18:18:09 -04:00
|
|
|
wp_enqueue_script('set-post-thumbnail' );
|
2009-09-10 18:07:33 -04:00
|
|
|
wp_enqueue_style('imgareaselect');
|
2012-04-04 20:20:28 -04:00
|
|
|
wp_enqueue_script( 'media-gallery' );
|
2008-01-09 03:14:29 -05:00
|
|
|
|
|
|
|
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
|
|
|
|
|
|
|
// IDs should be integers
|
2008-08-14 02:30:38 -04:00
|
|
|
$ID = isset($ID) ? (int) $ID : 0;
|
2008-02-22 12:43:56 -05:00
|
|
|
$post_id = isset($post_id)? (int) $post_id : 0;
|
2008-01-09 03:14:29 -05:00
|
|
|
|
|
|
|
// Require an ID for the edit screen
|
2008-02-22 12:43:56 -05:00
|
|
|
if ( isset($action) && $action == 'edit' && !$ID )
|
2012-03-07 14:00:12 -05:00
|
|
|
wp_die( __( 'Cheatin’ uh?' ) );
|
2008-01-09 03:14:29 -05:00
|
|
|
|
2012-06-10 13:37:49 -04:00
|
|
|
if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post' , $_REQUEST['post_id'] ) )
|
|
|
|
wp_die( __( 'Cheatin’ uh?' ) );
|
2008-01-09 03:14:29 -05:00
|
|
|
|
2008-09-27 04:17:55 -04: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 13:03:31 -05:00
|
|
|
|
2008-09-27 04:17:55 -04: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 13:03:31 -05:00
|
|
|
|
2008-09-27 04:17:55 -04:00
|
|
|
$body_id = 'media-upload';
|
2008-12-09 13:03:31 -05:00
|
|
|
|
2008-09-27 04:17:55 -04:00
|
|
|
// let the action code decide how to handle the request
|
2011-09-30 18:52:29 -04:00
|
|
|
if ( $tab == 'type' || $tab == 'type_url' || ! array_key_exists( $tab , media_upload_tabs() ) )
|
2008-09-27 04:17:55 -04:00
|
|
|
do_action("media_upload_$type");
|
|
|
|
else
|
|
|
|
do_action("media_upload_$tab");
|