2003-06-01 09:47:29 +02:00
< ? php
2008-02-02 08:57:51 +01:00
2007-09-04 01:32:58 +02:00
require_once ( 'admin.php' );
2006-11-19 00:12:39 +01:00
2008-02-02 08:57:51 +01:00
require ( './includes/dashboard.php' );
wp_dashboard_setup ();
2006-11-19 00:12:39 +01:00
function index_js () {
?>
< script type = " text/javascript " >
2007-05-28 22:46:03 +02:00
jQuery ( function () {
2008-02-21 22:20:09 +01:00
jQuery ( '#dashboard_incoming_links div.dashboard-widget-content' ) . not ( '.dashboard-widget-control' ) . find ( '.widget-loading' ) . parent () . load ( 'index-extra.php?jax=incominglinks' );
jQuery ( '#dashboard_primary div.dashboard-widget-content' ) . not ( '.dashboard-widget-control' ) . find ( '.widget-loading' ) . parent () . load ( 'index-extra.php?jax=devnews' );
jQuery ( '#dashboard_secondary div.dashboard-widget-content' ) . not ( '.dashboard-widget-control' ) . find ( '.widget-loading' ) . parent () . load ( 'index-extra.php?jax=planetnews' );
jQuery ( '#dashboard_plugins div.dashboard-widget-content' ) . not ( '.dashboard-widget-control' ) . find ( '.widget-loading' ) . parent () . load ( 'index-extra.php?jax=plugins' );
2007-05-28 22:46:03 +02:00
});
2006-11-19 00:12:39 +01:00
</ script >
< ? php
}
add_action ( 'admin_head' , 'index_js' );
2007-06-02 03:01:57 +02:00
2008-02-13 11:07:57 +01:00
function index_css () {
wp_admin_css ( 'css/dashboard' );
}
add_action ( 'admin_head' , 'index_css' );
2007-06-02 03:01:57 +02:00
wp_enqueue_script ( 'jquery' );
2006-11-19 00:12:39 +01:00
2007-09-04 01:32:58 +02:00
$title = __ ( 'Dashboard' );
2006-11-18 08:31:29 +01:00
$parent_file = 'index.php' ;
2004-12-19 01:10:10 +01:00
require_once ( 'admin-header.php' );
2003-06-01 09:47:29 +02:00
2004-12-19 08:26:43 +01:00
$today = current_time ( 'mysql' , 1 );
2004-12-19 01:10:10 +01:00
?>
2003-06-01 09:47:29 +02:00
2004-12-19 01:10:10 +01:00
< div class = " wrap " >
2005-08-07 12:45:06 +02:00
2007-12-20 21:23:30 +01:00
< h2 >< ? php _e ( 'Dashboard' ); ?> </h2>
2005-08-07 12:45:06 +02:00
2007-12-20 21:23:30 +01:00
< div id = " rightnow " >
2008-02-19 08:09:31 +01:00
< h3 class = " reallynow " >< span >< ? php _e ( 'Right Now' ); ?> </span> <a href="post-new.php" class="rbutton"><strong><?php _e('Write a New Post'); ?></strong></a> <a href="page-new.php" class="rbutton"><?php _e('Write a New Page'); ?></a><br class="clear" /></h3>
2005-08-07 12:45:06 +02:00
2007-12-20 21:23:30 +01:00
< ? php
2008-02-13 10:30:26 +01:00
$num_posts = wp_count_posts ( 'post' );
$num_pages = wp_count_posts ( 'page' );
2007-12-20 21:23:30 +01:00
$num_cats = wp_count_terms ( 'category' );
$num_tags = wp_count_terms ( 'post_tag' );
2007-12-20 23:36:00 +01:00
$post_type_texts = array ();
2007-12-20 21:23:30 +01:00
2008-02-13 10:30:26 +01:00
if ( ! empty ( $num_posts -> publish ) ) {
$post_type_texts [] = '<a href="edit.php">' . sprintf ( __ngettext ( '%s post' , '%s posts' , $num_posts -> publish ), number_format_i18n ( $num_posts -> publish ) ) . '</a>' ;
2007-12-20 23:36:00 +01:00
}
2008-02-13 10:30:26 +01:00
if ( ! empty ( $num_pages -> publish ) ) {
$post_type_texts [] = '<a href="edit-pages.php">' . sprintf ( __ngettext ( '%s page' , '%s pages' , $num_pages -> publish ), number_format_i18n ( $num_pages -> publish ) ) . '</a>' ;
2007-12-20 23:36:00 +01:00
}
2008-02-13 10:30:26 +01:00
if ( ! empty ( $num_posts -> draft ) ) {
$post_type_texts [] = '<a href="edit.php?post_status=draft">' . sprintf ( __ngettext ( '%s draft' , '%s drafts' , $num_posts -> draft ), number_format_i18n ( $num_posts -> draft ) ) . '</a>' ;
2007-12-20 23:36:00 +01:00
}
2008-02-13 10:30:26 +01:00
if ( ! empty ( $num_posts -> future ) ) {
$post_type_texts [] = '<a href="edit.php?post_status=future">' . sprintf ( __ngettext ( '%s scheduled post' , '%s scheduled posts' , $num_posts -> future ), number_format_i18n ( $num_posts -> future ) ) . '</a>' ;
2007-12-20 23:36:00 +01:00
}
2007-12-20 21:23:30 +01:00
2008-02-09 08:08:32 +01:00
$cats_text = '<a href="categories.php">' . sprintf ( __ngettext ( '%s category' , '%s categories' , $num_cats ), number_format_i18n ( $num_cats ) ) . '</a>' ;
2008-02-13 10:32:32 +01:00
$tags_text = '<a href="edit-tags.php">' . sprintf ( __ngettext ( '%s tag' , '%s tags' , $num_tags ), number_format_i18n ( $num_tags ) ) . '</a>' ;
2007-12-20 21:23:30 +01:00
2007-12-20 23:36:00 +01:00
$post_type_text = implode ( ', ' , $post_type_texts );
2007-12-20 21:23:30 +01:00
// There is always a category
2007-12-20 23:36:00 +01:00
$sentence = sprintf ( __ ( 'You have %1$s, contained within %2$s and %3$s.' ), $post_type_text , $cats_text , $tags_text );
2007-12-20 21:23:30 +01:00
?>
2007-12-24 08:14:41 +01:00
< p class = " youhave " >< ? php echo $sentence ; ?> </p>
2007-12-20 21:23:30 +01:00
< ? php
$ct = current_theme_info ();
$sidebars_widgets = wp_get_sidebars_widgets ();
2007-12-20 23:36:00 +01:00
$num_widgets = array_reduce ( $sidebars_widgets , create_function ( '$prev, $curr' , 'return $prev+count($curr);' ) );
$widgets_text = sprintf ( __ngettext ( '%d widget' , '%d widgets' , $num_widgets ), $num_widgets );
2007-12-20 21:23:30 +01:00
?>
2007-12-24 08:14:41 +01:00
< p >< ? php printf ( __ ( 'You are using %1$s theme with %2$s.' ), $ct -> title , " <a href='widgets.php'> $widgets_text </a> " ); ?> <a href="themes.php" class="rbutton"><?php _e('Change Theme'); ?></a> You're using BetaPress TODO.</p>
2007-12-20 21:23:30 +01:00
< ? php do_action ( 'rightnow_end' ); ?>
< ? php do_action ( 'activity_box_end' ); ?>
2008-02-02 08:57:51 +01:00
</ div ><!-- rightnow -->
2005-08-07 12:45:06 +02:00
2008-02-13 11:07:57 +01:00
< br class = " clear " />
2008-02-02 08:57:51 +01:00
< ? php wp_dashboard (); ?>
2007-12-20 21:23:30 +01:00
2008-02-02 08:57:51 +01:00
</ div ><!-- wrap -->
2004-02-02 22:54:32 +01:00
2008-02-02 08:57:51 +01:00
< ? php require ( './admin-footer.php' ); ?>