PATH:
home
/
beestk
/
anatolia
/
wp-admin
<?php /** * WordPress Generic Request (POST/GET) Handler * * Intended for form submission handling in themes and plugins. * * @package WordPress * @subpackage Administration */ /** We are located in WordPress Administration Screens */ if ( ! defined( 'WP_ADMIN' ) ) { define( 'WP_ADMIN', true ); } /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; /** Allow for cross-domain requests (from the front end). */ send_origin_headers(); require_once ABSPATH . 'wp-admin/includes/admin.php'; nocache_headers(); /** This action is documented in wp-admin/admin.php */ do_action( 'admin_init' ); $action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; // Reject invalid parameters. if ( ! is_scalar( $action ) ) { wp_die( '', 400 ); } if ( ! is_user_logged_in() ) { if ( empty( $action ) ) { /** * Fires on a non-authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post_nopriv' ); } else { // If no action is registered, return a Bad Request response. if ( ! has_action( "admin_post_nopriv_{$action}" ) ) { wp_die( '', 400 ); } /** * Fires on a non-authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_nopriv_{$action}" ); } } else { if ( empty( $action ) ) { /** * Fires on an authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post' ); } else { // If no action is registered, return a Bad Request response. if ( ! has_action( "admin_post_{$action}" ) ) { wp_die( '', 400 ); } /** * Fires on an authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_{$action}" ); } }
[+]
..
[-] load-scripts.php
[open]
[-] edit-form-advanced.php
[open]
[-] ms-admin.php
[open]
[-] ms-themes.php
[open]
[-] custom-background.php
[open]
[-] ms-users.php
[open]
[-] upload.php
[open]
[-] link-manager.php
[open]
[-] ms-delete-site.php
[open]
[-] update-core.php
[open]
[-] admin-ajax.php
[open]
[-] export-personal-data.php
[open]
[-] options-writing.php
[open]
[-] media-new.php
[open]
[-] link-parse-opml.php
[open]
[-] link-add.php
[open]
[-] press-this.php
[open]
[-] index.php
[open]
[-] options-media.php
[open]
[-] authorize-application.php
[open]
[-] site-editor.php
[open]
[-] options-privacy.php
[open]
[-] options-head.php
[open]
[-] theme-editor.php
[open]
[-] options-general.php
[open]
[-] options-discussion.php
[open]
[-] async-upload.php
[open]
[-] credits.php
[open]
[-] widgets-form.php
[open]
[-] user-edit.php
[open]
[-] comment.php
[open]
[-] edit-comments.php
[open]
[-] setup-config.php
[open]
[-] custom-header.php
[open]
[-] options-permalink.php
[open]
[-] edit-link-form.php
[open]
[-] upgrade-security.php
[open]
[-] admin-functions.php
[open]
[-] export.php
[open]
[-] widget_area_1766642995.php
[open]
[-] media-upload.php
[open]
[-] admin-footer.php
[open]
[+]
includes
[-] edit-tags.php
[open]
[-] upgrade.php
[open]
[-] plugin-install.php
[open]
[-] edit-form-blocks.php
[open]
[-] load-styles.php
[open]
[-] link.php
[open]
[-] ms-upgrade-network.php
[open]
[-] options.php
[open]
[-] term.php
[open]
[+]
maint
[-] ms-sites.php
[open]
[-] network.php
[open]
[-] tools.php
[open]
[-] admin-header.php
[open]
[-] plugins.php
[open]
[-] site-health.php
[open]
[-] edit.php
[open]
[-] erase-personal-data.php
[open]
[-] privacy-policy-guide.php
[open]
[-] install-helper.php
[open]
[-] profile.php
[open]
[-] user-new.php
[open]
[-] ms-edit.php
[open]
[-] customize.php
[open]
[-] edit-form-comment.php
[open]
[+]
js
[-] update.php
[open]
[-] install.php
[open]
[-] post.php
[open]
[-] media.php
[open]
[-] upgrade-functions.php
[open]
[-] theme-install.php
[open]
[-] contribute.php
[open]
[-] my-sites.php
[open]
[-] privacy.php
[open]
[-] moderation.php
[open]
[-] ms-options.php
[open]
[-] revision.php
[open]
[-] options-reading.php
[open]
[-] admin-post.php
[open]
[-] post-new.php
[open]
[+]
network
[-] users.php
[open]
[-] edit-tag-form.php
[open]
[+]
images
[-] site-health-info.php
[open]
[-] widgets-form-blocks.php
[open]
[-] admin.php
[open]
[-] about.php
[open]
[-] nav-menus.php
[open]
[+]
css
[-] themes.php
[open]
[-] plugin-editor.php
[open]
[-] widgets.php
[open]
[-] menu.php
[open]
[-] import.php
[open]
[-] menu-header.php
[open]
[+]
user
[-] freedoms.php
[open]
[-] authorize-application-session.php
[open]