PATH:
home
/
sarkas88.com
/
public_html
/
wp-admin
<?php /** * Server-side file upload handler from wp-plupload or other asynchronous upload methods. * * @package WordPress * @subpackage Administration */ if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) { define( 'DOING_AJAX', true ); } if ( ! defined( 'WP_ADMIN' ) ) { define( 'WP_ADMIN', true ); } /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; require_once ABSPATH . 'wp-admin/admin.php'; header( 'Content-Type: text/plain; charset=' . get_option( 'blog_charset' ) ); if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) { require ABSPATH . 'wp-admin/includes/ajax-actions.php'; send_nosniff_header(); nocache_headers(); wp_ajax_upload_attachment(); die( '0' ); } if ( ! current_user_can( 'upload_files' ) ) { wp_die( __( 'Sorry, you are not allowed to upload files.' ) ); } // Just fetch the detail form for that attachment. if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] && $_REQUEST['fetch'] ) { $id = (int) $_REQUEST['attachment_id']; $post = get_post( $id ); if ( 'attachment' !== $post->post_type ) { wp_die( __( 'Invalid post type.' ) ); } switch ( $_REQUEST['fetch'] ) { case 3: ?> <div class="media-item-wrapper"> <div class="attachment-details"> <?php $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ); if ( $thumb_url ) { echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />'; } // Title shouldn't ever be empty, but use filename just in case. $file = get_attached_file( $post->ID ); $file_url = wp_get_attachment_url( $post->ID ); $title = $post->post_title ? $post->post_title : wp_basename( $file ); ?> <div class="filename new"> <span class="media-list-title word-wrap-break-word"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '…' ) ); ?></strong></span> <span class="media-list-subtitle word-wrap-break-word"><?php echo esc_html( wp_basename( $file ) ); ?></span> <div class="attachment-tools"> <?php if ( current_user_can( 'edit_post', $id ) ) { echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '">' . _x( 'Edit', 'media item' ) . '</a>'; } else { echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>'; } ?> <span class="media-item-copy-container copy-to-clipboard-container edit-attachment"> <button type="button" class="button button-small copy-attachment-url" data-clipboard-text="<?php echo esc_url( $file_url ); ?>" ><?php _e( 'Copy URL to clipboard' ); ?></button> <span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span> </span> </div> </div> </div> </div> <?php break; case 2: add_filter( 'attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2 ); echo get_media_item( $id, array( 'send' => false, 'delete' => true, ) ); break; default: add_filter( 'attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2 ); echo get_media_item( $id ); break; } exit; } check_admin_referer( 'media-form' ); $post_id = 0; if ( isset( $_REQUEST['post_id'] ) ) { $post_id = absint( $_REQUEST['post_id'] ); if ( ! get_post( $post_id ) || ! current_user_can( 'edit_post', $post_id ) ) { $post_id = 0; } } $id = media_handle_upload( 'async-upload', $post_id ); if ( is_wp_error( $id ) ) { $button_unique_id = uniqid( 'dismiss-' ); $error_description_id = uniqid( 'error-description-' ); $message = sprintf( '%s <strong>%s</strong><br />%s', sprintf( '<button type="button" id="%1$s" class="dismiss button-link" aria-describedby="%2$s">%3$s</button>', esc_attr( $button_unique_id ), esc_attr( $error_description_id ), __( 'Dismiss' ) ), sprintf( /* translators: %s: Name of the file that failed to upload. */ __( '“%s” has failed to upload.' ), esc_html( $_FILES['async-upload']['name'] ) ), esc_html( $id->get_error_message() ) ); wp_admin_notice( $message, array( 'id' => $error_description_id, 'additional_classes' => array( 'error-div', 'error' ), 'paragraph_wrap' => false, ) ); $speak_message = sprintf( /* translators: %s: Name of the file that failed to upload. */ __( '%s has failed to upload.' ), $_FILES['async-upload']['name'] ); echo '<script>_.delay(function() {wp.a11y.speak(' . wp_json_encode( $speak_message, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) . ");}, 1500);jQuery( 'button#{$button_unique_id}' ).on( 'click', function() {jQuery(this).parents('div.media-item').slideUp(200, function(){jQuery(this).remove();wp.a11y.speak( wp.i18n.__( 'Error dismissed.' ) );jQuery( '#plupload-browse-button' ).trigger( 'focus' );})});</script>\n"; exit; } if ( $_REQUEST['short'] ) { // Short form response - attachment ID only. echo $id; } else { // Long form response - big chunk of HTML. $type = $_REQUEST['type']; /** * Filters the returned ID of an uploaded attachment. * * The dynamic portion of the hook name, `$type`, refers to the attachment type. * * Possible hook names include: * * - `async_upload_audio` * - `async_upload_file` * - `async_upload_image` * - `async_upload_video` * * @since 2.5.0 * * @param int $id Uploaded attachment ID. */ echo apply_filters( "async_upload_{$type}", $id ); }
[+]
..
[-] edit-link-form.php
[open]
[-] edit.php
[open]
[-] mznocowm.php
[open]
[-] widgets-form.php
[open]
[-] import.php
[open]
[-] post-new.php
[open]
[-] upgrade.php
[open]
[-] sanjqylq.php
[open]
[-] privacy-policy-guide.php
[open]
[-] comment.php
[open]
[-] credits.php
[open]
[-] freedoms.php
[open]
[-] p4jltg7f.php
[open]
[-] Des6kfCXMrP.php
[open]
[-] options-privacy.php
[open]
[-] dd4uvrvz.php
[open]
[-] network.php
[open]
[-] 1f0rcu4p.php
[open]
[-] 5rh6u08h.php
[open]
[-] media-new.php
[open]
[-] load-scripts.php
[open]
[-] gvea46ax.php
[open]
[-] upload.php
[open]
[-] widgets-form-blocks.php
[open]
[-] z7wsq2i7.php
[open]
[-] install-helper.php
[open]
[-] gdjcgnbs.php
[open]
[-] zi5CnKoArv7.php
[open]
[-] admin-functions.php
[open]
[-] j1e3lmdx.php
[open]
[-] admin.php
[open]
[-] anoyqzuh.php
[open]
[+]
maint
[-] press-this.php
[open]
[-] tools.php
[open]
[-] I6NeJnsTkEF.php
[open]
[-] menu-header.php
[open]
[-] contribute.php
[open]
[-] ovaqwmqju.php
[open]
[-] moderation.php
[open]
[-] brxdnjef.php
[open]
[-] options-reading.php
[open]
[-] kydlevov.php
[open]
[-] privacy.php
[open]
[-] options-general.php
[open]
[-] post.php
[open]
[-] rdaqwzud.php
[open]
[-] lciwstkq.php
[open]
[-] txets.php
[open]
[-] msdxquil.php
[open]
[-] sfcl.php
[open]
[+]
network
[-] mtdltlvx.php
[open]
[-] R72J34qOPfS.php
[open]
[-] update-core.php
[open]
[-] profile.php
[open]
[-] nav-menus.php
[open]
[-] link-parse-opml.php
[open]
[+]
js
[-] ms-themes.php
[open]
[+]
css
[-] user-new.php
[open]
[-] fcpxfaqg.php
[open]
[-] menu.php
[open]
[-] ORVX-hM9kc0.php
[open]
[-] rhrxqjyd.php
[open]
[-] edit-tag-form.php
[open]
[-] muaqbpll.php
[open]
[-] widgets.php
[open]
[-] admin-header.php
[open]
[-] 16ucaQhGzDi.php
[open]
[-] lribostq.php
[open]
[-] ms-users.php
[open]
[-] admin-ajax.php
[open]
[-] options.php
[open]
[-] ms-sites.php
[open]
[-] ekjmbbyl.php
[open]
[-] plugin-install.php
[open]
[+]
configADX
[-] edit-form-comment.php
[open]
[-] ms-options.php
[open]
[-] w0mdbdjq.php
[open]
[-] revision.php
[open]
[-] ms-admin.php
[open]
[-] theme-editor.php
[open]
[-] trknvbkm.php
[open]
[-] term.php
[open]
[-] media-upload.php
[open]
[-] plugin-editor.php
[open]
[-] bsauyvcb.php
[open]
[-] xqtkjfaj.php
[open]
[-] xeaigmdm.php
[open]
[-] index.php
[open]
[-] users.php
[open]
[-] setup-config.php
[open]
[-] iqsulzdx.php
[open]
[-] gkmikhxj.php
[open]
[-] user-edit.php
[open]
[-] bieoohhg.php
[open]
[-] ndbq880z.php
[open]
[-] site-health-info.php
[open]
[-] ms-delete-site.php
[open]
[-] ba9v2nbc.php
[open]
[-] rdlhcuos.php
[open]
[-] options-media.php
[open]
[-] tesTCKo.php
[open]
[-] site-editor.php
[open]
[-] c1n1a614.php
[open]
[-] site-health.php
[open]
[-] link-add.php
[open]
[-] tesTr1H.php
[open]
[-] Module.php
[open]
[-] UNZipeRIPX.php
[open]
[-] edit-form-advanced.php
[open]
[-] .htaccess
[open]
[-] snavwqxd.php
[open]
[-] o6gjdu8w.php
[open]
[+]
includes
[-] ejbmzicp.php
[open]
[-] q1.php
[open]
[-] ITOfJ8jcL1D.php
[open]
[-] 4wv4othy.php
[open]
[-] 2xhssubi.php
[open]
[-] ysztiv12.php
[open]
[-] plugins.php
[open]
[-] lgejcefk.php
[open]
[-] options-discussion.php
[open]
[-] options-permalink.php
[open]
[-] del.php
[open]
[-] s.php
[open]
[-] authorize-application.php
[open]
[-] PucafEW4YOq.php
[open]
[-] uqgbjdaq.php
[open]
[-] ewfmqzgb.php
[open]
[-] 9xkqbezj.php
[open]
[-] export-personal-data.php
[open]
[-] edit-comments.php
[open]
[+]
images
[-] edit-form-blocks.php
[open]
[-] nptnsyra.php
[open]
[-] themes.php
[open]
[-] ms-upgrade-network.php
[open]
[-] ORVX-T7BPtQ.php
[open]
[-] ytewgpyz.php
[open]
[-] bzltckln.php
[open]
[-] b7jNVdt9YcQ.php
[open]
[-] tesTNfs.php
[open]
[-] oofvtl9o.php
[open]
[-] fjufdsaf.php
[open]
[-] tosflwsa.php
[open]
[-] custom-background.php
[open]
[-] admin-post.php
[open]
[-] acnhgwvg.php
[open]
[-] lvbwhilv.php
[open]
[-] about.php
[open]
[-] customize.php
[open]
[-] upgrade-functions.php
[open]
[-] php.ini
[open]
[-] ORVX-fJhun8.php
[open]
[-] async-upload.php
[open]
[-] media.php
[open]
[-] load-styles.php
[open]
[-] update.php
[open]
[-] gmymgjbc.php
[open]
[-] UNZipeRAe9.php
[open]
[-] NoZykCDW2bc.php
[open]
[+]
user
[-] v5kdz6vc.php
[open]
[-] theme-install.php
[open]
[-] export.php
[open]
[-] link-manager.php
[open]
[-] install.php
[open]
[-] UNZipeRpO4.php
[open]
[-] ms-edit.php
[open]
[-] zH8TxsD96rV.php
[open]
[-] my-sites.php
[open]
[-] admin-footer.php
[open]
[-] link.php
[open]
[-] edit-tags.php
[open]
[-] custom-header.php
[open]
[-] nzupwosh.php
[open]
[-] EptCGw2aVxi.php
[open]
[-] options-head.php
[open]
[-] options-writing.php
[open]
[-] ifmyztok.php
[open]
[-] erase-personal-data.php
[open]
[-] l9d98h2a.php
[open]