PATH:
home
/
beestk
/
autocaz
/
wp-admin
<?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 ), __( 'Install Now' ) ); } 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();
[+]
..
[-] menu.php
[open]
[-] ms-delete-site.php
[open]
[+]
maint
[-] site-editor.php
[open]
[-] admin-ajax.php
[open]
[-] press-this.php
[open]
[-] user-new.php
[open]
[-] upload.php
[open]
[-] profile.php
[open]
[-] ms-edit.php
[open]
[-] nav-menus.php
[open]
[-] options.php
[open]
[-] ms-sites.php
[open]
[-] index.php
[open]
[+]
network
[-] ms-upgrade-network.php
[open]
[-] options-media.php
[open]
[-] custom-background.php
[open]
[-] options-reading.php
[open]
[-] plugins.php
[open]
[-] post.php
[open]
[-] load-styles.php
[open]
[-] network.php
[open]
[-] edit-comments.php
[open]
[-] custom-header.php
[open]
[+]
images
[-] options-permalink.php
[open]
[-] customize.php
[open]
[-] freedoms.php
[open]
[-] admin-header.php
[open]
[-] edit.php
[open]
[-] widgets.php
[open]
[-] update-core.php
[open]
[-] privacy-policy-guide.php
[open]
[+]
user
[-] install.php
[open]
[-] plugin-install.php
[open]
[-] edit-form-blocks.php
[open]
[-] export.php
[open]
[-] post-new.php
[open]
[-] edit-link-form.php
[open]
[-] revision.php
[open]
[-] link.php
[open]
[-] privacy.php
[open]
[-] my-sites.php
[open]
[-] term.php
[open]
[-] options-head.php
[open]
[-] theme-editor.php
[open]
[-] edit-tag-form.php
[open]
[-] tools.php
[open]
[-] admin-functions.php
[open]
[-] setup-config.php
[open]
[-] plugin-editor.php
[open]
[-] authorize-application.php
[open]
[-] edit-form-comment.php
[open]
[-] async-upload.php
[open]
[+]
includes
[-] link-add.php
[open]
[-] widgets-form.php
[open]
[-] edit-tags.php
[open]
[-] media-upload.php
[open]
[-] erase-personal-data.php
[open]
[-] options-general.php
[open]
[-] ms-users.php
[open]
[-] admin-footer.php
[open]
[-] install-helper.php
[open]
[-] user-edit.php
[open]
[-] edit-form-advanced.php
[open]
[-] ms-admin.php
[open]
[-] theme-install.php
[open]
[-] options-privacy.php
[open]
[+]
css
[-] menu-header.php
[open]
[-] update.php
[open]
[-] link-parse-opml.php
[open]
[-] load-scripts.php
[open]
[-] options-writing.php
[open]
[-] site-health.php
[open]
[-] media.php
[open]
[-] media-new.php
[open]
[-] link-manager.php
[open]
[-] upgrade.php
[open]
[-] widgets-form-blocks.php
[open]
[-] contribute.php
[open]
[-] export-personal-data.php
[open]
[-] upgrade-functions.php
[open]
[-] options-discussion.php
[open]
[-] import.php
[open]
[-] admin.php
[open]
[-] about.php
[open]
[+]
js
[-] admin-post.php
[open]
[-] site-health-info.php
[open]
[-] ms-options.php
[open]
[-] users.php
[open]
[-] ms-themes.php
[open]
[-] credits.php
[open]
[-] moderation.php
[open]
[-] themes.php
[open]
[-] comment.php
[open]