wp-admin/includes/ajax-actions.php
Lines:
1 to 100 of 218
<?php /** * Administration API: Core Ajax handlers * * @package WordPress * @subpackage Administration * @since 2.1.0 */ // // No-privilege Ajax handlers. // /* function wp_ajax_nopriv_heartbeat() – Ajax handler for the Heartbeat API in the no-privilege context. */ // // GET-based Ajax handlers. // /* function wp_ajax_fetch_list() – Ajax handler for fetching a list table. */ /* function wp_ajax_ajax_tag_search() – Ajax handler for tag search. */ /* function wp_ajax_wp_compression_test() – Ajax handler for compression testing. */ /* function wp_ajax_imgedit_preview() – Ajax handler for image editor previews. */ /* function wp_ajax_oembed_cache() – Ajax handler for oEmbed caching. */ /* function wp_ajax_autocomplete_user() – Ajax handler for user autocomplete. */ /* function wp_ajax_get_community_events() – Handles Ajax requests for community events */ /* function wp_ajax_dashboard_widgets() – Ajax handler for dashboard widgets. */ /* function wp_ajax_logged_in() – Ajax handler for Customizer preview logged-in status. */ // // Ajax helpers. // /* function _wp_ajax_delete_comment_response() – Sends back current comment total and new page links if they need to be updated. */ // // POST-based Ajax handlers. // /* function _wp_ajax_add_hierarchical_term() – Ajax handler for adding a hierarchical term. */ /* function wp_ajax_delete_comment() – Ajax handler for deleting a comment. */ /* function wp_ajax_delete_tag() – Ajax handler for deleting a tag. */ /* function wp_ajax_delete_link() – Ajax handler for deleting a link. */ /* function wp_ajax_delete_meta() – Ajax handler for deleting meta. */ /* function wp_ajax_delete_post() – Ajax handler for deleting a post. */ /* function wp_ajax_trash_post() – Ajax handler for sending a post to the Trash. */ /* function wp_ajax_untrash_post() – Ajax handler to restore a post from the trash. */ /* function wp_ajax_delete_page() – Ajax handler to delete a page. */ /* function wp_ajax_dim_comment() – Ajax handler to dim a comment. */ /* function wp_ajax_add_link_category() – Ajax handler for adding a link category. */ /* function wp_ajax_add_tag() – Ajax handler to add a tag. */ /* function wp_ajax_get_tagcloud() – Ajax handler for getting a tagcloud. */ /* function wp_ajax_get_comments() – Ajax handler for getting comments. */ /* function wp_ajax_replyto_comment() – Ajax handler for replying to a comment. */ /* function wp_ajax_edit_comment() – Ajax handler for editing a comment. */ /* function wp_ajax_add_menu_item() – Ajax handler for adding a menu item. */ /* function wp_ajax_add_meta() – Ajax handler for adding meta. */ /* function wp_ajax_add_user() – Ajax handler for adding a user. */ /* function wp_ajax_closed_postboxes() – Ajax handler for closed post boxes. */ /* function wp_ajax_hidden_columns() – Ajax handler for hidden columns. */ /* function wp_ajax_update_welcome_panel() – Ajax handler for updating whether to display the welcome panel. */ /* function wp_ajax_menu_get_metabox() – Ajax handler for retrieving menu meta boxes. */ /* function wp_ajax_wp_link_ajax() – Ajax handler for internal linking. */ /* function wp_ajax_menu_locations_save() – Ajax handler for menu locations save. */ /* function wp_ajax_meta_box_order() – Ajax handler for saving the meta box order. */