2008-07-11 22:24:35 +02:00
|
|
|
<?php
|
2008-08-11 22:26:31 +02:00
|
|
|
/**
|
2013-09-22 07:18:09 +02:00
|
|
|
* WordPress Generic Request (POST/GET) Handler
|
|
|
|
*
|
|
|
|
* Intended for form submission handling in themes and plugins.
|
2008-08-11 22:26:31 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2011-04-28 17:24:49 +02:00
|
|
|
/** We are located in WordPress Administration Screens */
|
2014-05-18 22:42:16 +02:00
|
|
|
if ( ! defined( 'WP_ADMIN' ) ) {
|
|
|
|
define( 'WP_ADMIN', true );
|
|
|
|
}
|
2008-07-11 22:24:35 +02:00
|
|
|
|
|
|
|
if ( defined('ABSPATH') )
|
|
|
|
require_once(ABSPATH . 'wp-load.php');
|
|
|
|
else
|
2013-09-25 02:18:11 +02:00
|
|
|
require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
|
2008-07-11 22:24:35 +02:00
|
|
|
|
2013-08-16 21:59:08 +02:00
|
|
|
/** Allow for cross-domain requests (from the frontend). */
|
|
|
|
send_origin_headers();
|
|
|
|
|
2008-07-11 22:24:35 +02:00
|
|
|
require_once(ABSPATH . 'wp-admin/includes/admin.php');
|
|
|
|
|
|
|
|
nocache_headers();
|
|
|
|
|
2013-10-25 00:59:20 +02:00
|
|
|
/** This action is documented in wp-admin/admin.php */
|
2013-09-24 01:48:09 +02:00
|
|
|
do_action( 'admin_init' );
|
2008-07-11 22:24:35 +02:00
|
|
|
|
2014-05-13 09:24:15 +02:00
|
|
|
$action = empty( $_REQUEST['action'] ) ? '' : $_REQUEST['action'];
|
2014-05-08 12:47:15 +02:00
|
|
|
|
2014-05-13 09:24:15 +02:00
|
|
|
if ( ! wp_validate_auth_cookie() ) {
|
|
|
|
if ( empty( $action ) ) {
|
|
|
|
/**
|
|
|
|
* Fires on a non-authenticated admin post request where no action was supplied.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
do_action( 'admin_post_nopriv' );
|
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* 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 was supplied.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
do_action( 'admin_post' );
|
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* 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}" );
|
|
|
|
}
|
|
|
|
}
|