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-03-24 21:36:46 +01:00
require_once ( ABSPATH . 'wp-admin/includes/dashboard.php' );
2008-02-02 08:57:51 +01:00
wp_dashboard_setup ();
2006-11-19 00:12:39 +01:00
function index_js () {
?>
< script type = " text/javascript " >
2008-04-02 18:22:53 +02:00
jQuery ( function ( $ ) {
var ajaxWidgets = {
dashboard_incoming_links : 'incominglinks' ,
dashboard_primary : 'devnews' ,
dashboard_secondary : 'planetnews' ,
dashboard_plugins : 'plugins'
};
$ . each ( ajaxWidgets , function ( i , a ) {
var e = jQuery ( '#' + i + ' div.dashboard-widget-content' ) . not ( '.dashboard-widget-control' ) . find ( '.widget-loading' );
if ( e . size () ) { e . parent () . load ( 'index-extra.php?jax=' + a ); }
} );
});
2006-11-19 00:12:39 +01:00
</ script >
< ? php
}
add_action ( 'admin_head' , 'index_js' );
2007-06-02 03:01:57 +02:00
wp_enqueue_script ( 'jquery' );
2008-05-22 02:06:41 +02:00
wp_admin_css ( 'dashboard' );
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-03-10 23:59:57 +01:00
< h3 class = " reallynow " >
< span >< ? php _e ( 'Right Now' ); ?> </span>
< ? php if ( $can_edit_posts = current_user_can ( 'edit_posts' ) ) : ?>
< a href = " post-new.php " class = " rbutton " >< strong >< ? php _e ( 'Write a New Post' ); ?> </strong></a>
< ? php endif ; if ( $can_edit_pages = current_user_can ( 'edit_pages' ) ) : ?>
< a href = " page-new.php " class = " rbutton " >< ? php _e ( 'Write a New Page' ); ?> </a>
< ? php endif ; ?>
< 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' );
2008-06-20 16:33:52 +02:00
$num_comm = get_comment_count ( );
2007-12-20 23:36:00 +01:00
$post_type_texts = array ();
2007-12-20 21:23:30 +01:00
2008-03-10 23:59:57 +01:00
if ( ! empty ( $num_posts -> publish ) ) { // with feeds, anyone can tell how many posts there are. Just unlink if !current_user_can
$post_text = sprintf ( __ngettext ( '%s post' , '%s posts' , $num_posts -> publish ), number_format_i18n ( $num_posts -> publish ) );
$post_type_texts [] = $can_edit_posts ? " <a href='edit.php'> $post_text </a> " : $post_text ;
2007-12-20 23:36:00 +01:00
}
2008-03-10 23:59:57 +01:00
if ( $can_edit_pages && ! empty ( $num_pages -> publish ) ) { // how many pages is not exposed in feeds. Don't show if !current_user_can
2008-02-13 10:30:26 +01:00
$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-03-10 23:59:57 +01:00
if ( $can_edit_posts && ! empty ( $num_posts -> draft ) ) {
2008-02-13 10:30:26 +01:00
$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-03-10 23:59:57 +01:00
if ( $can_edit_posts && ! empty ( $num_posts -> future ) ) {
2008-02-13 10:30:26 +01:00
$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-03-18 23:49:41 +01:00
if ( current_user_can ( 'publish_posts' ) && ! empty ( $num_posts -> pending ) ) {
2008-03-19 00:00:45 +01:00
$pending_text = sprintf ( __ngettext ( 'There is <a href="%1$s">%2$s post</a> pending your review.' , 'There are <a href="%1$s">%2$s posts</a> pending your review.' , $num_posts -> pending ), 'edit.php?post_status=pending' , number_format_i18n ( $num_posts -> pending ) );
2008-03-18 23:49:41 +01:00
} else {
$pending_text = '' ;
}
2008-03-10 23:59:57 +01:00
$cats_text = sprintf ( __ngettext ( '%s category' , '%s categories' , $num_cats ), number_format_i18n ( $num_cats ) );
$tags_text = sprintf ( __ngettext ( '%s tag' , '%s tags' , $num_tags ), number_format_i18n ( $num_tags ) );
if ( current_user_can ( 'manage_categories' ) ) {
$cats_text = " <a href='categories.php'> $cats_text </a> " ;
$tags_text = " <a href='edit-tags.php'> $tags_text </a> " ;
}
2007-12-20 21:23:30 +01:00
2008-06-20 16:33:52 +02:00
$total_comments = sprintf ( __ ( '%1$s total' ), $num_comm [ 'total_comments' ] );
$approved_comments = sprintf ( __ ( '%1$s approved' ), $num_comm [ 'approved' ] );
$spam_comments = sprintf ( __ ( '%1$s spam' ), $num_comm [ 'spam' ] );
$moderated_comments = sprintf ( __ ( '%1$s awaiting moderation' ), $num_comm [ 'awaiting_moderation' ] );
if ( current_user_can ( 'moderate_comments' ) ) {
$total_comments = " <a href='edit-comments.php'> { $total_comments } </a> " ;
$approved_comments = " <a href='edit-comments.php?comment_status=approved'> { $approved_comments } </a> " ;
$moderated_comments = " <a href='edit-comments.php?comment_status=moderated'> { $moderated_comments } </a> " ;
}
$comm_text = sprintf ( __ ( 'Current comment break down: %1$s, %2$s, %3$s and %4$s.' ), $total_comments , $approved_comments , $spam_comments , $moderated_comments );
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
2008-06-20 16:33:52 +02:00
$sentence = sprintf ( __ ( 'You have %1$s, contained within %2$s and %3$s. %4$s %5$s' ), $post_type_text , $cats_text , $tags_text , $pending_text , $comm_text );
$sentence = apply_filters ( 'dashboard_count_sentence' , $sentence , $post_type_text , $cats_text , $tags_text , $pending_text , $comm_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 ();
2008-06-20 19:08:31 +02:00
$num_widgets = array_reduce ( $sidebars_widgets , create_function ( '$prev, $curr' , 'return $prev+count($curr);' ), 0 );
2007-12-20 23:36:00 +01:00
$widgets_text = sprintf ( __ngettext ( '%d widget' , '%d widgets' , $num_widgets ), $num_widgets );
2008-03-10 23:59:57 +01:00
if ( $can_switch_themes = current_user_can ( 'switch_themes' ) )
$widgets_text = " <a href='widgets.php'> $widgets_text </a> " ;
2007-12-20 21:23:30 +01:00
?>
2008-03-15 19:38:21 +01:00
< p class = " youare " >
2008-05-05 17:55:00 +02:00
< ? php printf ( __ ( 'You are using the %1$s theme with %2$s.' ), $ct -> title , $widgets_text ); ?>
2008-03-10 23:59:57 +01:00
< ? php if ( $can_switch_themes ) : ?>
< a href = " themes.php " class = " rbutton " >< ? php _e ( 'Change Theme' ); ?> </a>
< ? php endif ; ?>
2008-03-11 17:13:07 +01:00
< ? php update_right_now_message (); ?>
2008-03-10 23:59:57 +01:00
</ 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-03-10 06:47:07 +01:00
< div id = " dashboard-widgets-wrap " >
2008-02-02 08:57:51 +01:00
< ? php wp_dashboard (); ?>
2007-12-20 21:23:30 +01:00
2008-03-10 06:47:07 +01:00
</ div ><!-- dashboard - widgets - wrap -->
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' ); ?>