X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/76aea3697c6043c1613370f172395b4f65ee71f0..e3ff8f35458a959c1879c0a4976701ed8dcfe651:/wp-admin/media.php diff --git a/wp-admin/media.php b/wp-admin/media.php index 150dea75..3fbb9265 100644 --- a/wp-admin/media.php +++ b/wp-admin/media.php @@ -1,28 +1,29 @@ ID) ) wp_die( __('You attempted to edit an attachment that doesn’t exist. Perhaps it was deleted?') ); + if ( 'attachment' !== $att->post_type ) wp_die( __('You attempted to edit an item that isn’t an attachment. Please go back and try again.') ); + if ( $att->post_status == 'trash' ) wp_die( __('You can’t edit this attachment because it is in the Trash. Please move it out of the Trash and try again.') ); + add_filter('attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2); wp_enqueue_script( 'wp-ajax-response' ); - wp_admin_css( 'media' ); - - - require( 'admin-header.php' ); - + wp_enqueue_script('image-edit'); + wp_enqueue_style('imgareaselect'); + + get_current_screen()->add_help_tab( array( + 'id' => 'overview', + 'title' => __('Overview'), + 'content' => + '

' . __('This screen allows you to edit five fields for metadata in a file within the media library.') . '

' . + '

' . __('For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.') . '

' . + '

' . __('Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.') . '

' . + '

' . __('Remember to click Update Media to save metadata entered or changed.') . '

' + ) ); + + get_current_screen()->set_help_sidebar( + '

' . __('For more information:') . '

' . + '

' . __('Documentation on Edit Media') . '

' . + '

' . __('Support Forums') . '

' + ); + + require( ABSPATH . 'wp-admin/admin-header.php' ); + + $parent_file = 'upload.php'; $message = ''; $class = ''; if ( isset($_GET['message']) ) { - switch ( $_GET['message'] ) : - case 'updated' : - $message = __('Media attachment updated.'); - $class = 'updated fade'; - break; - endswitch; + switch ( $_GET['message'] ) { + case 'updated' : + $message = __('Media file updated.'); + $class = 'updated'; + break; + } } if ( $message ) echo "

$message

\n"; @@ -81,39 +103,44 @@ case 'edit' : ?>
+

+ + + +

+ +
+

+ +

-

- - -
-
- false, 'send' => false, 'delete' => false, 'errors' => $errors ) ); ?> +
+
+ false, 'send' => false, 'delete' => false, 'show_title' => false, 'errors' => !empty($errors[$att_id]) ? $errors[$att_id] : null ) ); ?>
-

- - - + + + -

+
+}