]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/admin-ajax.php
WordPress 4.6.1
[autoinstalls/wordpress.git] / wp-admin / admin-ajax.php
index 5597aecef4ddd6a54444302a07cc53265046ac90..e0f4464d94dd8c179ba8626903a5c9360beb94e2 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * WordPress AJAX Process Execution.
+ * WordPress Ajax Process Execution
  *
  * @package WordPress
  * @subpackage Administration
@@ -9,7 +9,7 @@
  */
 
 /**
- * Executing AJAX process.
+ * Executing Ajax process.
  *
  * @since 2.1.0
  */
@@ -21,7 +21,7 @@ if ( ! defined( 'WP_ADMIN' ) ) {
 /** Load WordPress Bootstrap */
 require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
 
-/** Allow for cross-domain requests (from the frontend). */
+/** Allow for cross-domain requests (from the front end). */
 send_origin_headers();
 
 // Require an action parameter
@@ -62,7 +62,9 @@ $core_actions_post = array(
        'send-attachment-to-editor', 'save-attachment-order', 'heartbeat', 'get-revision-diffs',
        'save-user-color-scheme', 'update-widget', 'query-themes', 'parse-embed', 'set-attachment-thumbnail',
        'parse-media-shortcode', 'destroy-sessions', 'install-plugin', 'update-plugin', 'press-this-save-post',
-       'press-this-add-category', 'crop-image', 'generate-password', 'save-wporg-username',
+       'press-this-add-category', 'crop-image', 'generate-password', 'save-wporg-username', 'delete-plugin',
+       'search-plugins', 'search-install-plugins', 'activate-plugin', 'update-theme', 'delete-theme',
+       'install-theme', 'get-post-thumbnail-html',
 );
 
 // Deprecated
@@ -79,20 +81,20 @@ add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
 
 if ( is_user_logged_in() ) {
        /**
-        * Fires authenticated AJAX actions for logged-in users.
+        * 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.
+        * refers to the name of the Ajax action callback being fired.
         *
         * @since 2.1.0
         */
        do_action( 'wp_ajax_' . $_REQUEST['action'] );
 } else {
        /**
-        * Fires non-authenticated AJAX actions for logged-out users.
+        * 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.
+        * refers to the name of the Ajax action callback being fired.
         *
         * @since 2.8.0
         */