mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
9c31fd7c70
git-svn-id: http://svn.automattic.com/wordpress/trunk@15746 1a063a9b-81f0-0310-95a4-ce76da25c4cd
42 lines
833 B
PHP
42 lines
833 B
PHP
<?php
|
|
/**
|
|
* Handle default dashboard widgets options AJAX.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/** Load WordPress Bootstrap */
|
|
require_once( './admin.php' );
|
|
|
|
/** Load WordPress Administration Dashboard API */
|
|
require(ABSPATH . 'wp-admin/includes/dashboard.php' );
|
|
|
|
@header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
|
|
send_nosniff_header();
|
|
|
|
switch ( $_GET['jax'] ) {
|
|
|
|
case 'dashboard_incoming_links' :
|
|
wp_dashboard_incoming_links_output();
|
|
break;
|
|
|
|
case 'dashboard_primary' :
|
|
wp_dashboard_rss_output( 'dashboard_primary' );
|
|
break;
|
|
|
|
case 'dashboard_secondary' :
|
|
wp_dashboard_secondary_output();
|
|
break;
|
|
|
|
case 'dashboard_plugins' :
|
|
wp_dashboard_plugins_output();
|
|
break;
|
|
|
|
case 'dashboard_quick_press' :
|
|
wp_dashboard_quick_press_output();
|
|
break;
|
|
|
|
}
|
|
|
|
?>
|