Directory: /home/deremeavgh/www/wp-admin

Go to Parent Directory

NameTypeAction
.. DIR Open
.rnd FILE View Delete
about.php FILE View Delete
admin-ajax.php FILE View Delete
admin-footer.php FILE View Delete
admin-functions.php FILE View Delete
admin-header.php FILE View Delete
admin-post.php FILE View Delete
admin.php FILE View Delete
async-upload.php FILE View Delete
authorize-application.php FILE View Delete
comment.php FILE View Delete
contribute.php FILE View Delete
credits.php FILE View Delete
css DIR Open
custom-background.php FILE View Delete
custom-header.php FILE View Delete
customize.php FILE View Delete
edit-comments.php FILE View Delete
edit-form-advanced.php FILE View Delete
edit-form-blocks.php FILE View Delete
edit-form-comment.php FILE View Delete
edit-link-form.php FILE View Delete
edit-tag-form.php FILE View Delete
edit-tags.php FILE View Delete
edit.php FILE View Delete
erase-personal-data.php FILE View Delete
export-personal-data.php FILE View Delete
export.php FILE View Delete
freedoms.php FILE View Delete
images DIR Open
import.php FILE View Delete
includes DIR Open
index.php FILE View Delete
install-helper.php FILE View Delete
install.php FILE View Delete
js DIR Open
link-add.php FILE View Delete
link-manager.php FILE View Delete
link-parse-opml.php FILE View Delete
link.php FILE View Delete
load-scripts.php FILE View Delete
load-styles.php FILE View Delete
maint DIR Open
media-new.php FILE View Delete
media-upload.php FILE View Delete
media.php FILE View Delete
menu-header.php FILE View Delete
menu.php FILE View Delete
moderation.php FILE View Delete
ms-admin.php FILE View Delete
ms-delete-site.php FILE View Delete
ms-edit.php FILE View Delete
ms-options.php FILE View Delete
ms-sites.php FILE View Delete
ms-themes.php FILE View Delete
ms-upgrade-network.php FILE View Delete
ms-users.php FILE View Delete
my-sites.php FILE View Delete
nav-menus.php FILE View Delete
network DIR Open
network.php FILE View Delete
options-discussion.php FILE View Delete
options-general.php FILE View Delete
options-head.php FILE View Delete
options-media.php FILE View Delete
options-permalink.php FILE View Delete
options-privacy.php FILE View Delete
options-reading.php FILE View Delete
options-writing.php FILE View Delete
options.php FILE View Delete
plugin-editor.php FILE View Delete
plugin-install.php FILE View Delete
plugins.php FILE View Delete
post-new.php FILE View Delete
post.php FILE View Delete
press-this.php FILE View Delete
privacy-policy-guide.php FILE View Delete
privacy.php FILE View Delete
profile.php FILE View Delete
revision.php FILE View Delete
setup-config.php FILE View Delete
site-editor.php FILE View Delete
site-health-info.php FILE View Delete
site-health.php FILE View Delete
term.php FILE View Delete
theme-editor.php FILE View Delete
theme-install.php FILE View Delete
themes.php FILE View Delete
tools.php FILE View Delete
update-core.php FILE View Delete
update.php FILE View Delete
upgrade-functions.php FILE View Delete
upgrade.php FILE View Delete
upload.php FILE View Delete
user DIR Open
user-edit.php FILE View Delete
user-new.php FILE View Delete
users.php FILE View Delete
widgets-form-blocks.php FILE View Delete
widgets-form.php FILE View Delete
widgets.php FILE View Delete

File: /home/deremeavgh/www/wp-admin/press-this.php

<?php
/**
 * Press This Display and Handler.
 *
 * @package WordPress
 * @subpackage Press_This
 */

define( 'IFRAME_REQUEST', true );

/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

function wp_load_press_this() {
	$plugin_slug = 'press-this';
	$plugin_file = 'press-this/press-this-plugin.php';

	if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) {
		wp_die(
			__( 'Sorry, you are not allowed to create posts as this user.' ),
			__( 'You need a higher level of permission.' ),
			403
		);
	} elseif ( is_plugin_active( $plugin_file ) ) {
		include WP_PLUGIN_DIR . '/press-this/class-wp-press-this-plugin.php';
		$wp_press_this = new WP_Press_This_Plugin();
		$wp_press_this->html();
	} elseif ( current_user_can( 'activate_plugins' ) ) {
		if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_file ) ) {
			$url    = wp_nonce_url(
				add_query_arg(
					array(
						'action' => 'activate',
						'plugin' => $plugin_file,
						'from'   => 'press-this',
					),
					admin_url( 'plugins.php' )
				),
				'activate-plugin_' . $plugin_file
			);
			$action = sprintf(
				'<a href="%1$s" aria-label="%2$s">%2$s</a>',
				esc_url( $url ),
				__( 'Activate Press This' )
			);
		} else {
			if ( is_main_site() ) {
				$url    = wp_nonce_url(
					add_query_arg(
						array(
							'action' => 'install-plugin',
							'plugin' => $plugin_slug,
							'from'   => 'press-this',
						),
						self_admin_url( 'update.php' )
					),
					'install-plugin_' . $plugin_slug
				);
				$action = sprintf(
					'<a href="%1$s" class="install-now" data-slug="%2$s" data-name="%2$s" aria-label="%3$s">%3$s</a>',
					esc_url( $url ),
					esc_attr( $plugin_slug ),
					_x( 'Install Now', 'plugin' )
				);
			} else {
				$action = sprintf(
					/* translators: %s: URL to Press This bookmarklet on the main site. */
					__( 'Press This is not installed. Please install Press This from <a href="%s">the main site</a>.' ),
					get_admin_url( get_current_network_id(), 'press-this.php' )
				);
			}
		}
		wp_die(
			__( 'The Press This plugin is required.' ) . '<br />' . $action,
			__( 'Installation Required' ),
			200
		);
	} else {
		wp_die(
			__( 'Press This is not available. Please contact your site administrator.' ),
			__( 'Installation Required' ),
			200
		);
	}
}

wp_load_press_this();

Upload Encrypted File