wp/wp-admin/includes/dashboard.php
changeset 5 5e2f62d02dcd
parent 0 d970ebf37754
child 7 cf61fcea0001
equal deleted inserted replaced
4:346c88efed21 5:5e2f62d02dcd
    15  */
    15  */
    16 function wp_dashboard_setup() {
    16 function wp_dashboard_setup() {
    17 	global $wp_registered_widgets, $wp_registered_widget_controls, $wp_dashboard_control_callbacks;
    17 	global $wp_registered_widgets, $wp_registered_widget_controls, $wp_dashboard_control_callbacks;
    18 	$wp_dashboard_control_callbacks = array();
    18 	$wp_dashboard_control_callbacks = array();
    19 	$screen = get_current_screen();
    19 	$screen = get_current_screen();
    20 
       
    21 	$update = false;
       
    22 	$widget_options = get_option( 'dashboard_widget_options' );
       
    23 	if ( !$widget_options || !is_array($widget_options) )
       
    24 		$widget_options = array();
       
    25 
    20 
    26 	/* Register Widgets and Controls */
    21 	/* Register Widgets and Controls */
    27 
    22 
    28 	$response = wp_check_browser_version();
    23 	$response = wp_check_browser_version();
    29 
    24 
    35 			wp_add_dashboard_widget( 'dashboard_browser_nag', __( 'Your browser is out of date!' ), 'wp_dashboard_browser_nag' );
    30 			wp_add_dashboard_widget( 'dashboard_browser_nag', __( 'Your browser is out of date!' ), 'wp_dashboard_browser_nag' );
    36 	}
    31 	}
    37 
    32 
    38 	// Right Now
    33 	// Right Now
    39 	if ( is_blog_admin() && current_user_can('edit_posts') )
    34 	if ( is_blog_admin() && current_user_can('edit_posts') )
    40 		wp_add_dashboard_widget( 'dashboard_right_now', __( 'Right Now' ), 'wp_dashboard_right_now' );
    35 		wp_add_dashboard_widget( 'dashboard_right_now', __( 'At a Glance' ), 'wp_dashboard_right_now' );
    41 
    36 
    42 	if ( is_network_admin() )
    37 	if ( is_network_admin() )
    43 		wp_add_dashboard_widget( 'network_dashboard_right_now', __( 'Right Now' ), 'wp_network_dashboard_right_now' );
    38 		wp_add_dashboard_widget( 'network_dashboard_right_now', __( 'Right Now' ), 'wp_network_dashboard_right_now' );
    44 
    39 
    45 	// Recent Comments Widget
    40 	// Activity Widget
    46 	if ( is_blog_admin() && current_user_can('moderate_comments') ) {
    41 	if ( is_blog_admin() ) {
    47 		if ( !isset( $widget_options['dashboard_recent_comments'] ) || !isset( $widget_options['dashboard_recent_comments']['items'] ) ) {
    42 		wp_add_dashboard_widget( 'dashboard_activity', __( 'Activity' ), 'wp_dashboard_site_activity' );
    48 			$update = true;
    43 	}
    49 			$widget_options['dashboard_recent_comments'] = array(
       
    50 				'items' => 5,
       
    51 			);
       
    52 		}
       
    53 		$recent_comments_title = __( 'Recent Comments' );
       
    54 		wp_add_dashboard_widget( 'dashboard_recent_comments', $recent_comments_title, 'wp_dashboard_recent_comments', 'wp_dashboard_recent_comments_control' );
       
    55 	}
       
    56 
       
    57 	// Incoming Links Widget
       
    58 	if ( is_blog_admin() && current_user_can('publish_posts') ) {
       
    59 		if ( !isset( $widget_options['dashboard_incoming_links'] ) || !isset( $widget_options['dashboard_incoming_links']['home'] ) || $widget_options['dashboard_incoming_links']['home'] != get_option('home') ) {
       
    60 			$update = true;
       
    61 			$num_items = isset($widget_options['dashboard_incoming_links']['items']) ? $widget_options['dashboard_incoming_links']['items'] : 10;
       
    62 			$widget_options['dashboard_incoming_links'] = array(
       
    63 				'home' => get_option('home'),
       
    64 				'link' => apply_filters( 'dashboard_incoming_links_link', 'http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:' . trailingslashit( get_option('home') ) ),
       
    65 				'url' => isset($widget_options['dashboard_incoming_links']['url']) ? apply_filters( 'dashboard_incoming_links_feed', $widget_options['dashboard_incoming_links']['url'] ) : apply_filters( 'dashboard_incoming_links_feed', 'http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=' . $num_items . '&output=rss&partner=wordpress&q=link:' . trailingslashit( get_option('home') ) ),
       
    66 				'items' => $num_items,
       
    67 				'show_date' => isset($widget_options['dashboard_incoming_links']['show_date']) ? $widget_options['dashboard_incoming_links']['show_date'] : false
       
    68 			);
       
    69 		}
       
    70 		wp_add_dashboard_widget( 'dashboard_incoming_links', __( 'Incoming Links' ), 'wp_dashboard_incoming_links', 'wp_dashboard_incoming_links_control' );
       
    71 	}
       
    72 
       
    73 	// WP Plugins Widget
       
    74 	if ( ( ! is_multisite() && is_blog_admin() && current_user_can( 'install_plugins' ) ) || ( is_network_admin() && current_user_can( 'manage_network_plugins' ) && current_user_can( 'install_plugins' ) ) )
       
    75 		wp_add_dashboard_widget( 'dashboard_plugins', __( 'Plugins' ), 'wp_dashboard_plugins' );
       
    76 
    44 
    77 	// QuickPress Widget
    45 	// QuickPress Widget
    78 	if ( is_blog_admin() && current_user_can('edit_posts') )
    46 	if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) {
    79 		wp_add_dashboard_widget( 'dashboard_quick_press', __( 'QuickPress' ), 'wp_dashboard_quick_press' );
    47 		$quick_draft_title = sprintf( '<span class="hide-if-no-js">%1$s</span> <span class="hide-if-js">%2$s</span>', __( 'Quick Draft' ), __( 'Drafts' ) );
    80 
    48 		wp_add_dashboard_widget( 'dashboard_quick_press', $quick_draft_title, 'wp_dashboard_quick_press' );
    81 	// Recent Drafts
    49 	}
    82 	if ( is_blog_admin() && current_user_can('edit_posts') )
    50 
    83 		wp_add_dashboard_widget( 'dashboard_recent_drafts', __('Recent Drafts'), 'wp_dashboard_recent_drafts' );
    51 	// WordPress News
    84 
    52 	wp_add_dashboard_widget( 'dashboard_primary', __( 'WordPress News' ), 'wp_dashboard_primary' );
    85 	// Primary feed (Dev Blog) Widget
    53 
    86 	if ( !isset( $widget_options['dashboard_primary'] ) ) {
       
    87 		$update = true;
       
    88 		$widget_options['dashboard_primary'] = array(
       
    89 			'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ),
       
    90 			'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ),
       
    91 			'title' => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ),
       
    92 			'items' => 2,
       
    93 			'show_summary' => 1,
       
    94 			'show_author' => 0,
       
    95 			'show_date' => 1,
       
    96 		);
       
    97 	}
       
    98 	wp_add_dashboard_widget( 'dashboard_primary', $widget_options['dashboard_primary']['title'], 'wp_dashboard_primary', 'wp_dashboard_primary_control' );
       
    99 
       
   100 	// Secondary Feed (Planet) Widget
       
   101 	if ( !isset( $widget_options['dashboard_secondary'] ) ) {
       
   102 		$update = true;
       
   103 		$widget_options['dashboard_secondary'] = array(
       
   104 			'link' => apply_filters( 'dashboard_secondary_link', __( 'http://planet.wordpress.org/' ) ),
       
   105 			'url' => apply_filters( 'dashboard_secondary_feed', __( 'http://planet.wordpress.org/feed/' ) ),
       
   106 			'title' => apply_filters( 'dashboard_secondary_title', __( 'Other WordPress News' ) ),
       
   107 			'items' => 5,
       
   108 			'show_summary' => 0,
       
   109 			'show_author' => 0,
       
   110 			'show_date' => 0,
       
   111 		);
       
   112 	}
       
   113 	wp_add_dashboard_widget( 'dashboard_secondary', $widget_options['dashboard_secondary']['title'], 'wp_dashboard_secondary', 'wp_dashboard_secondary_control' );
       
   114 
       
   115 	// Hook to register new widgets
       
   116 	// Filter widget order
       
   117 	if ( is_network_admin() ) {
    54 	if ( is_network_admin() ) {
       
    55 
       
    56 		/**
       
    57 		 * Fires after core widgets for the Network Admin dashboard have been registered.
       
    58 		 *
       
    59 		 * @since 3.1.0
       
    60 		 */
   118 		do_action( 'wp_network_dashboard_setup' );
    61 		do_action( 'wp_network_dashboard_setup' );
       
    62 
       
    63 		/**
       
    64 		 * Filter the list of widgets to load for the Network Admin dashboard.
       
    65 		 *
       
    66 		 * @since 3.1.0
       
    67 		 *
       
    68 		 * @param array $dashboard_widgets An array of dashboard widgets.
       
    69 		 */
   119 		$dashboard_widgets = apply_filters( 'wp_network_dashboard_widgets', array() );
    70 		$dashboard_widgets = apply_filters( 'wp_network_dashboard_widgets', array() );
   120 	} elseif ( is_user_admin() ) {
    71 	} elseif ( is_user_admin() ) {
       
    72 
       
    73 		/**
       
    74 		 * Fires after core widgets for the User Admin dashboard have been registered.
       
    75 		 *
       
    76 		 * @since 3.1.0
       
    77 		 */
   121 		do_action( 'wp_user_dashboard_setup' );
    78 		do_action( 'wp_user_dashboard_setup' );
       
    79 
       
    80 		/**
       
    81 		 * Filter the list of widgets to load for the User Admin dashboard.
       
    82 		 *
       
    83 		 * @since 3.1.0
       
    84 		 *
       
    85 		 * @param array $dashboard_widgets An array of dashboard widgets.
       
    86 		 */
   122 		$dashboard_widgets = apply_filters( 'wp_user_dashboard_widgets', array() );
    87 		$dashboard_widgets = apply_filters( 'wp_user_dashboard_widgets', array() );
   123 	} else {
    88 	} else {
       
    89 
       
    90 		/**
       
    91 		 * Fires after core widgets for the admin dashboard have been registered.
       
    92 		 *
       
    93 		 * @since 2.5.0
       
    94 		 */
   124 		do_action( 'wp_dashboard_setup' );
    95 		do_action( 'wp_dashboard_setup' );
       
    96 
       
    97 		/**
       
    98 		 * Filter the list of widgets to load for the admin dashboard.
       
    99 		 *
       
   100 		 * @since 2.5.0
       
   101 		 *
       
   102 		 * @param array $dashboard_widgets An array of dashboard widgets.
       
   103 		 */
   125 		$dashboard_widgets = apply_filters( 'wp_dashboard_widgets', array() );
   104 		$dashboard_widgets = apply_filters( 'wp_dashboard_widgets', array() );
   126 	}
   105 	}
   127 
   106 
   128 	foreach ( $dashboard_widgets as $widget_id ) {
   107 	foreach ( $dashboard_widgets as $widget_id ) {
   129 		$name = empty( $wp_registered_widgets[$widget_id]['all_link'] ) ? $wp_registered_widgets[$widget_id]['name'] : $wp_registered_widgets[$widget_id]['name'] . " <a href='{$wp_registered_widgets[$widget_id]['all_link']}' class='edit-box open-box'>" . __('View all') . '</a>';
   108 		$name = empty( $wp_registered_widgets[$widget_id]['all_link'] ) ? $wp_registered_widgets[$widget_id]['name'] : $wp_registered_widgets[$widget_id]['name'] . " <a href='{$wp_registered_widgets[$widget_id]['all_link']}' class='edit-box open-box'>" . __('View all') . '</a>';
   137 		ob_end_clean();
   116 		ob_end_clean();
   138 		wp_redirect( remove_query_arg( 'edit' ) );
   117 		wp_redirect( remove_query_arg( 'edit' ) );
   139 		exit;
   118 		exit;
   140 	}
   119 	}
   141 
   120 
   142 	if ( $update )
       
   143 		update_option( 'dashboard_widget_options', $widget_options );
       
   144 
       
   145 	/** This action is documented in wp-admin/edit-form-advanced.php */
   121 	/** This action is documented in wp-admin/edit-form-advanced.php */
   146 	do_action('do_meta_boxes', $screen->id, 'normal', '');
   122 	do_action( 'do_meta_boxes', $screen->id, 'normal', '' );
       
   123 
   147 	/** This action is documented in wp-admin/edit-form-advanced.php */
   124 	/** This action is documented in wp-admin/edit-form-advanced.php */
   148 	do_action('do_meta_boxes', $screen->id, 'side', '');
   125 	do_action( 'do_meta_boxes', $screen->id, 'side', '' );
   149 }
   126 }
   150 
   127 
   151 function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null, $callback_args = null ) {
   128 function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null, $callback_args = null ) {
   152 	$screen = get_current_screen();
   129 	$screen = get_current_screen();
   153 	global $wp_dashboard_control_callbacks;
   130 	global $wp_dashboard_control_callbacks;
   162 			list($url) = explode( '#', add_query_arg( 'edit', $widget_id ), 2 );
   139 			list($url) = explode( '#', add_query_arg( 'edit', $widget_id ), 2 );
   163 			$widget_name .= ' <span class="postbox-title-action"><a href="' . esc_url( "$url#$widget_id" ) . '" class="edit-box open-box">' . __( 'Configure' ) . '</a></span>';
   140 			$widget_name .= ' <span class="postbox-title-action"><a href="' . esc_url( "$url#$widget_id" ) . '" class="edit-box open-box">' . __( 'Configure' ) . '</a></span>';
   164 		}
   141 		}
   165 	}
   142 	}
   166 
   143 
   167 	if ( is_blog_admin () )
   144 	$side_widgets = array( 'dashboard_quick_press', 'dashboard_primary' );
   168 		$side_widgets = array('dashboard_quick_press', 'dashboard_recent_drafts', 'dashboard_primary', 'dashboard_secondary');
       
   169 	else if (is_network_admin() )
       
   170 		$side_widgets = array('dashboard_primary', 'dashboard_secondary');
       
   171 	else
       
   172 		$side_widgets = array();
       
   173 
   145 
   174 	$location = 'normal';
   146 	$location = 'normal';
   175 	if ( in_array($widget_id, $side_widgets) )
   147 	if ( in_array($widget_id, $side_widgets) )
   176 		$location = 'side';
   148 		$location = 'side';
   177 
   149 
   181 
   153 
   182 	add_meta_box( $widget_id, $widget_name, $callback, $screen, $location, $priority, $callback_args );
   154 	add_meta_box( $widget_id, $widget_name, $callback, $screen, $location, $priority, $callback_args );
   183 }
   155 }
   184 
   156 
   185 function _wp_dashboard_control_callback( $dashboard, $meta_box ) {
   157 function _wp_dashboard_control_callback( $dashboard, $meta_box ) {
   186 	echo '<form action="" method="post" class="dashboard-widget-control-form">';
   158 	echo '<form method="post" class="dashboard-widget-control-form">';
   187 	wp_dashboard_trigger_widget_control( $meta_box['id'] );
   159 	wp_dashboard_trigger_widget_control( $meta_box['id'] );
   188 	wp_nonce_field( 'edit-dashboard-widget_' . $meta_box['id'], 'dashboard-widget-nonce' );
   160 	wp_nonce_field( 'edit-dashboard-widget_' . $meta_box['id'], 'dashboard-widget-nonce' );
   189 	echo '<input type="hidden" name="widget_id" value="' . esc_attr($meta_box['id']) . '" />';
   161 	echo '<input type="hidden" name="widget_id" value="' . esc_attr($meta_box['id']) . '" />';
   190 	submit_button( __('Submit') );
   162 	submit_button( __('Submit') );
   191 	echo '</form>';
   163 	echo '</form>';
   196  *
   168  *
   197  * @since 2.5.0
   169  * @since 2.5.0
   198  */
   170  */
   199 function wp_dashboard() {
   171 function wp_dashboard() {
   200 	$screen = get_current_screen();
   172 	$screen = get_current_screen();
   201 	$class = 'columns-' . get_current_screen()->get_columns();
   173 	$columns = absint( $screen->get_columns() );
       
   174 	$columns_css = '';
       
   175 	if ( $columns ) {
       
   176 		$columns_css = " columns-$columns";
       
   177 	}
   202 
   178 
   203 ?>
   179 ?>
   204 <div id="dashboard-widgets" class="metabox-holder <?php echo $class; ?>">
   180 <div id="dashboard-widgets" class="metabox-holder<?php echo $columns_css; ?>">
   205 	<div id='postbox-container-1' class='postbox-container'>
   181 	<div id="postbox-container-1" class="postbox-container">
   206 	<?php do_meta_boxes( $screen->id, 'normal', '' ); ?>
   182 	<?php do_meta_boxes( $screen->id, 'normal', '' ); ?>
   207 	</div>
   183 	</div>
   208 	<div id='postbox-container-2' class='postbox-container'>
   184 	<div id="postbox-container-2" class="postbox-container">
   209 	<?php do_meta_boxes( $screen->id, 'side', '' ); ?>
   185 	<?php do_meta_boxes( $screen->id, 'side', '' ); ?>
   210 	</div>
   186 	</div>
   211 	<div id='postbox-container-3' class='postbox-container'>
   187 	<div id="postbox-container-3" class="postbox-container">
   212 	<?php do_meta_boxes( $screen->id, 'column3', '' ); ?>
   188 	<?php do_meta_boxes( $screen->id, 'column3', '' ); ?>
   213 	</div>
   189 	</div>
   214 	<div id='postbox-container-4' class='postbox-container'>
   190 	<div id="postbox-container-4" class="postbox-container">
   215 	<?php do_meta_boxes( $screen->id, 'column4', '' ); ?>
   191 	<?php do_meta_boxes( $screen->id, 'column4', '' ); ?>
   216 	</div>
   192 	</div>
   217 </div>
   193 </div>
   218 
   194 
   219 <?php
   195 <?php
   220 	wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
   196 	wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
   221 	wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
   197 	wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
   222 
   198 
   223 }
   199 }
   224 
   200 
   225 /* Dashboard Widgets */
   201 //
   226 
   202 // Dashboard Widgets
       
   203 //
       
   204 
       
   205 /**
       
   206  * Dashboard widget that displays some basic stats about the site.
       
   207  *
       
   208  * Formerly 'Right Now'. A streamlined 'At a Glance' as of 3.8.
       
   209  *
       
   210  * @since 2.7.0
       
   211  */
   227 function wp_dashboard_right_now() {
   212 function wp_dashboard_right_now() {
   228 	global $wp_registered_sidebars;
   213 ?>
   229 
   214 	<div class="main">
   230 	$num_posts = wp_count_posts( 'post' );
   215 	<ul>
   231 	$num_pages = wp_count_posts( 'page' );
   216 	<?php
   232 
   217 	// Posts and Pages
   233 	$num_cats  = wp_count_terms('category');
   218 	foreach ( array( 'post', 'page' ) as $post_type ) {
   234 
   219 		$num_posts = wp_count_posts( $post_type );
   235 	$num_tags = wp_count_terms('post_tag');
   220 		if ( $num_posts && $num_posts->publish ) {
   236 
   221 			if ( 'post' == $post_type ) {
       
   222 				$text = _n( '%s Post', '%s Posts', $num_posts->publish );
       
   223 			} else {
       
   224 				$text = _n( '%s Page', '%s Pages', $num_posts->publish );
       
   225 			}
       
   226 			$text = sprintf( $text, number_format_i18n( $num_posts->publish ) );
       
   227 			$post_type_object = get_post_type_object( $post_type );
       
   228 			if ( $post_type_object && current_user_can( $post_type_object->cap->edit_posts ) ) {
       
   229 				printf( '<li class="%1$s-count"><a href="edit.php?post_type=%1$s">%2$s</a></li>', $post_type, $text );
       
   230 			} else {
       
   231 				printf( '<li class="%1$s-count"><span>%2$s</span></li>', $post_type, $text );
       
   232 			}
       
   233 
       
   234 		}
       
   235 	}
       
   236 	// Comments
   237 	$num_comm = wp_count_comments();
   237 	$num_comm = wp_count_comments();
   238 
   238 	if ( $num_comm && $num_comm->approved ) {
   239 	echo "\n\t".'<div class="table table_content">';
   239 		$text = sprintf( _n( '%s Comment', '%s Comments', $num_comm->approved ), number_format_i18n( $num_comm->approved ) );
   240 	echo "\n\t".'<p class="sub">' . __('Content') . '</p>'."\n\t".'<table>';
   240 		?>
   241 	echo "\n\t".'<tr class="first">';
   241 		<li class="comment-count"><a href="edit-comments.php"><?php echo $text; ?></a></li>
   242 
   242 		<?php
   243 	// Posts
   243 		if ( $num_comm->moderated ) {
   244 	$num = number_format_i18n( $num_posts->publish );
   244 			/* translators: Number of comments in moderation */
   245 	$text = _n( 'Post', 'Posts', intval($num_posts->publish) );
   245 			$text = sprintf( _nx( '%s in moderation', '%s in moderation', $num_comm->moderated, 'comments' ), number_format_i18n( $num_comm->moderated ) );
   246 	if ( current_user_can( 'edit_posts' ) ) {
   246 			?>
   247 		$num = "<a href='edit.php'>$num</a>";
   247 			<li class="comment-mod-count"><a href="edit-comments.php?comment_status=moderated"><?php echo $text; ?></a></li>
   248 		$text = "<a href='edit.php'>$text</a>";
   248 			<?php
   249 	}
       
   250 	echo '<td class="first b b-posts">' . $num . '</td>';
       
   251 	echo '<td class="t posts">' . $text . '</td>';
       
   252 
       
   253 	echo '</tr><tr>';
       
   254 	/* TODO: Show status breakdown on hover
       
   255 	if ( $can_edit_pages && !empty($num_pages->publish) ) { // how many pages is not exposed in feeds. Don't show if !current_user_can
       
   256 		$post_type_texts[] = '<a href="edit-pages.php">'.sprintf( _n( '%s page', '%s pages', $num_pages->publish ), number_format_i18n( $num_pages->publish ) ).'</a>';
       
   257 	}
       
   258 	if ( $can_edit_posts && !empty($num_posts->draft) ) {
       
   259 		$post_type_texts[] = '<a href="edit.php?post_status=draft">'.sprintf( _n( '%s draft', '%s drafts', $num_posts->draft ), number_format_i18n( $num_posts->draft ) ).'</a>';
       
   260 	}
       
   261 	if ( $can_edit_posts && !empty($num_posts->future) ) {
       
   262 		$post_type_texts[] = '<a href="edit.php?post_status=future">'.sprintf( _n( '%s scheduled post', '%s scheduled posts', $num_posts->future ), number_format_i18n( $num_posts->future ) ).'</a>';
       
   263 	}
       
   264 	if ( current_user_can('publish_posts') && !empty($num_posts->pending) ) {
       
   265 		$pending_text = sprintf( _n( '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 ) );
       
   266 	} else {
       
   267 		$pending_text = '';
       
   268 	}
       
   269 	*/
       
   270 
       
   271 	// Pages
       
   272 	$num = number_format_i18n( $num_pages->publish );
       
   273 	$text = _n( 'Page', 'Pages', $num_pages->publish );
       
   274 	if ( current_user_can( 'edit_pages' ) ) {
       
   275 		$num = "<a href='edit.php?post_type=page'>$num</a>";
       
   276 		$text = "<a href='edit.php?post_type=page'>$text</a>";
       
   277 	}
       
   278 	echo '<td class="first b b_pages">' . $num . '</td>';
       
   279 	echo '<td class="t pages">' . $text . '</td>';
       
   280 
       
   281 	echo '</tr><tr>';
       
   282 
       
   283 	// Categories
       
   284 	$num = number_format_i18n( $num_cats );
       
   285 	$text = _n( 'Category', 'Categories', $num_cats );
       
   286 	if ( current_user_can( 'manage_categories' ) ) {
       
   287 		$num = "<a href='edit-tags.php?taxonomy=category'>$num</a>";
       
   288 		$text = "<a href='edit-tags.php?taxonomy=category'>$text</a>";
       
   289 	}
       
   290 	echo '<td class="first b b-cats">' . $num . '</td>';
       
   291 	echo '<td class="t cats">' . $text . '</td>';
       
   292 
       
   293 	echo '</tr><tr>';
       
   294 
       
   295 	// Tags
       
   296 	$num = number_format_i18n( $num_tags );
       
   297 	$text = _n( 'Tag', 'Tags', $num_tags );
       
   298 	if ( current_user_can( 'manage_categories' ) ) {
       
   299 		$num = "<a href='edit-tags.php'>$num</a>";
       
   300 		$text = "<a href='edit-tags.php'>$text</a>";
       
   301 	}
       
   302 	echo '<td class="first b b-tags">' . $num . '</td>';
       
   303 	echo '<td class="t tags">' . $text . '</td>';
       
   304 
       
   305 	echo "</tr>";
       
   306 	do_action('right_now_content_table_end');
       
   307 	echo "\n\t</table>\n\t</div>";
       
   308 
       
   309 	echo "\n\t".'<div class="table table_discussion">';
       
   310 	echo "\n\t".'<p class="sub">' . __('Discussion') . '</p>'."\n\t".'<table>';
       
   311 	echo "\n\t".'<tr class="first">';
       
   312 
       
   313 	// Total Comments
       
   314 	$num = '<span class="total-count">' . number_format_i18n($num_comm->total_comments) . '</span>';
       
   315 	$text = _n( 'Comment', 'Comments', $num_comm->total_comments );
       
   316 	if ( current_user_can( 'moderate_comments' ) ) {
       
   317 		$num = '<a href="edit-comments.php">' . $num . '</a>';
       
   318 		$text = '<a href="edit-comments.php">' . $text . '</a>';
       
   319 	}
       
   320 	echo '<td class="b b-comments">' . $num . '</td>';
       
   321 	echo '<td class="last t comments">' . $text . '</td>';
       
   322 
       
   323 	echo '</tr><tr>';
       
   324 
       
   325 	// Approved Comments
       
   326 	$num = '<span class="approved-count">' . number_format_i18n($num_comm->approved) . '</span>';
       
   327 	$text = _nx( 'Approved', 'Approved', $num_comm->approved, 'Right Now' );
       
   328 	if ( current_user_can( 'moderate_comments' ) ) {
       
   329 		$num = "<a href='edit-comments.php?comment_status=approved'>$num</a>";
       
   330 		$text = "<a class='approved' href='edit-comments.php?comment_status=approved'>$text</a>";
       
   331 	}
       
   332 	echo '<td class="b b_approved">' . $num . '</td>';
       
   333 	echo '<td class="last t">' . $text . '</td>';
       
   334 
       
   335 	echo "</tr>\n\t<tr>";
       
   336 
       
   337 	// Pending Comments
       
   338 	$num = '<span class="pending-count">' . number_format_i18n($num_comm->moderated) . '</span>';
       
   339 	$text = _n( 'Pending', 'Pending', $num_comm->moderated );
       
   340 	if ( current_user_can( 'moderate_comments' ) ) {
       
   341 		$num = "<a href='edit-comments.php?comment_status=moderated'>$num</a>";
       
   342 		$text = "<a class='waiting' href='edit-comments.php?comment_status=moderated'>$text</a>";
       
   343 	}
       
   344 	echo '<td class="b b-waiting">' . $num . '</td>';
       
   345 	echo '<td class="last t">' . $text . '</td>';
       
   346 
       
   347 	echo "</tr>\n\t<tr>";
       
   348 
       
   349 	// Spam Comments
       
   350 	$num = number_format_i18n($num_comm->spam);
       
   351 	$text = _nx( 'Spam', 'Spam', $num_comm->spam, 'comment' );
       
   352 	if ( current_user_can( 'moderate_comments' ) ) {
       
   353 		$num = "<a href='edit-comments.php?comment_status=spam'><span class='spam-count'>$num</span></a>";
       
   354 		$text = "<a class='spam' href='edit-comments.php?comment_status=spam'>$text</a>";
       
   355 	}
       
   356 	echo '<td class="b b-spam">' . $num . '</td>';
       
   357 	echo '<td class="last t">' . $text . '</td>';
       
   358 
       
   359 	echo "</tr>";
       
   360 	do_action('right_now_table_end');
       
   361 	do_action('right_now_discussion_table_end');
       
   362 	echo "\n\t</table>\n\t</div>";
       
   363 
       
   364 	echo "\n\t".'<div class="versions">';
       
   365 	$theme = wp_get_theme();
       
   366 
       
   367 	echo "\n\t<p>";
       
   368 
       
   369 	if ( $theme->errors() ) {
       
   370 		if ( ! is_multisite() || is_super_admin() )
       
   371 			echo '<span class="error-message">' . sprintf( __( 'ERROR: %s' ), $theme->errors()->get_error_message() ) . '</span>';
       
   372 	} elseif ( ! empty($wp_registered_sidebars) ) {
       
   373 		$sidebars_widgets = wp_get_sidebars_widgets();
       
   374 		$num_widgets = 0;
       
   375 		foreach ( (array) $sidebars_widgets as $k => $v ) {
       
   376 			if ( 'wp_inactive_widgets' == $k || 'orphaned_widgets' == substr( $k, 0, 16 ) )
       
   377 				continue;
       
   378 			if ( is_array($v) )
       
   379 				$num_widgets = $num_widgets + count($v);
       
   380 		}
   249 		}
   381 		$num = number_format_i18n( $num_widgets );
   250 	}
   382 
   251 
   383 		$switch_themes = $theme->display('Name');
   252 	/**
   384 		if ( current_user_can( 'switch_themes') )
   253 	 * Filter the array of extra elements to list in the 'At a Glance'
   385 			$switch_themes = '<a href="themes.php">' . $switch_themes . '</a>';
   254 	 * dashboard widget.
   386 		if ( current_user_can( 'edit_theme_options' ) ) {
   255 	 *
   387 			printf(_n('Theme <span class="b">%1$s</span> with <span class="b"><a href="widgets.php">%2$s Widget</a></span>', 'Theme <span class="b">%1$s</span> with <span class="b"><a href="widgets.php">%2$s Widgets</a></span>', $num_widgets), $switch_themes, $num);
   256 	 * Prior to 3.8.0, the widget was named 'Right Now'. Each element
   388 		} else {
   257 	 * is wrapped in list-item tags on output.
   389 			printf(_n('Theme <span class="b">%1$s</span> with <span class="b">%2$s Widget</span>', 'Theme <span class="b">%1$s</span> with <span class="b">%2$s Widgets</span>', $num_widgets), $switch_themes, $num);
   258 	 *
   390 		}
   259 	 * @since 3.8.0
   391 	} else {
   260 	 *
   392 		if ( current_user_can( 'switch_themes' ) )
   261 	 * @param array $items Array of extra 'At a Glance' widget items.
   393 			printf( __('Theme <span class="b"><a href="themes.php">%1$s</a></span>'), $theme->display('Name') );
   262 	 */
   394 		else
   263 	$elements = apply_filters( 'dashboard_glance_items', array() );
   395 			printf( __('Theme <span class="b">%1$s</span>'), $theme->display('Name') );
   264 
   396 	}
   265 	if ( $elements ) {
   397 	echo '</p>';
   266 		echo '<li>' . implode( "</li>\n<li>", $elements ) . "</li>\n";
       
   267 	}
       
   268 
       
   269 	?>
       
   270 	</ul>
       
   271 	<?php
       
   272 	update_right_now_message();
   398 
   273 
   399 	// Check if search engines are asked not to index this site.
   274 	// Check if search engines are asked not to index this site.
   400 	if ( !is_network_admin() && !is_user_admin() && current_user_can('manage_options') && '1' != get_option('blog_public') ) {
   275 	if ( ! is_network_admin() && ! is_user_admin() && current_user_can( 'manage_options' ) && '1' != get_option( 'blog_public' ) ) {
   401 		$title = apply_filters('privacy_on_link_title', __('Your site is asking search engines not to index its content') );
   276 
   402 		$content = apply_filters('privacy_on_link_text', __('Search Engines Discouraged') );
   277 		/**
       
   278 		 * Filter the link title attribute for the 'Search Engines Discouraged'
       
   279 		 * message displayed in the 'At a Glance' dashboard widget.
       
   280 		 *
       
   281 		 * Prior to 3.8.0, the widget was named 'Right Now'.
       
   282 		 *
       
   283 		 * @since 3.0.0
       
   284 		 *
       
   285 		 * @param string $title Default attribute text.
       
   286 		 */
       
   287 		$title = apply_filters( 'privacy_on_link_title', __( 'Your site is asking search engines not to index its content' ) );
       
   288 
       
   289 		/**
       
   290 		 * Filter the link label for the 'Search Engines Discouraged' message
       
   291 		 * displayed in the 'At a Glance' dashboard widget.
       
   292 		 *
       
   293 		 * Prior to 3.8.0, the widget was named 'Right Now'.
       
   294 		 *
       
   295 		 * @since 3.0.0
       
   296 		 *
       
   297 		 * @param string $content Default text.
       
   298 		 */
       
   299 		$content = apply_filters( 'privacy_on_link_text' , __( 'Search Engines Discouraged' ) );
   403 
   300 
   404 		echo "<p><a href='options-reading.php' title='$title'>$content</a></p>";
   301 		echo "<p><a href='options-reading.php' title='$title'>$content</a></p>";
   405 	}
   302 	}
   406 
   303 	?>
   407 	update_right_now_message();
   304 	</div>
   408 
   305 	<?php
   409 	echo "\n\t".'<br class="clear" /></div>';
   306 	/*
       
   307 	 * activity_box_end has a core action, but only prints content when multisite.
       
   308 	 * Using an output buffer is the only way to really check if anything's displayed here.
       
   309 	 */
       
   310 	ob_start();
       
   311 
       
   312 	/**
       
   313 	 * Fires at the end of the 'At a Glance' dashboard widget.
       
   314 	 *
       
   315 	 * Prior to 3.8.0, the widget was named 'Right Now'.
       
   316 	 *
       
   317 	 * @since 2.5.0
       
   318 	 */
   410 	do_action( 'rightnow_end' );
   319 	do_action( 'rightnow_end' );
       
   320 
       
   321 	/**
       
   322 	 * Fires at the end of the 'At a Glance' dashboard widget.
       
   323 	 *
       
   324 	 * Prior to 3.8.0, the widget was named 'Right Now'.
       
   325 	 *
       
   326 	 * @since 2.0.0
       
   327 	 */
   411 	do_action( 'activity_box_end' );
   328 	do_action( 'activity_box_end' );
       
   329 
       
   330 	$actions = ob_get_clean();
       
   331 
       
   332 	if ( !empty( $actions ) ) : ?>
       
   333 	<div class="sub">
       
   334 		<?php echo $actions; ?>
       
   335 	</div>
       
   336 	<?php endif;
   412 }
   337 }
   413 
   338 
   414 function wp_network_dashboard_right_now() {
   339 function wp_network_dashboard_right_now() {
   415 	$actions = array();
   340 	$actions = array();
   416 	if ( current_user_can('create_sites') )
   341 	if ( current_user_can('create_sites') )
   436 	}
   361 	}
   437 ?>
   362 ?>
   438 	<br class="clear" />
   363 	<br class="clear" />
   439 
   364 
   440 	<p class="youhave"><?php echo $sentence; ?></p>
   365 	<p class="youhave"><?php echo $sentence; ?></p>
   441 	<?php do_action( 'wpmuadminresult', '' ); ?>
   366 
       
   367 
       
   368 	<?php
       
   369 		/**
       
   370 		 * Fires in the Network Admin 'Right Now' dashboard widget
       
   371 		 * just before the user and site search form fields.
       
   372 		 *
       
   373 		 * @since MU
       
   374 		 *
       
   375 		 * @param null $unused
       
   376 		 */
       
   377 		do_action( 'wpmuadminresult', '' );
       
   378 	?>
   442 
   379 
   443 	<form action="<?php echo network_admin_url('users.php'); ?>" method="get">
   380 	<form action="<?php echo network_admin_url('users.php'); ?>" method="get">
   444 		<p>
   381 		<p>
   445 			<input type="search" name="s" value="" size="30" autocomplete="off" />
   382 			<label class="screen-reader-text" for="search-users"><?php _e( 'Search Users' ); ?></label>
       
   383 			<input type="search" name="s" value="" size="30" autocomplete="off" id="search-users"/>
   446 			<?php submit_button( __( 'Search Users' ), 'button', 'submit', false, array( 'id' => 'submit_users' ) ); ?>
   384 			<?php submit_button( __( 'Search Users' ), 'button', 'submit', false, array( 'id' => 'submit_users' ) ); ?>
   447 		</p>
   385 		</p>
   448 	</form>
   386 	</form>
   449 
   387 
   450 	<form action="<?php echo network_admin_url('sites.php'); ?>" method="get">
   388 	<form action="<?php echo network_admin_url('sites.php'); ?>" method="get">
   451 		<p>
   389 		<p>
   452 			<input type="search" name="s" value="" size="30" autocomplete="off" />
   390 			<label class="screen-reader-text" for="search-sites"><?php _e( 'Search Sites' ); ?></label>
       
   391 			<input type="search" name="s" value="" size="30" autocomplete="off" id="search-sites"/>
   453 			<?php submit_button( __( 'Search Sites' ), 'button', 'submit', false, array( 'id' => 'submit_sites' ) ); ?>
   392 			<?php submit_button( __( 'Search Sites' ), 'button', 'submit', false, array( 'id' => 'submit_sites' ) ); ?>
   454 		</p>
   393 		</p>
   455 	</form>
   394 	</form>
   456 <?php
   395 <?php
       
   396 	/**
       
   397 	 * Fires at the end of the 'Right Now' widget in the Network Admin dashboard.
       
   398 	 *
       
   399 	 * @since MU
       
   400 	 */
   457 	do_action( 'mu_rightnow_end' );
   401 	do_action( 'mu_rightnow_end' );
       
   402 
       
   403 	/**
       
   404 	 * Fires at the end of the 'Right Now' widget in the Network Admin dashboard.
       
   405 	 *
       
   406 	 * @since MU
       
   407 	 */
   458 	do_action( 'mu_activity_box_end' );
   408 	do_action( 'mu_activity_box_end' );
   459 }
   409 }
   460 
   410 
   461 function wp_dashboard_quick_press() {
   411 /**
       
   412  * The Quick Draft widget display and creation of drafts.
       
   413  *
       
   414  * @since 3.8.0
       
   415  *
       
   416  * @param string $error_msg Optional. Error message. Default false.
       
   417  */
       
   418 function wp_dashboard_quick_press( $error_msg = false ) {
   462 	global $post_ID;
   419 	global $post_ID;
   463 
       
   464 	$drafts = false;
       
   465 	if ( 'post' === strtolower( $_SERVER['REQUEST_METHOD'] ) && isset( $_POST['action'] ) && 0 === strpos( $_POST['action'], 'post-quickpress' ) && (int) $_POST['post_ID'] ) {
       
   466 		$view = get_permalink( $_POST['post_ID'] );
       
   467 		$edit = esc_url( get_edit_post_link( $_POST['post_ID'] ) );
       
   468 		if ( 'post-quickpress-publish' == $_POST['action'] ) {
       
   469 			if ( current_user_can('publish_posts') )
       
   470 				printf( '<div class="updated"><p>' . __( 'Post published. <a href="%s">View post</a> | <a href="%s">Edit post</a>' ) . '</p></div>', esc_url( $view ), $edit );
       
   471 			else
       
   472 				printf( '<div class="updated"><p>' . __( 'Post submitted. <a href="%s">Preview post</a> | <a href="%s">Edit post</a>' ) . '</p></div>', esc_url( add_query_arg( 'preview', 1, $view ) ), $edit );
       
   473 		} else {
       
   474 			printf( '<div class="updated"><p>' . __( 'Draft saved. <a href="%s">Preview post</a> | <a href="%s">Edit post</a>' ) . '</p></div>', esc_url( add_query_arg( 'preview', 1, $view ) ), $edit );
       
   475 			$drafts_query = new WP_Query( array(
       
   476 				'post_type' => 'post',
       
   477 				'post_status' => 'draft',
       
   478 				'author' => $GLOBALS['current_user']->ID,
       
   479 				'posts_per_page' => 1,
       
   480 				'orderby' => 'modified',
       
   481 				'order' => 'DESC'
       
   482 			) );
       
   483 
       
   484 			if ( $drafts_query->posts )
       
   485 				$drafts =& $drafts_query->posts;
       
   486 		}
       
   487 		printf('<p class="easy-blogging">' . __('You can also try %s, easy blogging from anywhere on the Web.') . '</p>', '<a href="' . esc_url( admin_url( 'tools.php' ) ) . '">' . __('Press This') . '</a>' );
       
   488 		$_REQUEST = array(); // hack for get_default_post_to_edit()
       
   489 	}
       
   490 
   420 
   491 	/* Check if a new auto-draft (= no new post_ID) is needed or if the old can be used */
   421 	/* Check if a new auto-draft (= no new post_ID) is needed or if the old can be used */
   492 	$last_post_id = (int) get_user_option( 'dashboard_quick_press_last_post_id' ); // Get the last post_ID
   422 	$last_post_id = (int) get_user_option( 'dashboard_quick_press_last_post_id' ); // Get the last post_ID
   493 	if ( $last_post_id ) {
   423 	if ( $last_post_id ) {
   494 		$post = get_post( $last_post_id );
   424 		$post = get_post( $last_post_id );
   495 		if ( empty( $post ) || $post->post_status != 'auto-draft' ) { // auto-draft doesn't exists anymore
   425 		if ( empty( $post ) || $post->post_status != 'auto-draft' ) { // auto-draft doesn't exists anymore
   496 			$post = get_default_post_to_edit('post', true);
   426 			$post = get_default_post_to_edit( 'post', true );
   497 			update_user_option( get_current_user_id(), 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID
   427 			update_user_option( get_current_user_id(), 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID
   498 		} else {
   428 		} else {
   499 			$post->post_title = ''; // Remove the auto draft title
   429 			$post->post_title = ''; // Remove the auto draft title
   500 		}
   430 		}
   501 	} else {
   431 	} else {
   505 		if ( ! ( is_super_admin( $user_id ) && ! in_array( get_current_blog_id(), array_keys( get_blogs_of_user( $user_id ) ) ) ) )
   435 		if ( ! ( is_super_admin( $user_id ) && ! in_array( get_current_blog_id(), array_keys( get_blogs_of_user( $user_id ) ) ) ) )
   506 			update_user_option( $user_id, 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID
   436 			update_user_option( $user_id, 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID
   507 	}
   437 	}
   508 
   438 
   509 	$post_ID = (int) $post->ID;
   439 	$post_ID = (int) $post->ID;
   510 
       
   511 	$media_settings = array(
       
   512 		'id' => $post->ID,
       
   513 		'nonce' => wp_create_nonce( 'update-post_' . $post->ID ),
       
   514 	);
       
   515 
       
   516 	if ( current_theme_supports( 'post-thumbnails', $post->post_type ) && post_type_supports( $post->post_type, 'thumbnail' ) ) {
       
   517 		$featured_image_id = get_post_meta( $post->ID, '_thumbnail_id', true );
       
   518 		$media_settings['featuredImageId'] = $featured_image_id ? $featured_image_id : -1;
       
   519 	}
       
   520 ?>
   440 ?>
   521 
   441 
   522 	<form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press">
   442 	<form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press" class="initial-form hide-if-no-js">
       
   443 
       
   444 		<?php if ( $error_msg ) : ?>
       
   445 		<div class="error"><?php echo $error_msg; ?></div>
       
   446 		<?php endif; ?>
       
   447 
   523 		<div class="input-text-wrap" id="title-wrap">
   448 		<div class="input-text-wrap" id="title-wrap">
   524 			<label class="screen-reader-text prompt" for="title" id="title-prompt-text"><?php _e( 'Enter title here' ); ?></label>
   449 			<label class="screen-reader-text prompt" for="title" id="title-prompt-text">
   525 			<input type="text" name="post_title" id="title" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" />
   450 
       
   451 				<?php
       
   452 				/** This filter is documented in wp-admin/edit-form-advanced.php */
       
   453 				echo apply_filters( 'enter_title_here', __( 'Title' ), $post );
       
   454 				?>
       
   455 			</label>
       
   456 			<input type="text" name="post_title" id="title" autocomplete="off" />
   526 		</div>
   457 		</div>
   527 
   458 
   528 		<?php if ( current_user_can( 'upload_files' ) ) : ?>
   459 		<div class="textarea-wrap" id="description-wrap">
   529 		<div id="wp-content-wrap" class="wp-editor-wrap hide-if-no-js wp-media-buttons">
   460 			<label class="screen-reader-text prompt" for="content" id="content-prompt-text"><?php _e( 'What&#8217;s on your mind?' ); ?></label>
   530 			<?php do_action( 'media_buttons', 'content' ); ?>
   461 			<textarea name="content" id="content" class="mceEditor" rows="3" cols="15" autocomplete="off"></textarea>
   531 		</div>
   462 		</div>
   532 		<?php endif; ?>
       
   533 
       
   534 		<div class="textarea-wrap">
       
   535 			<label class="screen-reader-text" for="content"><?php _e( 'Content' ); ?></label>
       
   536 			<textarea name="content" id="content" class="mceEditor" rows="3" cols="15"><?php echo esc_textarea( $post->post_content ); ?></textarea>
       
   537 		</div>
       
   538 
       
   539 		<script type="text/javascript">
       
   540 		edCanvas = document.getElementById('content');
       
   541 		edInsertContent = null;
       
   542 		<?php if ( $_POST ) : ?>
       
   543 		wp.media.editor.remove('content');
       
   544 		wp.media.view.settings.post = <?php echo json_encode( $media_settings ); // big juicy hack. ?>;
       
   545 		wp.media.editor.add('content');
       
   546 		<?php endif; ?>
       
   547 		</script>
       
   548 
       
   549 		<div class="input-text-wrap" id="tags-input-wrap">
       
   550 			<label class="screen-reader-text prompt" for="tags-input" id="tags-input-prompt-text"><?php _e( 'Tags (separate with commas)' ); ?></label>
       
   551 			<input type="text" name="tags_input" id="tags-input" value="<?php echo get_tags_to_edit( $post->ID ); ?>" />
       
   552 		</div>
       
   553 
   463 
   554 		<p class="submit">
   464 		<p class="submit">
   555 			<span id="publishing-action">
   465 			<input type="hidden" name="action" id="quickpost-action" value="post-quickdraft-save" />
   556 				<input type="submit" name="publish" id="publish" accesskey="p" class="button-primary" value="<?php current_user_can('publish_posts') ? esc_attr_e('Publish') : esc_attr_e('Submit for Review'); ?>" />
       
   557 				<span class="spinner"></span>
       
   558 			</span>
       
   559 			<input type="hidden" name="action" id="quickpost-action" value="post-quickpress-save" />
       
   560 			<input type="hidden" name="post_ID" value="<?php echo $post_ID; ?>" />
   466 			<input type="hidden" name="post_ID" value="<?php echo $post_ID; ?>" />
   561 			<input type="hidden" name="post_type" value="post" />
   467 			<input type="hidden" name="post_type" value="post" />
   562 			<?php wp_nonce_field('add-post'); ?>
   468 			<?php wp_nonce_field( 'add-post' ); ?>
   563 			<?php submit_button( __( 'Save Draft' ), 'button', 'save', false, array( 'id' => 'save-post' ) ); ?>
   469 			<?php submit_button( __( 'Save Draft' ), 'primary', 'save', false, array( 'id' => 'save-post' ) ); ?>
   564 			<input type="reset" value="<?php esc_attr_e( 'Reset' ); ?>" class="button" />
       
   565 			<br class="clear" />
   470 			<br class="clear" />
   566 		</p>
   471 		</p>
   567 
   472 
   568 	</form>
   473 	</form>
   569 
   474 	<?php
       
   475 	wp_dashboard_recent_drafts();
       
   476 }
       
   477 
       
   478 /**
       
   479  * Show recent drafts of the user on the dashboard.
       
   480  *
       
   481  * @since 2.7.0
       
   482  */
       
   483 function wp_dashboard_recent_drafts( $drafts = false ) {
       
   484 	if ( ! $drafts ) {
       
   485 		$query_args = array(
       
   486 			'post_type'      => 'post',
       
   487 			'post_status'    => 'draft',
       
   488 			'author'         => get_current_user_id(),
       
   489 			'posts_per_page' => 4,
       
   490 			'orderby'        => 'modified',
       
   491 			'order'          => 'DESC'
       
   492 		);
       
   493 		$drafts = get_posts( $query_args );
       
   494 		if ( ! $drafts ) {
       
   495 			return;
       
   496  		}
       
   497  	}
       
   498 
       
   499 	echo '<div class="drafts">';
       
   500 	if ( count( $drafts ) > 3 ) {
       
   501 		echo '<p class="view-all"><a href="' . esc_url( admin_url( 'edit.php?post_status=draft' ) ) . '">' . _x( 'View all', 'drafts' ) . "</a></p>\n";
       
   502  	}
       
   503 	echo '<h4 class="hide-if-no-js">' . __( 'Drafts' ) . "</h4>\n<ul>";
       
   504 
       
   505 	$drafts = array_slice( $drafts, 0, 3 );
       
   506 	foreach ( $drafts as $draft ) {
       
   507 		$url = get_edit_post_link( $draft->ID );
       
   508 		$title = _draft_or_post_title( $draft->ID );
       
   509 		echo "<li>\n";
       
   510 		echo '<div class="draft-title"><a href="' . esc_url( $url ) . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . esc_html( $title ) . '</a>';
       
   511 		echo '<time datetime="' . get_the_time( 'c', $draft ) . '">' . get_the_time( get_option( 'date_format' ), $draft ) . '</time></div>';
       
   512 		if ( $the_content = wp_trim_words( $draft->post_content, 10 ) ) {
       
   513 			echo '<p>' . $the_content . '</p>';
       
   514  		}
       
   515 		echo "</li>\n";
       
   516  	}
       
   517 	echo "</ul>\n</div>";
       
   518 }
       
   519 
       
   520 function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) {
       
   521 	$GLOBALS['comment'] =& $comment;
       
   522 
       
   523 	$comment_post_title = _draft_or_post_title( $comment->comment_post_ID );
       
   524 
       
   525 	if ( current_user_can( 'edit_post', $comment->comment_post_ID ) ) {
       
   526 		$comment_post_url = get_edit_post_link( $comment->comment_post_ID );
       
   527 		$comment_post_link = "<a href='$comment_post_url'>$comment_post_title</a>";
       
   528 	} else {
       
   529 		$comment_post_link = $comment_post_title;
       
   530 	}
       
   531 
       
   532 	$comment_link = '<a class="comment-link" href="' . esc_url(get_comment_link()) . '">#</a>';
       
   533 
       
   534 	$actions_string = '';
       
   535 	if ( current_user_can( 'edit_comment', $comment->comment_ID ) ) {
       
   536 		// Pre-order it: Approve | Reply | Edit | Spam | Trash.
       
   537 		$actions = array(
       
   538 			'approve' => '', 'unapprove' => '',
       
   539 			'reply' => '',
       
   540 			'edit' => '',
       
   541 			'spam' => '',
       
   542 			'trash' => '', 'delete' => ''
       
   543 		);
       
   544 
       
   545 		$del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) );
       
   546 		$approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) );
       
   547 
       
   548 		$approve_url = esc_url( "comment.php?action=approvecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" );
       
   549 		$unapprove_url = esc_url( "comment.php?action=unapprovecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" );
       
   550 		$spam_url = esc_url( "comment.php?action=spamcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
       
   551 		$trash_url = esc_url( "comment.php?action=trashcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
       
   552 		$delete_url = esc_url( "comment.php?action=deletecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
       
   553 
       
   554 		$actions['approve'] = "<a href='$approve_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved' class='vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
       
   555 		$actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved' class='vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
       
   556 		$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>';
       
   557 		$actions['reply'] = '<a onclick="window.commentReply && commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.esc_attr__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
       
   558 		$actions['spam'] = "<a href='$spam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::spam=1' class='vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
       
   559 		if ( !EMPTY_TRASH_DAYS )
       
   560 			$actions['delete'] = "<a href='$delete_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive'>" . __('Delete Permanently') . '</a>';
       
   561 		else
       
   562 			$actions['trash'] = "<a href='$trash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive' title='" . esc_attr__( 'Move this comment to the trash' ) . "'>" . _x('Trash', 'verb') . '</a>';
       
   563 
       
   564 		/**
       
   565 		 * Filter the action links displayed for each comment in the 'Recent Comments'
       
   566 		 * dashboard widget.
       
   567 		 *
       
   568 		 * @since 2.6.0
       
   569 		 *
       
   570 		 * @param array  $actions An array of comment actions. Default actions include:
       
   571 		 *                        'Approve', 'Unapprove', 'Edit', 'Reply', 'Spam',
       
   572 		 *                        'Delete', and 'Trash'.
       
   573 		 * @param object $comment The comment object.
       
   574 		 */
       
   575 		$actions = apply_filters( 'comment_row_actions', array_filter($actions), $comment );
       
   576 
       
   577 		$i = 0;
       
   578 		foreach ( $actions as $action => $link ) {
       
   579 			++$i;
       
   580 			( ( ('approve' == $action || 'unapprove' == $action) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
       
   581 
       
   582 			// Reply and quickedit need a hide-if-no-js span
       
   583 			if ( 'reply' == $action || 'quickedit' == $action )
       
   584 				$action .= ' hide-if-no-js';
       
   585 
       
   586 			$actions_string .= "<span class='$action'>$sep$link</span>";
       
   587 		}
       
   588 	}
       
   589 
       
   590 ?>
       
   591 
       
   592 		<div id="comment-<?php echo $comment->comment_ID; ?>" <?php comment_class( array( 'comment-item', wp_get_comment_status($comment->comment_ID) ) ); ?>>
       
   593 
       
   594 			<?php echo get_avatar( $comment, 50, 'mystery' ); ?>
       
   595 
       
   596 			<?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?>
       
   597 
       
   598 			<div class="dashboard-comment-wrap">
       
   599 			<h4 class="comment-meta">
       
   600 				<?php printf( /* translators: 1: comment author, 2: post link, 3: notification if the comment is pending */__( 'From %1$s on %2$s%3$s' ),
       
   601 					'<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?>
       
   602 			</h4>
       
   603 
       
   604 			<?php
       
   605 			else :
       
   606 				switch ( $comment->comment_type ) {
       
   607 					case 'pingback' :
       
   608 						$type = __( 'Pingback' );
       
   609 						break;
       
   610 					case 'trackback' :
       
   611 						$type = __( 'Trackback' );
       
   612 						break;
       
   613 					default :
       
   614 						$type = ucwords( $comment->comment_type );
       
   615 				}
       
   616 				$type = esc_html( $type );
       
   617 			?>
       
   618 			<div class="dashboard-comment-wrap">
       
   619 			<?php /* translators: %1$s is type of comment, %2$s is link to the post */ ?>
       
   620 			<h4 class="comment-meta"><?php printf( _x( '%1$s on %2$s', 'dashboard' ), "<strong>$type</strong>", $comment_post_link." ".$comment_link ); ?></h4>
       
   621 			<p class="comment-author"><?php comment_author_link(); ?></p>
       
   622 
       
   623 			<?php endif; // comment_type ?>
       
   624 			<blockquote><p><?php comment_excerpt(); ?></p></blockquote>
       
   625 			<p class="row-actions"><?php echo $actions_string; ?></p>
       
   626 			</div>
       
   627 		</div>
   570 <?php
   628 <?php
   571 	if ( $drafts )
   629 }
   572 		wp_dashboard_recent_drafts( $drafts );
   630 
   573 }
   631 /**
   574 
   632  * Callback function for Activity widget.
   575 function wp_dashboard_recent_drafts( $drafts = false ) {
   633  *
   576 	if ( !$drafts ) {
   634  * @since 3.8.0
   577 		$drafts_query = new WP_Query( array(
   635  */
   578 			'post_type' => 'post',
   636 function wp_dashboard_site_activity() {
   579 			'post_status' => 'draft',
   637 
   580 			'author' => $GLOBALS['current_user']->ID,
   638 	echo '<div id="activity-widget">';
   581 			'posts_per_page' => 5,
   639 
   582 			'orderby' => 'modified',
   640 	$future_posts = wp_dashboard_recent_posts( array(
   583 			'order' => 'DESC'
   641 		'max'     => 5,
   584 		) );
   642 		'status'  => 'future',
   585 		$drafts =& $drafts_query->posts;
   643 		'order'   => 'ASC',
   586 	}
   644 		'title'   => __( 'Publishing Soon' ),
   587 
   645 		'id'      => 'future-posts',
   588 	if ( $drafts && is_array( $drafts ) ) {
   646 	) );
   589 		$list = array();
   647 	$recent_posts = wp_dashboard_recent_posts( array(
   590 		foreach ( $drafts as $draft ) {
   648 		'max'     => 5,
   591 			$url = get_edit_post_link( $draft->ID );
   649 		'status'  => 'publish',
   592 			$title = _draft_or_post_title( $draft->ID );
   650 		'order'   => 'DESC',
   593 			$item = "<h4><a href='$url' title='" . sprintf( __( 'Edit &#8220;%s&#8221;' ), esc_attr( $title ) ) . "'>" . esc_html($title) . "</a> <abbr title='" . get_the_time(__('Y/m/d g:i:s A'), $draft) . "'>" . get_the_time( get_option( 'date_format' ), $draft ) . '</abbr></h4>';
   651 		'title'   => __( 'Recently Published' ),
   594 			if ( $the_content = wp_trim_words( $draft->post_content, 10 ) )
   652 		'id'      => 'published-posts',
   595 				$item .= '<p>' . $the_content . '</p>';
   653 	) );
   596 			$list[] = $item;
   654 
       
   655 	$recent_comments = wp_dashboard_recent_comments();
       
   656 
       
   657 	if ( !$future_posts && !$recent_posts && !$recent_comments ) {
       
   658 		echo '<div class="no-activity">';
       
   659 		echo '<p class="smiley"></p>';
       
   660 		echo '<p>' . __( 'No activity yet!' ) . '</p>';
       
   661 		echo '</div>';
       
   662 	}
       
   663 
       
   664 	echo '</div>';
       
   665 }
       
   666 
       
   667 /**
       
   668  * Generates Publishing Soon and Recently Published sections.
       
   669  *
       
   670  * @since 3.8.0
       
   671  *
       
   672  * @param array $args {
       
   673  *     An array of query and display arguments.
       
   674  *
       
   675  *     @type int    $max     Number of posts to display.
       
   676  *     @type string $status  Post status.
       
   677  *     @type string $order   Designates ascending ('ASC') or descending ('DESC') order.
       
   678  *     @type string $title   Section title.
       
   679  *     @type string $id      The container id.
       
   680  * }
       
   681  * @return bool False if no posts were found. True otherwise.
       
   682  */
       
   683 function wp_dashboard_recent_posts( $args ) {
       
   684 	$query_args = array(
       
   685 		'post_type'      => 'post',
       
   686 		'post_status'    => $args['status'],
       
   687 		'orderby'        => 'date',
       
   688 		'order'          => $args['order'],
       
   689 		'posts_per_page' => intval( $args['max'] ),
       
   690 		'no_found_rows'  => true,
       
   691 		'cache_results'  => false,
       
   692 		'perm'           => ( 'future' === $args['status'] ) ? 'editable' : 'readable',
       
   693 	);
       
   694 
       
   695 	/**
       
   696 	 * Filter the query arguments used for the Recent Posts widget.
       
   697 	 *
       
   698 	 * @since 4.2.0
       
   699 	 *
       
   700 	 * @param array $query_args The arguments passed to WP_Query to produce the list of posts.
       
   701 	 */
       
   702 	$query_args = apply_filters( 'dashboard_recent_posts_query_args', $query_args );
       
   703 	$posts = new WP_Query( $query_args );
       
   704 
       
   705 	if ( $posts->have_posts() ) {
       
   706 
       
   707 		echo '<div id="' . $args['id'] . '" class="activity-block">';
       
   708 
       
   709 		echo '<h4>' . $args['title'] . '</h4>';
       
   710 
       
   711 		echo '<ul>';
       
   712 
       
   713 		$today    = date( 'Y-m-d', current_time( 'timestamp' ) );
       
   714 		$tomorrow = date( 'Y-m-d', strtotime( '+1 day', current_time( 'timestamp' ) ) );
       
   715 
       
   716 		while ( $posts->have_posts() ) {
       
   717 			$posts->the_post();
       
   718 
       
   719 			$time = get_the_time( 'U' );
       
   720 			if ( date( 'Y-m-d', $time ) == $today ) {
       
   721 				$relative = __( 'Today' );
       
   722 			} elseif ( date( 'Y-m-d', $time ) == $tomorrow ) {
       
   723 				$relative = __( 'Tomorrow' );
       
   724 			} else {
       
   725 				/* translators: date and time format for recent posts on the dashboard, see http://php.net/date */
       
   726 				$relative = date_i18n( __( 'M jS' ), $time );
       
   727 			}
       
   728 
       
   729 			// Use the post edit link for those who can edit, the permalink otherwise.
       
   730 			$recent_post_link = current_user_can( 'edit_post', get_the_ID() ) ? get_edit_post_link() : get_permalink();
       
   731 
       
   732 			/* translators: 1: relative date, 2: time, 3: post edit link or permalink, 4: post title */
       
   733 			$format = __( '<span>%1$s, %2$s</span> <a href="%3$s">%4$s</a>' );
       
   734 			printf( "<li>$format</li>", $relative, get_the_time(), $recent_post_link, _draft_or_post_title() );
   597 		}
   735 		}
   598 ?>
   736 
   599 	<ul>
   737 		echo '</ul>';
   600 		<li><?php echo join( "</li>\n<li>", $list ); ?></li>
   738 		echo '</div>';
   601 	</ul>
   739 
   602 	<p class="textright"><a href="edit.php?post_status=draft" ><?php _e('View all'); ?></a></p>
       
   603 <?php
       
   604 	} else {
   740 	} else {
   605 		_e('There are no drafts at the moment');
   741 		return false;
   606 	}
   742 	}
   607 }
   743 
   608 
   744 	wp_reset_postdata();
   609 /**
   745 
   610  * Display recent comments dashboard widget content.
   746 	return true;
   611  *
   747 }
   612  * @since 2.5.0
   748 
   613  */
   749 /**
   614 function wp_dashboard_recent_comments() {
   750  * Show Comments section.
   615 	global $wpdb;
   751  *
   616 
   752  * @since 3.8.0
       
   753  *
       
   754  * @param int $total_items Optional. Number of comments to query. Default 5.
       
   755  * @return bool False if no comments were found. True otherwise.
       
   756  */
       
   757 function wp_dashboard_recent_comments( $total_items = 5 ) {
   617 	// Select all comment types and filter out spam later for better query performance.
   758 	// Select all comment types and filter out spam later for better query performance.
   618 	$comments = array();
   759 	$comments = array();
   619 	$start = 0;
   760 
   620 
   761 	$comments_query = array(
   621 	$widgets = get_option( 'dashboard_widget_options' );
   762 		'number' => $total_items * 5,
   622 	$total_items = isset( $widgets['dashboard_recent_comments'] ) && isset( $widgets['dashboard_recent_comments']['items'] )
   763 		'offset' => 0
   623 		? absint( $widgets['dashboard_recent_comments']['items'] ) : 5;
   764 	);
   624 
       
   625 	$comments_query = array( 'number' => $total_items * 5, 'offset' => 0 );
       
   626 	if ( ! current_user_can( 'edit_posts' ) )
   765 	if ( ! current_user_can( 'edit_posts' ) )
   627 		$comments_query['status'] = 'approve';
   766 		$comments_query['status'] = 'approve';
   628 
   767 
   629 	while ( count( $comments ) < $total_items && $possible = get_comments( $comments_query ) ) {
   768 	while ( count( $comments ) < $total_items && $possible = get_comments( $comments_query ) ) {
   630 		foreach ( $possible as $comment ) {
   769 		foreach ( $possible as $comment ) {
   637 		$comments_query['offset'] += $comments_query['number'];
   776 		$comments_query['offset'] += $comments_query['number'];
   638 		$comments_query['number'] = $total_items * 10;
   777 		$comments_query['number'] = $total_items * 10;
   639 	}
   778 	}
   640 
   779 
   641 	if ( $comments ) {
   780 	if ( $comments ) {
       
   781 		echo '<div id="latest-comments" class="activity-block">';
       
   782 		echo '<h4>' . __( 'Comments' ) . '</h4>';
       
   783 
   642 		echo '<div id="the-comment-list" data-wp-lists="list:comment">';
   784 		echo '<div id="the-comment-list" data-wp-lists="list:comment">';
   643 		foreach ( $comments as $comment )
   785 		foreach ( $comments as $comment )
   644 			_wp_dashboard_recent_comments_row( $comment );
   786 			_wp_dashboard_recent_comments_row( $comment );
   645 		echo '</div>';
   787 		echo '</div>';
   646 
   788 
   647 		if ( current_user_can('edit_posts') )
   789 		if ( current_user_can('edit_posts') )
   648 			_get_list_table('WP_Comments_List_Table')->views();
   790 			_get_list_table('WP_Comments_List_Table')->views();
   649 
   791 
   650 		wp_comment_reply( -1, false, 'dashboard', false );
   792 		wp_comment_reply( -1, false, 'dashboard', false );
   651 		wp_comment_trashnotice();
   793 		wp_comment_trashnotice();
       
   794 
       
   795 		echo '</div>';
   652 	} else {
   796 	} else {
   653 		echo '<p>' . __( 'No comments yet.' ) . '</p>';
   797 		return false;
   654 	}
   798 	}
   655 }
   799 	return true;
   656 
   800 }
   657 function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) {
   801 
   658 	$GLOBALS['comment'] =& $comment;
   802 /**
   659 
   803  * Display generic dashboard RSS widget feed.
   660 	$comment_post_url = get_edit_post_link( $comment->comment_post_ID );
       
   661 	$comment_post_title = strip_tags(get_the_title( $comment->comment_post_ID ));
       
   662 	$comment_post_link = "<a href='$comment_post_url'>$comment_post_title</a>";
       
   663 	$comment_link = '<a class="comment-link" href="' . esc_url(get_comment_link()) . '">#</a>';
       
   664 
       
   665 	$actions_string = '';
       
   666 	if ( current_user_can( 'edit_comment', $comment->comment_ID ) ) {
       
   667 		// preorder it: Approve | Reply | Edit | Spam | Trash
       
   668 		$actions = array(
       
   669 			'approve' => '', 'unapprove' => '',
       
   670 			'reply' => '',
       
   671 			'edit' => '',
       
   672 			'spam' => '',
       
   673 			'trash' => '', 'delete' => ''
       
   674 		);
       
   675 
       
   676 		$del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) );
       
   677 		$approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) );
       
   678 
       
   679 		$approve_url = esc_url( "comment.php?action=approvecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" );
       
   680 		$unapprove_url = esc_url( "comment.php?action=unapprovecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" );
       
   681 		$spam_url = esc_url( "comment.php?action=spamcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
       
   682 		$trash_url = esc_url( "comment.php?action=trashcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
       
   683 		$delete_url = esc_url( "comment.php?action=deletecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
       
   684 
       
   685 		$actions['approve'] = "<a href='$approve_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved' class='vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
       
   686 		$actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved' class='vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
       
   687 		$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>';
       
   688 		$actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.esc_attr__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
       
   689 		$actions['spam'] = "<a href='$spam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::spam=1' class='vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
       
   690 		if ( !EMPTY_TRASH_DAYS )
       
   691 			$actions['delete'] = "<a href='$delete_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive'>" . __('Delete Permanently') . '</a>';
       
   692 		else
       
   693 			$actions['trash'] = "<a href='$trash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive' title='" . esc_attr__( 'Move this comment to the trash' ) . "'>" . _x('Trash', 'verb') . '</a>';
       
   694 
       
   695 		$actions = apply_filters( 'comment_row_actions', array_filter($actions), $comment );
       
   696 
       
   697 		$i = 0;
       
   698 		foreach ( $actions as $action => $link ) {
       
   699 			++$i;
       
   700 			( ( ('approve' == $action || 'unapprove' == $action) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
       
   701 
       
   702 			// Reply and quickedit need a hide-if-no-js span
       
   703 			if ( 'reply' == $action || 'quickedit' == $action )
       
   704 				$action .= ' hide-if-no-js';
       
   705 
       
   706 			$actions_string .= "<span class='$action'>$sep$link</span>";
       
   707 		}
       
   708 	}
       
   709 
       
   710 ?>
       
   711 
       
   712 		<div id="comment-<?php echo $comment->comment_ID; ?>" <?php comment_class( array( 'comment-item', wp_get_comment_status($comment->comment_ID) ) ); ?>>
       
   713 			<?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?>
       
   714 
       
   715 			<?php echo get_avatar( $comment, 50, 'mystery' ); ?>
       
   716 
       
   717 			<div class="dashboard-comment-wrap">
       
   718 			<h4 class="comment-meta">
       
   719 				<?php printf( /* translators: 1: comment author, 2: post link, 3: notification if the comment is pending */__( 'From %1$s on %2$s%3$s' ),
       
   720 					'<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?>
       
   721 			</h4>
       
   722 
       
   723 			<?php
       
   724 			else :
       
   725 				switch ( $comment->comment_type ) :
       
   726 				case 'pingback' :
       
   727 					$type = __( 'Pingback' );
       
   728 					break;
       
   729 				case 'trackback' :
       
   730 					$type = __( 'Trackback' );
       
   731 					break;
       
   732 				default :
       
   733 					$type = ucwords( $comment->comment_type );
       
   734 				endswitch;
       
   735 				$type = esc_html( $type );
       
   736 			?>
       
   737 			<div class="dashboard-comment-wrap">
       
   738 			<?php /* translators: %1$s is type of comment, %2$s is link to the post */ ?>
       
   739 			<h4 class="comment-meta"><?php printf( _x( '%1$s on %2$s', 'dashboard' ), "<strong>$type</strong>", $comment_post_link." ".$comment_link ); ?></h4>
       
   740 			<p class="comment-author"><?php comment_author_link(); ?></p>
       
   741 
       
   742 			<?php endif; // comment_type ?>
       
   743 			<blockquote><p><?php comment_excerpt(); ?></p></blockquote>
       
   744 			<p class="row-actions"><?php echo $actions_string; ?></p>
       
   745 			</div>
       
   746 		</div>
       
   747 <?php
       
   748 }
       
   749 
       
   750 /**
       
   751  * The recent comments dashboard widget control.
       
   752  *
       
   753  * @since 3.0.0
       
   754  */
       
   755 function wp_dashboard_recent_comments_control() {
       
   756 	if ( !$widget_options = get_option( 'dashboard_widget_options' ) )
       
   757 		$widget_options = array();
       
   758 
       
   759 	if ( !isset($widget_options['dashboard_recent_comments']) )
       
   760 		$widget_options['dashboard_recent_comments'] = array();
       
   761 
       
   762 	if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget-recent-comments']) ) {
       
   763 		$number = absint( $_POST['widget-recent-comments']['items'] );
       
   764 		$widget_options['dashboard_recent_comments']['items'] = $number;
       
   765 		update_option( 'dashboard_widget_options', $widget_options );
       
   766 	}
       
   767 
       
   768 	$number = isset( $widget_options['dashboard_recent_comments']['items'] ) ? (int) $widget_options['dashboard_recent_comments']['items'] : '';
       
   769 
       
   770 	echo '<p><label for="comments-number">' . __('Number of comments to show:') . '</label>';
       
   771 	echo '<input id="comments-number" name="widget-recent-comments[items]" type="text" value="' . $number . '" size="3" /></p>';
       
   772 }
       
   773 
       
   774 function wp_dashboard_incoming_links() {
       
   775 	wp_dashboard_cached_rss_widget( 'dashboard_incoming_links', 'wp_dashboard_incoming_links_output' );
       
   776 }
       
   777 
       
   778 /**
       
   779  * Display incoming links dashboard widget content.
       
   780  *
       
   781  * @since 2.5.0
       
   782  */
       
   783 function wp_dashboard_incoming_links_output() {
       
   784 	$widgets = get_option( 'dashboard_widget_options' );
       
   785 	@extract( @$widgets['dashboard_incoming_links'], EXTR_SKIP );
       
   786 	$rss = fetch_feed( $url );
       
   787 
       
   788 	if ( is_wp_error($rss) ) {
       
   789 		if ( is_admin() || current_user_can('manage_options') ) {
       
   790 			echo '<p>';
       
   791 			printf(__('<strong>RSS Error</strong>: %s'), $rss->get_error_message());
       
   792 			echo '</p>';
       
   793 		}
       
   794 		return;
       
   795 	}
       
   796 
       
   797 	if ( !$rss->get_item_quantity() ) {
       
   798 		echo '<p>' . __('This dashboard widget queries <a href="http://blogsearch.google.com/">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links&hellip; yet. It&#8217;s okay &#8212; there is no rush.') . "</p>\n";
       
   799 		$rss->__destruct();
       
   800 		unset($rss);
       
   801 		return;
       
   802 	}
       
   803 
       
   804 	echo "<ul>\n";
       
   805 
       
   806 	if ( !isset($items) )
       
   807 		$items = 10;
       
   808 
       
   809 	foreach ( $rss->get_items(0, $items) as $item ) {
       
   810 		$publisher = '';
       
   811 		$site_link = '';
       
   812 		$link = '';
       
   813 		$content = '';
       
   814 		$date = '';
       
   815 		$link = esc_url( strip_tags( $item->get_link() ) );
       
   816 
       
   817 		$author = $item->get_author();
       
   818 		if ( $author ) {
       
   819 			$site_link = esc_url( strip_tags( $author->get_link() ) );
       
   820 
       
   821 			if ( !$publisher = esc_html( strip_tags( $author->get_name() ) ) )
       
   822 				$publisher = __( 'Somebody' );
       
   823 		} else {
       
   824 		  $publisher = __( 'Somebody' );
       
   825 		}
       
   826 		if ( $site_link )
       
   827 			$publisher = "<a href='$site_link'>$publisher</a>";
       
   828 		else
       
   829 			$publisher = "<strong>$publisher</strong>";
       
   830 
       
   831 		$content = $item->get_content();
       
   832 		$content = wp_html_excerpt( $content, 50, ' &hellip;' );
       
   833 
       
   834 		if ( $link )
       
   835 			/* translators: incoming links feed, %1$s is other person, %3$s is content */
       
   836 			$text = __( '%1$s linked here <a href="%2$s">saying</a>, "%3$s"' );
       
   837 		else
       
   838 			/* translators: incoming links feed, %1$s is other person, %3$s is content */
       
   839 			$text = __( '%1$s linked here saying, "%3$s"' );
       
   840 
       
   841 		if ( !empty( $show_date ) ) {
       
   842 			if ( $link )
       
   843 				/* translators: incoming links feed, %1$s is other person, %3$s is content, %4$s is the date */
       
   844 				$text = __( '%1$s linked here <a href="%2$s">saying</a>, "%3$s" on %4$s' );
       
   845 			else
       
   846 				/* translators: incoming links feed, %1$s is other person, %3$s is content, %4$s is the date */
       
   847 				$text = __( '%1$s linked here saying, "%3$s" on %4$s' );
       
   848 			$date = esc_html( strip_tags( $item->get_date() ) );
       
   849 			$date = strtotime( $date );
       
   850 			$date = gmdate( get_option( 'date_format' ), $date );
       
   851 		}
       
   852 
       
   853 		echo "\t<li>" . sprintf( $text, $publisher, $link, $content, $date ) . "</li>\n";
       
   854 	}
       
   855 
       
   856 	echo "</ul>\n";
       
   857 	$rss->__destruct();
       
   858 	unset($rss);
       
   859 }
       
   860 
       
   861 function wp_dashboard_incoming_links_control() {
       
   862 	wp_dashboard_rss_control( 'dashboard_incoming_links', array( 'title' => false, 'show_summary' => false, 'show_author' => false ) );
       
   863 }
       
   864 
       
   865 function wp_dashboard_primary() {
       
   866 	wp_dashboard_cached_rss_widget( 'dashboard_primary', 'wp_dashboard_rss_output' );
       
   867 }
       
   868 
       
   869 function wp_dashboard_primary_control() {
       
   870 	wp_dashboard_rss_control( 'dashboard_primary' );
       
   871 }
       
   872 
       
   873 /**
       
   874  * Display primary dashboard RSS widget feed.
       
   875  *
   804  *
   876  * @since 2.5.0
   805  * @since 2.5.0
   877  *
   806  *
   878  * @param string $widget_id
   807  * @param string $widget_id
   879  */
   808  */
   880 function wp_dashboard_rss_output( $widget_id ) {
   809 function wp_dashboard_rss_output( $widget_id ) {
   881 	$widgets = get_option( 'dashboard_widget_options' );
   810 	$widgets = get_option( 'dashboard_widget_options' );
   882 	echo '<div class="rss-widget">';
   811 	echo '<div class="rss-widget">';
   883 	wp_widget_rss_output( $widgets[$widget_id] );
   812 	wp_widget_rss_output( $widgets[ $widget_id ] );
   884 	echo "</div>";
   813 	echo "</div>";
   885 }
       
   886 
       
   887 function wp_dashboard_secondary() {
       
   888 	wp_dashboard_cached_rss_widget( 'dashboard_secondary', 'wp_dashboard_secondary_output' );
       
   889 }
       
   890 
       
   891 function wp_dashboard_secondary_control() {
       
   892 	wp_dashboard_rss_control( 'dashboard_secondary' );
       
   893 }
       
   894 
       
   895 /**
       
   896  * Display secondary dashboard RSS widget feed.
       
   897  *
       
   898  * @since 2.5.0
       
   899  *
       
   900  * @return unknown
       
   901  */
       
   902 function wp_dashboard_secondary_output() {
       
   903 	$widgets = get_option( 'dashboard_widget_options' );
       
   904 	@extract( @$widgets['dashboard_secondary'], EXTR_SKIP );
       
   905 	$rss = @fetch_feed( $url );
       
   906 
       
   907 	if ( is_wp_error($rss) ) {
       
   908 		if ( is_admin() || current_user_can('manage_options') ) {
       
   909 			echo '<div class="rss-widget"><p>';
       
   910 			printf(__('<strong>RSS Error</strong>: %s'), $rss->get_error_message());
       
   911 			echo '</p></div>';
       
   912 		}
       
   913 	} elseif ( !$rss->get_item_quantity() ) {
       
   914 		$rss->__destruct();
       
   915 		unset($rss);
       
   916 		return false;
       
   917 	} else {
       
   918 		echo '<div class="rss-widget">';
       
   919 		wp_widget_rss_output( $rss, $widgets['dashboard_secondary'] );
       
   920 		echo '</div>';
       
   921 		$rss->__destruct();
       
   922 		unset($rss);
       
   923 	}
       
   924 }
       
   925 
       
   926 function wp_dashboard_plugins() {
       
   927 	wp_dashboard_cached_rss_widget( 'dashboard_plugins', 'wp_dashboard_plugins_output', array(
       
   928 		'http://wordpress.org/plugins/rss/browse/popular/',
       
   929 		'http://wordpress.org/plugins/rss/browse/new/'
       
   930 	) );
       
   931 }
       
   932 
       
   933 /**
       
   934  * Display plugins most popular, newest plugins, and recently updated widget text.
       
   935  *
       
   936  * @since 2.5.0
       
   937  */
       
   938 function wp_dashboard_plugins_output() {
       
   939 	$popular = fetch_feed( 'http://wordpress.org/plugins/rss/browse/popular/' );
       
   940 	$new     = fetch_feed( 'http://wordpress.org/plugins/rss/browse/new/' );
       
   941 
       
   942 	if ( false === $plugin_slugs = get_transient( 'plugin_slugs' ) ) {
       
   943 		$plugin_slugs = array_keys( get_plugins() );
       
   944 		set_transient( 'plugin_slugs', $plugin_slugs, DAY_IN_SECONDS );
       
   945 	}
       
   946 
       
   947 	foreach ( array( 'popular' => __('Most Popular'), 'new' => __('Newest Plugins') ) as $feed => $label ) {
       
   948 		if ( is_wp_error($$feed) || !$$feed->get_item_quantity() )
       
   949 			continue;
       
   950 
       
   951 		$items = $$feed->get_items(0, 5);
       
   952 
       
   953 		// Pick a random, non-installed plugin
       
   954 		while ( true ) {
       
   955 			// Abort this foreach loop iteration if there's no plugins left of this type
       
   956 			if ( 0 == count($items) )
       
   957 				continue 2;
       
   958 
       
   959 			$item_key = array_rand($items);
       
   960 			$item = $items[$item_key];
       
   961 
       
   962 			list($link, $frag) = explode( '#', $item->get_link() );
       
   963 
       
   964 			$link = esc_url($link);
       
   965 			if ( preg_match( '|/([^/]+?)/?$|', $link, $matches ) )
       
   966 				$slug = $matches[1];
       
   967 			else {
       
   968 				unset( $items[$item_key] );
       
   969 				continue;
       
   970 			}
       
   971 
       
   972 			// Is this random plugin's slug already installed? If so, try again.
       
   973 			reset( $plugin_slugs );
       
   974 			foreach ( $plugin_slugs as $plugin_slug ) {
       
   975 				if ( $slug == substr( $plugin_slug, 0, strlen( $slug ) ) ) {
       
   976 					unset( $items[$item_key] );
       
   977 					continue 2;
       
   978 				}
       
   979 			}
       
   980 
       
   981 			// If we get to this point, then the random plugin isn't installed and we can stop the while().
       
   982 			break;
       
   983 		}
       
   984 
       
   985 		// Eliminate some common badly formed plugin descriptions
       
   986 		while ( ( null !== $item_key = array_rand($items) ) && false !== strpos( $items[$item_key]->get_description(), 'Plugin Name:' ) )
       
   987 			unset($items[$item_key]);
       
   988 
       
   989 		if ( !isset($items[$item_key]) )
       
   990 			continue;
       
   991 
       
   992 		$title = esc_html( $item->get_title() );
       
   993 
       
   994 		$description = esc_html( strip_tags(@html_entity_decode($item->get_description(), ENT_QUOTES, get_option('blog_charset'))) );
       
   995 
       
   996 		$ilink = wp_nonce_url('plugin-install.php?tab=plugin-information&plugin=' . $slug, 'install-plugin_' . $slug) .
       
   997 							'&amp;TB_iframe=true&amp;width=600&amp;height=800';
       
   998 
       
   999 		echo "<h4>$label</h4>\n";
       
  1000 		echo "<h5><a href='$link'>$title</a></h5>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span>\n";
       
  1001 		echo "<p>$description</p>\n";
       
  1002 
       
  1003 		$$feed->__destruct();
       
  1004 		unset($$feed);
       
  1005 	}
       
  1006 }
   814 }
  1007 
   815 
  1008 /**
   816 /**
  1009  * Checks to see if all of the feed url in $check_urls are cached.
   817  * Checks to see if all of the feed url in $check_urls are cached.
  1010  *
   818  *
  1043 		echo $loading;
   851 		echo $loading;
  1044 		return false;
   852 		return false;
  1045 	}
   853 	}
  1046 
   854 
  1047 	if ( $callback && is_callable( $callback ) ) {
   855 	if ( $callback && is_callable( $callback ) ) {
  1048 		$args = array_slice( func_get_args(), 2 );
   856 		$args = array_slice( func_get_args(), 3 );
  1049 		array_unshift( $args, $widget_id );
   857 		array_unshift( $args, $widget_id, $check_urls );
  1050 		ob_start();
   858 		ob_start();
  1051 		call_user_func_array( $callback, $args );
   859 		call_user_func_array( $callback, $args );
  1052 		set_transient( $cache_key, ob_get_flush(), 12 * HOUR_IN_SECONDS ); // Default lifetime in cache of 12 hours (same as the feeds)
   860 		set_transient( $cache_key, ob_get_flush(), 12 * HOUR_IN_SECONDS ); // Default lifetime in cache of 12 hours (same as the feeds)
  1053 	}
   861 	}
  1054 
   862 
  1096 
   904 
  1097 	if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget-rss'][$number]) ) {
   905 	if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget-rss'][$number]) ) {
  1098 		$_POST['widget-rss'][$number] = wp_unslash( $_POST['widget-rss'][$number] );
   906 		$_POST['widget-rss'][$number] = wp_unslash( $_POST['widget-rss'][$number] );
  1099 		$widget_options[$widget_id] = wp_widget_rss_process( $_POST['widget-rss'][$number] );
   907 		$widget_options[$widget_id] = wp_widget_rss_process( $_POST['widget-rss'][$number] );
  1100 		$widget_options[$widget_id]['number'] = $number;
   908 		$widget_options[$widget_id]['number'] = $number;
  1101 		// title is optional. If black, fill it if possible
   909 
       
   910 		// Title is optional. If black, fill it if possible.
  1102 		if ( !$widget_options[$widget_id]['title'] && isset($_POST['widget-rss'][$number]['title']) ) {
   911 		if ( !$widget_options[$widget_id]['title'] && isset($_POST['widget-rss'][$number]['title']) ) {
  1103 			$rss = fetch_feed($widget_options[$widget_id]['url']);
   912 			$rss = fetch_feed($widget_options[$widget_id]['url']);
  1104 			if ( is_wp_error($rss) ) {
   913 			if ( is_wp_error($rss) ) {
  1105 				$widget_options[$widget_id]['title'] = htmlentities(__('Unknown Feed'));
   914 				$widget_options[$widget_id]['title'] = htmlentities(__('Unknown Feed'));
  1106 			} else {
   915 			} else {
  1116 
   925 
  1117 	wp_widget_rss_form( $widget_options[$widget_id], $form_inputs );
   926 	wp_widget_rss_form( $widget_options[$widget_id], $form_inputs );
  1118 }
   927 }
  1119 
   928 
  1120 /**
   929 /**
       
   930  * WordPress News dashboard widget.
       
   931  *
       
   932  * @since 2.7.0
       
   933  */
       
   934 function wp_dashboard_primary() {
       
   935 	$feeds = array(
       
   936 		'news' => array(
       
   937 
       
   938 			/**
       
   939 			 * Filter the primary link URL for the 'WordPress News' dashboard widget.
       
   940 			 *
       
   941 			 * @since 2.5.0
       
   942 			 *
       
   943 			 * @param string $link The widget's primary link URL.
       
   944 			 */
       
   945 			'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ),
       
   946 
       
   947 			/**
       
   948 			 * Filter the primary feed URL for the 'WordPress News' dashboard widget.
       
   949 			 *
       
   950 			 * @since 2.3.0
       
   951 			 *
       
   952 			 * @param string $url The widget's primary feed URL.
       
   953 			 */
       
   954 			'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ),
       
   955 
       
   956 			/**
       
   957 			 * Filter the primary link title for the 'WordPress News' dashboard widget.
       
   958 			 *
       
   959 			 * @since 2.3.0
       
   960 			 *
       
   961 			 * @param string $title Title attribute for the widget's primary link.
       
   962 			 */
       
   963 			'title'        => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ),
       
   964 			'items'        => 1,
       
   965 			'show_summary' => 1,
       
   966 			'show_author'  => 0,
       
   967 			'show_date'    => 1,
       
   968 		),
       
   969 		'planet' => array(
       
   970 
       
   971 			/**
       
   972 			 * Filter the secondary link URL for the 'WordPress News' dashboard widget.
       
   973 			 *
       
   974 			 * @since 2.3.0
       
   975 			 *
       
   976 			 * @param string $link The widget's secondary link URL.
       
   977 			 */
       
   978 			'link' => apply_filters( 'dashboard_secondary_link', __( 'https://planet.wordpress.org/' ) ),
       
   979 
       
   980 			/**
       
   981 			 * Filter the secondary feed URL for the 'WordPress News' dashboard widget.
       
   982 			 *
       
   983 			 * @since 2.3.0
       
   984 			 *
       
   985 			 * @param string $url The widget's secondary feed URL.
       
   986 			 */
       
   987 			'url' => apply_filters( 'dashboard_secondary_feed', __( 'https://planet.wordpress.org/feed/' ) ),
       
   988 
       
   989 			/**
       
   990 			 * Filter the secondary link title for the 'WordPress News' dashboard widget.
       
   991 			 *
       
   992 			 * @since 2.3.0
       
   993 			 *
       
   994 			 * @param string $title Title attribute for the widget's secondary link.
       
   995 			 */
       
   996 			'title'        => apply_filters( 'dashboard_secondary_title', __( 'Other WordPress News' ) ),
       
   997 			'items'        => 3,
       
   998 			'show_summary' => 0,
       
   999 			'show_author'  => 0,
       
  1000 			'show_date'    => 0,
       
  1001 		)
       
  1002 	);
       
  1003 
       
  1004 	if ( ( ! is_multisite() && is_blog_admin() && current_user_can( 'install_plugins' ) ) || ( is_network_admin() && current_user_can( 'manage_network_plugins' ) && current_user_can( 'install_plugins' ) ) ) {
       
  1005 		$feeds['plugins'] = array(
       
  1006 			'link'         => '',
       
  1007 			'url'          => array(
       
  1008 				'popular' => 'http://wordpress.org/plugins/rss/browse/popular/',
       
  1009 			),
       
  1010 			'title'        => '',
       
  1011 			'items'        => 1,
       
  1012 			'show_summary' => 0,
       
  1013 			'show_author'  => 0,
       
  1014 			'show_date'    => 0,
       
  1015 		);
       
  1016 	}
       
  1017 
       
  1018 	wp_dashboard_cached_rss_widget( 'dashboard_primary', 'wp_dashboard_primary_output', $feeds );
       
  1019 }
       
  1020 
       
  1021 /**
       
  1022  * Display the WordPress news feeds.
       
  1023  *
       
  1024  * @since 3.8.0
       
  1025  *
       
  1026  * @param string $widget_id Widget ID.
       
  1027  * @param array  $feeds     Array of RSS feeds.
       
  1028  */
       
  1029 function wp_dashboard_primary_output( $widget_id, $feeds ) {
       
  1030 	foreach( $feeds as $type => $args ) {
       
  1031 		$args['type'] = $type;
       
  1032 		echo '<div class="rss-widget">';
       
  1033 		if ( $type === 'plugins' ) {
       
  1034 			wp_dashboard_plugins_output( $args['url'], $args );
       
  1035 		} else {
       
  1036 			wp_widget_rss_output( $args['url'], $args );
       
  1037 		}
       
  1038 		echo "</div>";
       
  1039 	}
       
  1040 }
       
  1041 
       
  1042 /**
       
  1043  * Display plugins text for the WordPress news widget.
       
  1044  *
       
  1045  * @since 2.5.0
       
  1046  */
       
  1047 function wp_dashboard_plugins_output( $rss, $args = array() ) {
       
  1048 	// Plugin feeds plus link to install them
       
  1049 	$popular = fetch_feed( $args['url']['popular'] );
       
  1050 
       
  1051 	if ( false === $plugin_slugs = get_transient( 'plugin_slugs' ) ) {
       
  1052 		$plugin_slugs = array_keys( get_plugins() );
       
  1053 		set_transient( 'plugin_slugs', $plugin_slugs, DAY_IN_SECONDS );
       
  1054 	}
       
  1055 
       
  1056 	echo '<ul>';
       
  1057 
       
  1058 	foreach ( array( $popular ) as $feed ) {
       
  1059 		if ( is_wp_error( $feed ) || ! $feed->get_item_quantity() )
       
  1060 			continue;
       
  1061 
       
  1062 		$items = $feed->get_items(0, 5);
       
  1063 
       
  1064 		// Pick a random, non-installed plugin
       
  1065 		while ( true ) {
       
  1066 			// Abort this foreach loop iteration if there's no plugins left of this type
       
  1067 			if ( 0 == count($items) )
       
  1068 				continue 2;
       
  1069 
       
  1070 			$item_key = array_rand($items);
       
  1071 			$item = $items[$item_key];
       
  1072 
       
  1073 			list($link, $frag) = explode( '#', $item->get_link() );
       
  1074 
       
  1075 			$link = esc_url($link);
       
  1076 			if ( preg_match( '|/([^/]+?)/?$|', $link, $matches ) )
       
  1077 				$slug = $matches[1];
       
  1078 			else {
       
  1079 				unset( $items[$item_key] );
       
  1080 				continue;
       
  1081 			}
       
  1082 
       
  1083 			// Is this random plugin's slug already installed? If so, try again.
       
  1084 			reset( $plugin_slugs );
       
  1085 			foreach ( $plugin_slugs as $plugin_slug ) {
       
  1086 				if ( $slug == substr( $plugin_slug, 0, strlen( $slug ) ) ) {
       
  1087 					unset( $items[$item_key] );
       
  1088 					continue 2;
       
  1089 				}
       
  1090 			}
       
  1091 
       
  1092 			// If we get to this point, then the random plugin isn't installed and we can stop the while().
       
  1093 			break;
       
  1094 		}
       
  1095 
       
  1096 		// Eliminate some common badly formed plugin descriptions
       
  1097 		while ( ( null !== $item_key = array_rand($items) ) && false !== strpos( $items[$item_key]->get_description(), 'Plugin Name:' ) )
       
  1098 			unset($items[$item_key]);
       
  1099 
       
  1100 		if ( !isset($items[$item_key]) )
       
  1101 			continue;
       
  1102 
       
  1103 		$title = esc_html( $item->get_title() );
       
  1104 
       
  1105 		$ilink = wp_nonce_url('plugin-install.php?tab=plugin-information&plugin=' . $slug, 'install-plugin_' . $slug) . '&amp;TB_iframe=true&amp;width=600&amp;height=800';
       
  1106 		echo "<li class='dashboard-news-plugin'><span>" . __( 'Popular Plugin' ) . ":</span> <a href='$link' class='dashboard-news-plugin-link'>$title</a>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span></li>";
       
  1107 
       
  1108 		$feed->__destruct();
       
  1109 		unset( $feed );
       
  1110 	}
       
  1111 
       
  1112 	echo '</ul>';
       
  1113 }
       
  1114 
       
  1115 /**
  1121  * Display file upload quota on dashboard.
  1116  * Display file upload quota on dashboard.
  1122  *
  1117  *
  1123  * Runs on the activity_box_end hook in wp_dashboard_right_now().
  1118  * Runs on the activity_box_end hook in wp_dashboard_right_now().
  1124  *
  1119  *
  1125  * @since 3.0.0
  1120  * @since 3.0.0
  1126  *
  1121  *
  1127  * @return bool True if not multisite, user can't upload files, or the space check option is disabled.
  1122  * @return bool|null True if not multisite, user can't upload files, or the space check option is disabled.
  1128 */
  1123 */
  1129 function wp_dashboard_quota() {
  1124 function wp_dashboard_quota() {
  1130 	if ( !is_multisite() || !current_user_can('upload_files') || get_site_option( 'upload_space_check_disabled' ) )
  1125 	if ( !is_multisite() || !current_user_can( 'upload_files' ) || get_site_option( 'upload_space_check_disabled' ) )
  1131 		return true;
  1126 		return true;
  1132 
  1127 
  1133 	$quota = get_space_allowed();
  1128 	$quota = get_space_allowed();
  1134 	$used = get_space_used();
  1129 	$used = get_space_used();
  1135 
  1130 
  1136 	if ( $used > $quota )
  1131 	if ( $used > $quota )
  1137 		$percentused = '100';
  1132 		$percentused = '100';
  1138 	else
  1133 	else
  1139 		$percentused = ( $used / $quota ) * 100;
  1134 		$percentused = ( $used / $quota ) * 100;
  1140 	$used_color = ( $percentused >= 70 ) ? ' spam' : '';
  1135 	$used_class = ( $percentused >= 70 ) ? ' warning' : '';
  1141 	$used = round( $used, 2 );
  1136 	$used = round( $used, 2 );
  1142 	$percentused = number_format( $percentused );
  1137 	$percentused = number_format( $percentused );
  1143 
  1138 
  1144 	?>
  1139 	?>
  1145 	<p class="sub musub"><?php _e( 'Storage Space' ); ?></p>
  1140 	<h4 class="mu-storage"><?php _e( 'Storage Space' ); ?></h4>
  1146 	<div class="table table_content musubtable">
  1141 	<div class="mu-storage">
  1147 	<table>
  1142 	<ul>
  1148 		<tr class="first">
  1143 		<li class="storage-count">
  1149 			<td class="first b b-posts"><?php printf( __( '<a href="%1$s" title="Manage Uploads" class="musublink">%2$sMB</a>' ), esc_url( admin_url( 'upload.php' ) ), number_format_i18n( $quota ) ); ?></td>
  1144 			<?php $text = sprintf(
  1150 			<td class="t posts"><?php _e( 'Space Allowed' ); ?></td>
  1145 				/* translators: number of megabytes */
  1151 		</tr>
  1146 				__( '%s MB Space Allowed' ),
  1152 	</table>
  1147 				number_format_i18n( $quota )
       
  1148 			);
       
  1149 			printf(
       
  1150 				'<a href="%1$s" title="%2$s">%3$s</a>',
       
  1151 				esc_url( admin_url( 'upload.php' ) ),
       
  1152 				__( 'Manage Uploads' ),
       
  1153 				$text
       
  1154 			); ?>
       
  1155 		</li><li class="storage-count <?php echo $used_class; ?>">
       
  1156 			<?php $text = sprintf(
       
  1157 				/* translators: 1: number of megabytes, 2: percentage */
       
  1158 				__( '%1$s MB (%2$s%%) Space Used' ),
       
  1159 				number_format_i18n( $used, 2 ),
       
  1160 				$percentused
       
  1161 			);
       
  1162 			printf(
       
  1163 				'<a href="%1$s" title="%2$s" class="musublink">%3$s</a>',
       
  1164 				esc_url( admin_url( 'upload.php' ) ),
       
  1165 				__( 'Manage Uploads' ),
       
  1166 				$text
       
  1167 			); ?>
       
  1168 		</li>
       
  1169 	</ul>
  1153 	</div>
  1170 	</div>
  1154 	<div class="table table_discussion musubtable">
       
  1155 	<table>
       
  1156 		<tr class="first">
       
  1157 			<td class="b b-comments"><?php printf( __( '<a href="%1$s" title="Manage Uploads" class="musublink">%2$sMB (%3$s%%)</a>' ), esc_url( admin_url( 'upload.php' ) ), number_format_i18n( $used, 2 ), $percentused ); ?></td>
       
  1158 			<td class="last t comments<?php echo $used_color;?>"><?php _e( 'Space Used' );?></td>
       
  1159 		</tr>
       
  1160 	</table>
       
  1161 	</div>
       
  1162 	<br class="clear" />
       
  1163 	<?php
  1171 	<?php
  1164 }
  1172 }
  1165 add_action( 'activity_box_end', 'wp_dashboard_quota' );
  1173 add_action( 'activity_box_end', 'wp_dashboard_quota' );
  1166 
  1174 
  1167 // Display Browser Nag Meta Box
  1175 // Display Browser Nag Meta Box
  1193 		$notice .= '<p>' . sprintf( __( '<a href="%1$s" class="update-browser-link">Update %2$s</a> or learn how to <a href="%3$s" class="browse-happy-link">browse happy</a>' ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ), esc_url( $browsehappy ) ) . '</p>';
  1201 		$notice .= '<p>' . sprintf( __( '<a href="%1$s" class="update-browser-link">Update %2$s</a> or learn how to <a href="%3$s" class="browse-happy-link">browse happy</a>' ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ), esc_url( $browsehappy ) ) . '</p>';
  1194 		$notice .= '<p class="hide-if-no-js"><a href="" class="dismiss">' . __( 'Dismiss' ) . '</a></p>';
  1202 		$notice .= '<p class="hide-if-no-js"><a href="" class="dismiss">' . __( 'Dismiss' ) . '</a></p>';
  1195 		$notice .= '<div class="clear"></div>';
  1203 		$notice .= '<div class="clear"></div>';
  1196 	}
  1204 	}
  1197 
  1205 
       
  1206 	/**
       
  1207 	* Filter the notice output for the 'Browse Happy' nag meta box.
       
  1208 	*
       
  1209 	* @since 3.2.0
       
  1210 	*
       
  1211 	* @param string $notice   The notice content.
       
  1212 	* @param array  $response An array containing web browser information.
       
  1213 	*/
  1198 	echo apply_filters( 'browse-happy-notice', $notice, $response );
  1214 	echo apply_filters( 'browse-happy-notice', $notice, $response );
  1199 }
  1215 }
  1200 
  1216 
  1201 function dashboard_browser_nag_class( $classes ) {
  1217 function dashboard_browser_nag_class( $classes ) {
  1202 	$response = wp_check_browser_version();
  1218 	$response = wp_check_browser_version();
  1270 	<div class="welcome-panel-content">
  1286 	<div class="welcome-panel-content">
  1271 	<h3><?php _e( 'Welcome to WordPress!' ); ?></h3>
  1287 	<h3><?php _e( 'Welcome to WordPress!' ); ?></h3>
  1272 	<p class="about-description"><?php _e( 'We&#8217;ve assembled some links to get you started:' ); ?></p>
  1288 	<p class="about-description"><?php _e( 'We&#8217;ve assembled some links to get you started:' ); ?></p>
  1273 	<div class="welcome-panel-column-container">
  1289 	<div class="welcome-panel-column-container">
  1274 	<div class="welcome-panel-column">
  1290 	<div class="welcome-panel-column">
  1275 		<h4><?php _e( 'Get Started' ); ?></h4>
  1291 		<?php if ( current_user_can( 'customize' ) ): ?>
  1276 		<a class="button button-primary button-hero load-customize hide-if-no-customize" href="<?php echo wp_customize_url(); ?>"><?php _e( 'Customize Your Site' ); ?></a>
  1292 			<h4><?php _e( 'Get Started' ); ?></h4>
       
  1293 			<a class="button button-primary button-hero load-customize hide-if-no-customize" href="<?php echo wp_customize_url(); ?>"><?php _e( 'Customize Your Site' ); ?></a>
       
  1294 		<?php endif; ?>
  1277 		<a class="button button-primary button-hero hide-if-customize" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Customize Your Site' ); ?></a>
  1295 		<a class="button button-primary button-hero hide-if-customize" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Customize Your Site' ); ?></a>
  1278 		<?php if ( current_user_can( 'install_themes' ) || ( current_user_can( 'switch_themes' ) && count( wp_get_themes( array( 'allowed' => true ) ) ) > 1 ) ) : ?>
  1296 		<?php if ( current_user_can( 'install_themes' ) || ( current_user_can( 'switch_themes' ) && count( wp_get_themes( array( 'allowed' => true ) ) ) > 1 ) ) : ?>
  1279 			<p class="hide-if-no-customize"><?php printf( __( 'or, <a href="%s">change your theme completely</a>' ), admin_url( 'themes.php' ) ); ?></p>
  1297 			<p class="hide-if-no-customize"><?php printf( __( 'or, <a href="%s">change your theme completely</a>' ), admin_url( 'themes.php' ) ); ?></p>
  1280 		<?php endif; ?>
  1298 		<?php endif; ?>
  1281 	</div>
  1299 	</div>
  1297 		</ul>
  1315 		</ul>
  1298 	</div>
  1316 	</div>
  1299 	<div class="welcome-panel-column welcome-panel-last">
  1317 	<div class="welcome-panel-column welcome-panel-last">
  1300 		<h4><?php _e( 'More Actions' ); ?></h4>
  1318 		<h4><?php _e( 'More Actions' ); ?></h4>
  1301 		<ul>
  1319 		<ul>
  1302 			<li><?php printf( '<div class="welcome-icon welcome-widgets-menus">' . __( 'Manage <a href="%1$s">widgets</a> or <a href="%2$s">menus</a>' ) . '</div>', admin_url( 'widgets.php' ), admin_url( 'nav-menus.php' ) ); ?></li>
  1320 		<?php if ( current_theme_supports( 'widgets' ) || current_theme_supports( 'menus' ) ) : ?>
       
  1321 			<li><div class="welcome-icon welcome-widgets-menus"><?php
       
  1322 				if ( current_theme_supports( 'widgets' ) && current_theme_supports( 'menus' ) ) {
       
  1323 					printf( __( 'Manage <a href="%1$s">widgets</a> or <a href="%2$s">menus</a>' ),
       
  1324 						admin_url( 'widgets.php' ), admin_url( 'nav-menus.php' ) );
       
  1325 				} elseif ( current_theme_supports( 'widgets' ) ) {
       
  1326 					echo '<a href="' . admin_url( 'widgets.php' ) . '">' . __( 'Manage widgets' ) . '</a>';
       
  1327 				} else {
       
  1328 					echo '<a href="' . admin_url( 'nav-menus.php' ) . '">' . __( 'Manage menus' ) . '</a>';
       
  1329 				}
       
  1330 			?></div></li>
       
  1331 		<?php endif; ?>
       
  1332 		<?php if ( current_user_can( 'manage_options' ) ) : ?>
  1303 			<li><?php printf( '<a href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li>
  1333 			<li><?php printf( '<a href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li>
  1304 			<li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'http://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li>
  1334 		<?php endif; ?>
       
  1335 			<li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'https://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li>
  1305 		</ul>
  1336 		</ul>
  1306 	</div>
  1337 	</div>
  1307 	</div>
  1338 	</div>
  1308 	</div>
  1339 	</div>
  1309 	<?php
  1340 	<?php