home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Blogs / wordpress2.6.exe / wordpress2.6 / wp-admin / index-extra.php < prev    next >
Encoding:
PHP Script  |  2008-02-22  |  514 b   |  29 lines

  1. <?php
  2. require_once('admin.php');
  3. require( 'includes/dashboard.php' );
  4. require_once (ABSPATH . WPINC . '/rss.php');
  5.  
  6. @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
  7.  
  8. switch ( $_GET['jax'] ) {
  9.  
  10. case 'incominglinks' :
  11.     wp_dashboard_incoming_links_output();
  12.     break;
  13.  
  14. case 'devnews' :
  15.     wp_dashboard_rss_output( 'dashboard_primary' );
  16.     break;
  17.  
  18. case 'planetnews' :
  19.     wp_dashboard_secondary_output();
  20.     break;
  21.  
  22. case 'plugins' :
  23.     wp_dashboard_plugins_output();
  24.     break;
  25.  
  26. }
  27.  
  28. ?>
  29.