H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
/
home
/
ymswebso
/
public_html
/
applyworld
/
wp-admin
/
Nama File / Folder
Size
Action
css
--
NONE
images
--
NONE
includes
--
NONE
js
--
NONE
maint
--
NONE
network
--
NONE
user
--
NONE
admin-footer.php
2.768KB
Hapus
Edit
Rename
credits.php
3.751KB
Hapus
Edit
Rename
custom-background.php
0.406KB
Hapus
Edit
Rename
edit-comments.php
14.381KB
Hapus
Edit
Rename
edit-form-advanced.php
28.857KB
Hapus
Edit
Rename
edit-form-comment.php
8.344KB
Hapus
Edit
Rename
edit-tag-form.php
10.444KB
Hapus
Edit
Rename
edit-tags.php
22.005KB
Hapus
Edit
Rename
erase-personal-data.php
7.329KB
Hapus
Edit
Rename
export-personal-data.php
7.755KB
Hapus
Edit
Rename
import.php
7.478KB
Hapus
Edit
Rename
index.php
7.68KB
Hapus
Edit
Rename
link-add.php
0.916KB
Hapus
Edit
Rename
link-manager.php
4.263KB
Hapus
Edit
Rename
media-upload.php
3.485KB
Hapus
Edit
Rename
media.php
0.8KB
Hapus
Edit
Rename
ms-admin.php
0.191KB
Hapus
Edit
Rename
ms-edit.php
0.211KB
Hapus
Edit
Rename
ms-sites.php
0.21KB
Hapus
Edit
Rename
nav-menus.php
48.12KB
Hapus
Edit
Rename
network.php
5.393KB
Hapus
Edit
Rename
options-discussion.php
15.396KB
Hapus
Edit
Rename
options-general.php
21.514KB
Hapus
Edit
Rename
options-media.php
6.353KB
Hapus
Edit
Rename
options-permalink.php
21.209KB
Hapus
Edit
Rename
options-privacy.php
9.951KB
Hapus
Edit
Rename
options-reading.php
10.025KB
Hapus
Edit
Rename
options-writing.php
9.099KB
Hapus
Edit
Rename
options.php
13.445KB
Hapus
Edit
Rename
post.php
9.97KB
Hapus
Edit
Rename
setup-config.php
17.483KB
Hapus
Edit
Rename
site-editor.php
7.048KB
Hapus
Edit
Rename
site-health-info.php
3.988KB
Hapus
Edit
Rename
term.php
2.196KB
Hapus
Edit
Rename
theme-editor.php
15.422KB
Hapus
Edit
Rename
theme-install.php
23.369KB
Hapus
Edit
Rename
themes.php
46.951KB
Hapus
Edit
Rename
update-core.php
45.429KB
Hapus
Edit
Rename
update.php
12.785KB
Hapus
Edit
Rename
upgrade-functions.php
0.333KB
Hapus
Edit
Rename
user-edit.php
39.601KB
Hapus
Edit
Rename
widgets-form.php
19.165KB
Hapus
Edit
Rename
widgets.php
1.086KB
Hapus
Edit
Rename
<?php /** * 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 */ if ( ! isset( $_GET['inline'] ) ) { define( 'IFRAME_REQUEST', true ); } /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'upload_files' ) ) { wp_die( __( 'Sorry, you are not allowed to upload files.' ), 403 ); } wp_enqueue_script( 'plupload-handlers' ); wp_enqueue_script( 'image-edit' ); wp_enqueue_script( 'set-post-thumbnail' ); wp_enqueue_style( 'imgareaselect' ); wp_enqueue_script( 'media-gallery' ); header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); // IDs should be integers. $ID = isset( $ID ) ? (int) $ID : 0; // phpcs:ignore WordPress.NamingConventions.ValidVariableName $post_id = isset( $post_id ) ? (int) $post_id : 0; // Require an ID for the edit screen. if ( isset( $action ) && 'edit' === $action && ! $ID ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName wp_die( '<h1>' . __( 'Something went wrong.' ) . '</h1>' . '<p>' . __( 'Invalid item ID.' ) . '</p>', 403 ); } if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post', $_REQUEST['post_id'] ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', 403 ); } // Upload type: image, video, file, ...? if ( isset( $_GET['type'] ) ) { $type = (string) $_GET['type']; } else { /** * Filters the default media upload type in the legacy (pre-3.5.0) media popup. * * @since 2.5.0 * * @param string $type The default media upload type. Possible values include * 'image', 'audio', 'video', 'file', etc. Default 'file'. */ $type = apply_filters( 'media_upload_default_type', 'file' ); } // Tab: gallery, library, or type-specific. if ( isset( $_GET['tab'] ) ) { $tab = (string) $_GET['tab']; } else { /** * Filters the default tab in the legacy (pre-3.5.0) media popup. * * @since 2.5.0 * * @param string $tab The default media popup tab. Default 'type' (From Computer). */ $tab = apply_filters( 'media_upload_default_tab', 'type' ); } $body_id = 'media-upload'; // Let the action code decide how to handle the request. if ( 'type' === $tab || 'type_url' === $tab || ! array_key_exists( $tab, media_upload_tabs() ) ) { /** * Fires inside specific upload-type views in the legacy (pre-3.5.0) * media popup based on the current tab. * * The dynamic portion of the hook name, `$type`, refers to the specific * media upload type. * * The hook only fires if the current `$tab` is 'type' (From Computer), * 'type_url' (From URL), or, if the tab does not exist (i.e., has not * been registered via the {@see 'media_upload_tabs'} filter. * * Possible hook names include: * * - `media_upload_audio` * - `media_upload_file` * - `media_upload_image` * - `media_upload_video` * * @since 2.5.0 */ do_action( "media_upload_{$type}" ); } else { /** * Fires inside limited and specific upload-tab views in the legacy * (pre-3.5.0) media popup. * * The dynamic portion of the hook name, `$tab`, refers to the specific * media upload tab. Possible values include 'library' (Media Library), * or any custom tab registered via the {@see 'media_upload_tabs'} filter. * * @since 2.5.0 */ do_action( "media_upload_{$tab}" ); }