author | ymh <ymh.work@gmail.com> |
Fri, 05 Sep 2025 18:52:52 +0200 | |
changeset 22 | 8c2e4d02f4ef |
parent 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
0 | 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 |
||
9 | 12 |
if ( ! isset( $_GET['inline'] ) ) { |
13 |
define( 'IFRAME_REQUEST', true ); |
|
14 |
} |
|
0 | 15 |
|
16 |
/** Load WordPress Administration Bootstrap */ |
|
16 | 17 |
require_once __DIR__ . '/admin.php'; |
0 | 18 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
if ( ! current_user_can( 'upload_files' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
20 |
wp_die( __( 'Sorry, you are not allowed to upload files.' ), 403 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
} |
0 | 22 |
|
9 | 23 |
wp_enqueue_script( 'plupload-handlers' ); |
24 |
wp_enqueue_script( 'image-edit' ); |
|
25 |
wp_enqueue_script( 'set-post-thumbnail' ); |
|
26 |
wp_enqueue_style( 'imgareaselect' ); |
|
0 | 27 |
wp_enqueue_script( 'media-gallery' ); |
28 |
||
16 | 29 |
header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); |
0 | 30 |
|
16 | 31 |
// IDs should be integers. |
32 |
$ID = isset( $ID ) ? (int) $ID : 0; // phpcs:ignore WordPress.NamingConventions.ValidVariableName |
|
9 | 33 |
$post_id = isset( $post_id ) ? (int) $post_id : 0; |
0 | 34 |
|
5 | 35 |
// Require an ID for the edit screen. |
16 | 36 |
if ( isset( $action ) && 'edit' === $action && ! $ID ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
wp_die( |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
38 |
'<h1>' . __( 'An error occurred during the upload process.' ) . '</h1>' . |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
39 |
'<p>' . __( 'Invalid item ID. You can view all media items in the <a href="upload.php">Media Library</a>.' ) . '</p>', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
403 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
41 |
); |
5 | 42 |
} |
43 |
||
9 | 44 |
if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post', $_REQUEST['post_id'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
45 |
wp_die( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
47 |
'<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
403 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
49 |
); |
5 | 50 |
} |
0 | 51 |
|
16 | 52 |
// Upload type: image, video, file, ...? |
9 | 53 |
if ( isset( $_GET['type'] ) ) { |
18 | 54 |
$type = (string) $_GET['type']; |
5 | 55 |
} else { |
56 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
57 |
* Filters the default media upload type in the legacy (pre-3.5.0) media popup. |
5 | 58 |
* |
59 |
* @since 2.5.0 |
|
60 |
* |
|
61 |
* @param string $type The default media upload type. Possible values include |
|
62 |
* 'image', 'audio', 'video', 'file', etc. Default 'file'. |
|
63 |
*/ |
|
64 |
$type = apply_filters( 'media_upload_default_type', 'file' ); |
|
65 |
} |
|
0 | 66 |
|
5 | 67 |
// Tab: gallery, library, or type-specific. |
9 | 68 |
if ( isset( $_GET['tab'] ) ) { |
18 | 69 |
$tab = (string) $_GET['tab']; |
5 | 70 |
} else { |
71 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
72 |
* Filters the default tab in the legacy (pre-3.5.0) media popup. |
5 | 73 |
* |
74 |
* @since 2.5.0 |
|
75 |
* |
|
18 | 76 |
* @param string $tab The default media popup tab. Default 'type' (From Computer). |
5 | 77 |
*/ |
78 |
$tab = apply_filters( 'media_upload_default_tab', 'type' ); |
|
79 |
} |
|
80 |
||
81 |
$body_id = 'media-upload'; |
|
0 | 82 |
|
5 | 83 |
// Let the action code decide how to handle the request. |
16 | 84 |
if ( 'type' === $tab || 'type_url' === $tab || ! array_key_exists( $tab, media_upload_tabs() ) ) { |
5 | 85 |
/** |
86 |
* Fires inside specific upload-type views in the legacy (pre-3.5.0) |
|
87 |
* media popup based on the current tab. |
|
88 |
* |
|
89 |
* The dynamic portion of the hook name, `$type`, refers to the specific |
|
18 | 90 |
* media upload type. |
5 | 91 |
* |
92 |
* The hook only fires if the current `$tab` is 'type' (From Computer), |
|
93 |
* 'type_url' (From URL), or, if the tab does not exist (i.e., has not |
|
94 |
* been registered via the {@see 'media_upload_tabs'} filter. |
|
95 |
* |
|
18 | 96 |
* Possible hook names include: |
97 |
* |
|
98 |
* - `media_upload_audio` |
|
99 |
* - `media_upload_file` |
|
100 |
* - `media_upload_image` |
|
101 |
* - `media_upload_video` |
|
102 |
* |
|
5 | 103 |
* @since 2.5.0 |
104 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
do_action( "media_upload_{$type}" ); |
5 | 106 |
} else { |
107 |
/** |
|
108 |
* Fires inside limited and specific upload-tab views in the legacy |
|
109 |
* (pre-3.5.0) media popup. |
|
110 |
* |
|
111 |
* The dynamic portion of the hook name, `$tab`, refers to the specific |
|
112 |
* media upload tab. Possible values include 'library' (Media Library), |
|
113 |
* or any custom tab registered via the {@see 'media_upload_tabs'} filter. |
|
114 |
* |
|
115 |
* @since 2.5.0 |
|
116 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
117 |
do_action( "media_upload_{$tab}" ); |
5 | 118 |
} |