H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
e:
/
home
/
ajudasindico
/
Web
/
16dezoito
/
weecook
/
wp-admin
/
Nama File / Folder
Size
Action
css
--
NONE
images
--
NONE
includes
--
NONE
js
--
NONE
maint
--
NONE
network
--
NONE
user
--
NONE
admin-ajax.php
3.556KB
Hapus
Edit
Rename
admin-footer.php
2.345KB
Hapus
Edit
Rename
admin-functions.php
0.394KB
Hapus
Edit
Rename
admin-post.php
1.646KB
Hapus
Edit
Rename
admin.php
10.647KB
Hapus
Edit
Rename
comment.php
9.839KB
Hapus
Edit
Rename
credits.php
5.012KB
Hapus
Edit
Rename
custom-background.php
16.841KB
Hapus
Edit
Rename
custom-header.php
43.191KB
Hapus
Edit
Rename
customize.php
5.256KB
Hapus
Edit
Rename
edit-comments.php
12.852KB
Hapus
Edit
Rename
edit-form-advanced.php
31.325KB
Hapus
Edit
Rename
edit-form-comment.php
7.241KB
Hapus
Edit
Rename
edit-link-form.php
5.887KB
Hapus
Edit
Rename
edit-tag-form.php
8.333KB
Hapus
Edit
Rename
edit-tags.php
20.166KB
Hapus
Edit
Rename
edit.php
14.994KB
Hapus
Edit
Rename
freedoms.php
3.268KB
Hapus
Edit
Rename
import.php
5.093KB
Hapus
Edit
Rename
index.php
5.907KB
Hapus
Edit
Rename
install.php
15.009KB
Hapus
Edit
Rename
link-add.php
0.695KB
Hapus
Edit
Rename
link-manager.php
3.505KB
Hapus
Edit
Rename
link-parse-opml.php
2.04KB
Hapus
Edit
Rename
link.php
2.563KB
Hapus
Edit
Rename
load-scripts.php
1.77KB
Hapus
Edit
Rename
load-styles.php
2.317KB
Hapus
Edit
Rename
media-new.php
3.056KB
Hapus
Edit
Rename
media-upload.php
3.229KB
Hapus
Edit
Rename
media.php
5.104KB
Hapus
Edit
Rename
menu-header.php
8.848KB
Hapus
Edit
Rename
menu.php
12.5KB
Hapus
Edit
Rename
moderation.php
0.313KB
Hapus
Edit
Rename
ms-admin.php
0.206KB
Hapus
Edit
Rename
ms-edit.php
0.226KB
Hapus
Edit
Rename
ms-options.php
0.23KB
Hapus
Edit
Rename
ms-sites.php
0.223KB
Hapus
Edit
Rename
ms-themes.php
0.225KB
Hapus
Edit
Rename
ms-upgrade-network.php
0.227KB
Hapus
Edit
Rename
ms-users.php
0.223KB
Hapus
Edit
Rename
my-sites.php
4.521KB
Hapus
Edit
Rename
nav-menus.php
39.08KB
Hapus
Edit
Rename
network.php
5.254KB
Hapus
Edit
Rename
options-discussion.php
13.885KB
Hapus
Edit
Rename
options-general.php
14.402KB
Hapus
Edit
Rename
options-head.php
0.48KB
Hapus
Edit
Rename
options-media.php
5.793KB
Hapus
Edit
Rename
options-permalink.php
14.741KB
Hapus
Edit
Rename
options-writing.php
7.856KB
Hapus
Edit
Rename
options.php
11.056KB
Hapus
Edit
Rename
plugin-editor.php
11.724KB
Hapus
Edit
Rename
plugin-install.php
5.187KB
Hapus
Edit
Rename
plugins.php
21.673KB
Hapus
Edit
Rename
post-new.php
2.666KB
Hapus
Edit
Rename
post.php
7.659KB
Hapus
Edit
Rename
press-this.php
0.68KB
Hapus
Edit
Rename
profile.php
0.289KB
Hapus
Edit
Rename
revision.php
4.899KB
Hapus
Edit
Rename
setup-config.php
13.964KB
Hapus
Edit
Rename
theme-editor.php
11.372KB
Hapus
Edit
Rename
theme-install.php
11.745KB
Hapus
Edit
Rename
themes.php
19.193KB
Hapus
Edit
Rename
tools.php
5.442KB
Hapus
Edit
Rename
update-core.php
28.559KB
Hapus
Edit
Rename
update.php
10.215KB
Hapus
Edit
Rename
upgrade.php
4.406KB
Hapus
Edit
Rename
upload.php
12.117KB
Hapus
Edit
Rename
user-edit.php
24.169KB
Hapus
Edit
Rename
user-new.php
19.523KB
Hapus
Edit
Rename
widgets.php
17.684KB
Hapus
Edit
Rename
<?php /** * Media management action handler. * * @package WordPress * @subpackage Administration */ /** Load WordPress Administration Bootstrap */ require_once( dirname( __FILE__ ) . '/admin.php' ); $parent_file = 'upload.php'; $submenu_file = 'upload.php'; wp_reset_vars(array('action')); switch ( $action ) { case 'editattachment' : $attachment_id = (int) $_POST['attachment_id']; check_admin_referer('media-form'); if ( !current_user_can('edit_post', $attachment_id) ) wp_die ( __('You are not allowed to edit this attachment.') ); $errors = media_upload_form_handler(); if ( empty($errors) ) { $location = 'media.php'; if ( $referer = wp_get_original_referer() ) { if ( false !== strpos($referer, 'upload.php') || ( url_to_postid($referer) == $attachment_id ) ) $location = $referer; } if ( false !== strpos($location, 'upload.php') ) { $location = remove_query_arg('message', $location); $location = add_query_arg('posted', $attachment_id, $location); } elseif ( false !== strpos($location, 'media.php') ) { $location = add_query_arg('message', 'updated', $location); } wp_redirect($location); exit; } // No break. case 'edit' : $title = __('Edit Media'); if ( empty($errors) ) $errors = null; if ( empty( $_GET['attachment_id'] ) ) { wp_redirect( admin_url('upload.php') ); exit(); } $att_id = (int) $_GET['attachment_id']; if ( !current_user_can('edit_post', $att_id) ) wp_die ( __('You are not allowed to edit this attachment.') ); $att = get_post($att_id); if ( empty($att->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_enqueue_script('image-edit'); wp_enqueue_style('imgareaselect'); get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __('Overview'), 'content' => '<p>' . __('This screen allows you to edit five fields for metadata in a file within the media library.') . '</p>' . '<p>' . __('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.') . '</p>' . '<p>' . __('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.') . '</p>' . '<p>' . __('Remember to click Update Media to save metadata entered or changed.') . '</p>' ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __('For more information:') . '</strong></p>' . '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' . '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' ); 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'; break; } } if ( $message ) echo "<div id='message' class='$class'><p>$message</p></div>\n"; ?> <div class="wrap"> <h1> <?php echo esc_html( $title ); if ( current_user_can( 'upload_files' ) ) { ?> <a href="media-new.php" class="page-title-action"><?php echo esc_html_x('Add New', 'file'); ?></a> <?php } ?> </h1> <form method="post" class="media-upload-form" id="media-single-form"> <p class="submit" style="padding-bottom: 0;"> <?php submit_button( __( 'Update Media' ), 'primary', 'save', false ); ?> </p> <div class="media-single"> <div id="media-item-<?php echo $att_id; ?>" class="media-item"> <?php echo get_media_item( $att_id, array( 'toggle' => false, 'send' => false, 'delete' => false, 'show_title' => false, 'errors' => !empty($errors[$att_id]) ? $errors[$att_id] : null ) ); ?> </div> </div> <?php submit_button( __( 'Update Media' ), 'primary', 'save' ); ?> <input type="hidden" name="post_id" id="post_id" value="<?php echo isset($post_id) ? esc_attr($post_id) : ''; ?>" /> <input type="hidden" name="attachment_id" id="attachment_id" value="<?php echo esc_attr($att_id); ?>" /> <input type="hidden" name="action" value="editattachment" /> <?php wp_original_referer_field(true, 'previous'); ?> <?php wp_nonce_field('media-form'); ?> </form> </div> <?php require( ABSPATH . 'wp-admin/admin-footer.php' ); exit; default: wp_redirect( admin_url('upload.php') ); exit; }