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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
2008-01-09 09:14:29 +01:00
|
|
|
require_once('admin.php');
|
2008-01-25 20:21:11 +01:00
|
|
|
wp_enqueue_script('swfupload');
|
|
|
|
wp_enqueue_script('swfupload-degrade');
|
|
|
|
wp_enqueue_script('swfupload-queue');
|
|
|
|
wp_enqueue_script('swfupload-handlers');
|
2008-01-09 09:14:29 +01:00
|
|
|
|
|
|
|
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
|
|
|
|
|
|
|
if (!current_user_can('upload_files'))
|
|
|
|
wp_die(__('You do not have permission to upload files.'));
|
|
|
|
|
|
|
|
// 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"));
|
|
|
|
|
|
|
|
// upload type: image, video, file, ..?
|
2008-02-28 22:29:51 +01:00
|
|
|
if ( isset($_GET['type']) )
|
|
|
|
$type = strval($_GET['type']);
|
|
|
|
else
|
|
|
|
$type = apply_filters('media_upload_default_type', 'file');
|
|
|
|
|
|
|
|
// tab: gallery, library, or type-specific
|
2008-02-26 20:30:10 +01:00
|
|
|
if ( isset($_GET['tab']) )
|
|
|
|
$tab = strval($_GET['tab']);
|
|
|
|
else
|
2008-02-28 22:29:51 +01:00
|
|
|
$tab = apply_filters('media_upload_default_tab', 'type');
|
2008-01-09 09:14:29 +01:00
|
|
|
|
2008-03-10 22:49:08 +01:00
|
|
|
$body_id = 'media-upload';
|
|
|
|
|
2008-01-09 09:14:29 +01:00
|
|
|
// let the action code decide how to handle the request
|
2008-02-28 22:29:51 +01:00
|
|
|
if ( $tab == 'type' )
|
|
|
|
do_action("media_upload_$type");
|
|
|
|
else
|
|
|
|
do_action("media_upload_$tab");
|
2008-01-09 09:14:29 +01:00
|
|
|
|
2008-01-25 20:21:11 +01:00
|
|
|
?>
|