Inline documentation for hooks in wp-admin/admin-ajax.php.
Props nullvariable for the initial patch. Fixes #25229. Built from https://develop.svn.wordpress.org/trunk@25538 git-svn-id: http://core.svn.wordpress.org/trunk@25458 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
65bcc3f004
commit
8d1ef212ad
|
@ -38,6 +38,7 @@ require_once( ABSPATH . 'wp-admin/includes/ajax-actions.php' );
|
||||||
send_nosniff_header();
|
send_nosniff_header();
|
||||||
nocache_headers();
|
nocache_headers();
|
||||||
|
|
||||||
|
//duplicate_hook
|
||||||
do_action( 'admin_init' );
|
do_action( 'admin_init' );
|
||||||
|
|
||||||
$core_actions_get = array(
|
$core_actions_get = array(
|
||||||
|
@ -68,10 +69,26 @@ if ( ! empty( $_POST['action'] ) && in_array( $_POST['action'], $core_actions_po
|
||||||
|
|
||||||
add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
|
add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
|
||||||
|
|
||||||
if ( is_user_logged_in() )
|
if ( is_user_logged_in() ) {
|
||||||
do_action( 'wp_ajax_' . $_REQUEST['action'] ); // Authenticated actions
|
/**
|
||||||
else
|
* Fires authenticated AJAX actions for logged-in users.
|
||||||
do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] ); // Non-admin actions
|
*
|
||||||
|
* The dynamic portion of the hook name, $_REQUEST['action'],
|
||||||
|
* refers to the name of the AJAX action callback being fired.
|
||||||
|
*
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
do_action( 'wp_ajax_' . $_REQUEST['action'] );
|
||||||
|
} else {
|
||||||
|
/**
|
||||||
|
* Fires non-authenticated AJAX actions for logged-out users.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, $_REQUEST['action'],
|
||||||
|
* refers to the name of the AJAX action callback being fired.
|
||||||
|
*
|
||||||
|
* @since 2.8
|
||||||
|
*/
|
||||||
|
do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] );
|
||||||
|
}
|
||||||
// Default status
|
// Default status
|
||||||
die( '0' );
|
die( '0' );
|
||||||
|
|
Loading…
Reference in New Issue