From e7bee2709bee4253245d3680635227a8ea942a1d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 21 Sep 2013 05:31:09 +0000 Subject: [PATCH] Inline documentation for hooks in wp-admin/admin-ajax.php. Props nullvariable for the initial patch. Fixes #25229. git-svn-id: https://develop.svn.wordpress.org/trunk@25538 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/admin-ajax.php | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/src/wp-admin/admin-ajax.php b/src/wp-admin/admin-ajax.php index c638d78aad..9662a3e189 100644 --- a/src/wp-admin/admin-ajax.php +++ b/src/wp-admin/admin-ajax.php @@ -38,6 +38,7 @@ require_once( ABSPATH . 'wp-admin/includes/ajax-actions.php' ); send_nosniff_header(); nocache_headers(); +//duplicate_hook do_action( 'admin_init' ); $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 ); -if ( is_user_logged_in() ) - do_action( 'wp_ajax_' . $_REQUEST['action'] ); // Authenticated actions -else - do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] ); // Non-admin actions - +if ( is_user_logged_in() ) { + /** + * Fires authenticated AJAX actions for logged-in users. + * + * 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 die( '0' );