2006-11-18 23:12:39 +00:00
|
|
|
<?php
|
|
|
|
require_once('admin.php');
|
2008-02-21 21:20:09 +00:00
|
|
|
require( 'includes/dashboard.php' );
|
2006-11-18 23:12:39 +00:00
|
|
|
require_once (ABSPATH . WPINC . '/rss.php');
|
|
|
|
|
2007-06-02 05:21:18 +00:00
|
|
|
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
2007-02-06 20:12:53 +00:00
|
|
|
|
2008-02-02 07:57:51 +00:00
|
|
|
switch ( $_GET['jax'] ) {
|
2007-08-17 11:08:00 +00:00
|
|
|
|
2008-02-02 07:57:51 +00:00
|
|
|
case 'incominglinks' :
|
2008-02-21 21:20:09 +00:00
|
|
|
wp_dashboard_incoming_links_output();
|
|
|
|
break;
|
2006-11-18 23:12:39 +00:00
|
|
|
|
|
|
|
case 'devnews' :
|
2008-02-21 21:20:09 +00:00
|
|
|
wp_dashboard_rss_output( 'dashboard_primary' );
|
|
|
|
break;
|
2006-11-18 23:12:39 +00:00
|
|
|
|
|
|
|
case 'planetnews' :
|
2008-02-21 21:20:09 +00:00
|
|
|
wp_dashboard_secondary_output();
|
|
|
|
break;
|
2008-02-20 03:23:34 +00:00
|
|
|
|
|
|
|
case 'plugins' :
|
2008-02-21 21:20:09 +00:00
|
|
|
wp_dashboard_plugins_output();
|
|
|
|
break;
|
2008-02-20 03:23:34 +00:00
|
|
|
|
2006-11-18 23:12:39 +00:00
|
|
|
}
|
|
|
|
|
2008-02-20 03:23:34 +00:00
|
|
|
?>
|