media-upload.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. /**
  3. * Manage media uploaded file.
  4. *
  5. * There are many filters in here for media. Plugins can extend functionality
  6. * by hooking into the filters.
  7. *
  8. * @package WordPress
  9. * @subpackage Administration
  10. */
  11. if ( ! isset( $_GET['inline'] ) ) {
  12. define( 'IFRAME_REQUEST', true );
  13. }
  14. /** Load WordPress Administration Bootstrap */
  15. require_once( dirname( __FILE__ ) . '/admin.php' );
  16. if ( ! current_user_can( 'upload_files' ) ) {
  17. wp_die( __( 'Sorry, you are not allowed to upload files.' ), 403 );
  18. }
  19. wp_enqueue_script( 'plupload-handlers' );
  20. wp_enqueue_script( 'image-edit' );
  21. wp_enqueue_script( 'set-post-thumbnail' );
  22. wp_enqueue_style( 'imgareaselect' );
  23. wp_enqueue_script( 'media-gallery' );
  24. header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
  25. // IDs should be integers
  26. $ID = isset( $ID ) ? (int) $ID : 0;
  27. $post_id = isset( $post_id ) ? (int) $post_id : 0;
  28. // Require an ID for the edit screen.
  29. if ( isset( $action ) && $action == 'edit' && ! $ID ) {
  30. wp_die(
  31. '<h1>' . __( 'Something went wrong.' ) . '</h1>' .
  32. '<p>' . __( 'Invalid item ID.' ) . '</p>',
  33. 403
  34. );
  35. }
  36. if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post', $_REQUEST['post_id'] ) ) {
  37. wp_die(
  38. '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
  39. '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>',
  40. 403
  41. );
  42. }
  43. // Upload type: image, video, file, ..?
  44. if ( isset( $_GET['type'] ) ) {
  45. $type = strval( $_GET['type'] );
  46. } else {
  47. /**
  48. * Filters the default media upload type in the legacy (pre-3.5.0) media popup.
  49. *
  50. * @since 2.5.0
  51. *
  52. * @param string $type The default media upload type. Possible values include
  53. * 'image', 'audio', 'video', 'file', etc. Default 'file'.
  54. */
  55. $type = apply_filters( 'media_upload_default_type', 'file' );
  56. }
  57. // Tab: gallery, library, or type-specific.
  58. if ( isset( $_GET['tab'] ) ) {
  59. $tab = strval( $_GET['tab'] );
  60. } else {
  61. /**
  62. * Filters the default tab in the legacy (pre-3.5.0) media popup.
  63. *
  64. * @since 2.5.0
  65. *
  66. * @param string $type The default media popup tab. Default 'type' (From Computer).
  67. */
  68. $tab = apply_filters( 'media_upload_default_tab', 'type' );
  69. }
  70. $body_id = 'media-upload';
  71. // Let the action code decide how to handle the request.
  72. if ( $tab == 'type' || $tab == 'type_url' || ! array_key_exists( $tab, media_upload_tabs() ) ) {
  73. /**
  74. * Fires inside specific upload-type views in the legacy (pre-3.5.0)
  75. * media popup based on the current tab.
  76. *
  77. * The dynamic portion of the hook name, `$type`, refers to the specific
  78. * media upload type. Possible values include 'image', 'audio', 'video',
  79. * 'file', etc.
  80. *
  81. * The hook only fires if the current `$tab` is 'type' (From Computer),
  82. * 'type_url' (From URL), or, if the tab does not exist (i.e., has not
  83. * been registered via the {@see 'media_upload_tabs'} filter.
  84. *
  85. * @since 2.5.0
  86. */
  87. do_action( "media_upload_{$type}" );
  88. } else {
  89. /**
  90. * Fires inside limited and specific upload-tab views in the legacy
  91. * (pre-3.5.0) media popup.
  92. *
  93. * The dynamic portion of the hook name, `$tab`, refers to the specific
  94. * media upload tab. Possible values include 'library' (Media Library),
  95. * or any custom tab registered via the {@see 'media_upload_tabs'} filter.
  96. *
  97. * @since 2.5.0
  98. */
  99. do_action( "media_upload_{$tab}" );
  100. }