]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/dashboard.php
Wordpress 3.2
[autoinstalls/wordpress.git] / wp-admin / includes / dashboard.php
1 <?php
2 /**
3  * WordPress Dashboard Widget Administration Screen API
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * Registers dashboard widgets.
11  *
12  * Handles POST data, sets up filters.
13  *
14  * @since 2.5.0
15  */
16 function wp_dashboard_setup() {
17         global $wp_registered_widgets, $wp_registered_widget_controls, $wp_dashboard_control_callbacks;
18         $wp_dashboard_control_callbacks = array();
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
26         /* Register Widgets and Controls */
27
28         $response = wp_check_browser_version();
29
30         if ( $response && $response['upgrade'] ) {
31                 add_filter( 'postbox_classes_dashboard_dashboard_browser_nag', 'dashboard_browser_nag_class' );
32                 if ( $response['insecure'] )
33                         wp_add_dashboard_widget( 'dashboard_browser_nag', __( 'You are using an insecure browser!' ), 'wp_dashboard_browser_nag' );
34                 else
35                         wp_add_dashboard_widget( 'dashboard_browser_nag', __( 'Your browser is out of date!' ), 'wp_dashboard_browser_nag' );
36         }
37
38         // Right Now
39         if ( is_blog_admin() && current_user_can('edit_posts') )
40                 wp_add_dashboard_widget( 'dashboard_right_now', __( 'Right Now' ), 'wp_dashboard_right_now' );
41
42         if ( is_network_admin() )
43                 wp_add_dashboard_widget( 'network_dashboard_right_now', __( 'Right Now' ), 'wp_network_dashboard_right_now' );
44
45         // Recent Comments Widget
46         if ( is_blog_admin() && current_user_can('moderate_comments') ) {
47                 if ( !isset( $widget_options['dashboard_recent_comments'] ) || !isset( $widget_options['dashboard_recent_comments']['items'] ) ) {
48                         $update = true;
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
77         // QuickPress Widget
78         if ( is_blog_admin() && current_user_can('edit_posts') )
79                 wp_add_dashboard_widget( 'dashboard_quick_press', __( 'QuickPress' ), 'wp_dashboard_quick_press' );
80
81         // Recent Drafts
82         if ( is_blog_admin() && current_user_can('edit_posts') )
83                 wp_add_dashboard_widget( 'dashboard_recent_drafts', __('Recent Drafts'), 'wp_dashboard_recent_drafts' );
84
85         // Primary feed (Dev Blog) Widget
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() ) {
118                 do_action( 'wp_network_dashboard_setup' );
119                 $dashboard_widgets = apply_filters( 'wp_network_dashboard_widgets', array() );
120         } elseif ( is_user_admin() ) {
121                 do_action( 'wp_user_dashboard_setup' );
122                 $dashboard_widgets = apply_filters( 'wp_user_dashboard_widgets', array() );
123         } else {
124                 do_action( 'wp_dashboard_setup' );
125                 $dashboard_widgets = apply_filters( 'wp_dashboard_widgets', array() );
126         }
127
128         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>';
130                 wp_add_dashboard_widget( $widget_id, $name, $wp_registered_widgets[$widget_id]['callback'], $wp_registered_widget_controls[$widget_id]['callback'] );
131         }
132
133         if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget_id']) ) {
134                 ob_start(); // hack - but the same hack wp-admin/widgets.php uses
135                 wp_dashboard_trigger_widget_control( $_POST['widget_id'] );
136                 ob_end_clean();
137                 wp_redirect( remove_query_arg( 'edit' ) );
138                 exit;
139         }
140
141         if ( $update )
142                 update_option( 'dashboard_widget_options', $widget_options );
143
144         do_action('do_meta_boxes', $screen->id, 'normal', '');
145         do_action('do_meta_boxes', $screen->id, 'side', '');
146 }
147
148 function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null ) {
149         $screen = get_current_screen();
150         global $wp_dashboard_control_callbacks;
151
152         if ( $control_callback && current_user_can( 'edit_dashboard' ) && is_callable( $control_callback ) ) {
153                 $wp_dashboard_control_callbacks[$widget_id] = $control_callback;
154                 if ( isset( $_GET['edit'] ) && $widget_id == $_GET['edit'] ) {
155                         list($url) = explode( '#', add_query_arg( 'edit', false ), 2 );
156                         $widget_name .= ' <span class="postbox-title-action"><a href="' . esc_url( $url ) . '">' . __( 'Cancel' ) . '</a></span>';
157                         $callback = '_wp_dashboard_control_callback';
158                 } else {
159                         list($url) = explode( '#', add_query_arg( 'edit', $widget_id ), 2 );
160                         $widget_name .= ' <span class="postbox-title-action"><a href="' . esc_url( "$url#$widget_id" ) . '" class="edit-box open-box">' . __( 'Configure' ) . '</a></span>';
161                 }
162         }
163
164         if ( is_blog_admin () )
165                 $side_widgets = array('dashboard_quick_press', 'dashboard_recent_drafts', 'dashboard_primary', 'dashboard_secondary');
166         else if (is_network_admin() )
167                 $side_widgets = array('dashboard_primary', 'dashboard_secondary');
168         else
169                 $side_widgets = array();
170
171         $location = 'normal';
172         if ( in_array($widget_id, $side_widgets) )
173                 $location = 'side';
174
175         $priority = 'core';
176         if ( 'dashboard_browser_nag' === $widget_id )
177                 $priority = 'high';
178
179         add_meta_box( $widget_id, $widget_name, $callback, $screen->id, $location, $priority );
180 }
181
182 function _wp_dashboard_control_callback( $dashboard, $meta_box ) {
183         echo '<form action="" method="post" class="dashboard-widget-control-form">';
184         wp_dashboard_trigger_widget_control( $meta_box['id'] );
185         echo '<input type="hidden" name="widget_id" value="' . esc_attr($meta_box['id']) . '" />';
186         submit_button( __('Submit') );
187         echo '</form>';
188 }
189
190 /**
191  * Displays the dashboard.
192  *
193  * @since 2.5.0
194  */
195 function wp_dashboard() {
196         global $screen_layout_columns;
197
198         $screen = get_current_screen();
199
200         $hide2 = $hide3 = $hide4 = '';
201         switch ( $screen_layout_columns ) {
202                 case 4:
203                         $width = 'width:24.5%;';
204                         break;
205                 case 3:
206                         $width = 'width:32.67%;';
207                         $hide4 = 'display:none;';
208                         break;
209                 case 2:
210                         $width = 'width:49%;';
211                         $hide3 = $hide4 = 'display:none;';
212                         break;
213                 default:
214                         $width = 'width:98%;';
215                         $hide2 = $hide3 = $hide4 = 'display:none;';
216         }
217 ?>
218 <div id="dashboard-widgets" class="metabox-holder">
219 <?php
220         echo "\t<div class='postbox-container' style='$width'>\n";
221         do_meta_boxes( $screen->id, 'normal', '' );
222
223         echo "\t</div><div class='postbox-container' style='{$hide2}$width'>\n";
224         do_meta_boxes( $screen->id, 'side', '' );
225
226         echo "\t</div><div class='postbox-container' style='{$hide3}$width'>\n";
227         do_meta_boxes( $screen->id, 'column3', '' );
228
229         echo "\t</div><div class='postbox-container' style='{$hide4}$width'>\n";
230         do_meta_boxes( $screen->id, 'column4', '' );
231 ?>
232 </div></div>
233
234 <form style="display:none" method="get" action="">
235         <p>
236 <?php
237         wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
238         wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
239 ?>
240         </p>
241 </form>
242
243 <?php
244 }
245
246 /* Dashboard Widgets */
247
248 function wp_dashboard_right_now() {
249         global $wp_registered_sidebars;
250
251         $num_posts = wp_count_posts( 'post' );
252         $num_pages = wp_count_posts( 'page' );
253
254         $num_cats  = wp_count_terms('category');
255
256         $num_tags = wp_count_terms('post_tag');
257
258         $num_comm = wp_count_comments( );
259
260         echo "\n\t".'<div class="table table_content">';
261         echo "\n\t".'<p class="sub">' . __('Content') . '</p>'."\n\t".'<table>';
262         echo "\n\t".'<tr class="first">';
263
264         // Posts
265         $num = number_format_i18n( $num_posts->publish );
266         $text = _n( 'Post', 'Posts', intval($num_posts->publish) );
267         if ( current_user_can( 'edit_posts' ) ) {
268                 $num = "<a href='edit.php'>$num</a>";
269                 $text = "<a href='edit.php'>$text</a>";
270         }
271         echo '<td class="first b b-posts">' . $num . '</td>';
272         echo '<td class="t posts">' . $text . '</td>';
273
274         echo '</tr><tr>';
275         /* TODO: Show status breakdown on hover
276         if ( $can_edit_pages && !empty($num_pages->publish) ) { // how many pages is not exposed in feeds.  Don't show if !current_user_can
277                 $post_type_texts[] = '<a href="edit-pages.php">'.sprintf( _n( '%s page', '%s pages', $num_pages->publish ), number_format_i18n( $num_pages->publish ) ).'</a>';
278         }
279         if ( $can_edit_posts && !empty($num_posts->draft) ) {
280                 $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>';
281         }
282         if ( $can_edit_posts && !empty($num_posts->future) ) {
283                 $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>';
284         }
285         if ( current_user_can('publish_posts') && !empty($num_posts->pending) ) {
286                 $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 ) );
287         } else {
288                 $pending_text = '';
289         }
290         */
291
292         // Pages
293         $num = number_format_i18n( $num_pages->publish );
294         $text = _n( 'Page', 'Pages', $num_pages->publish );
295         if ( current_user_can( 'edit_pages' ) ) {
296                 $num = "<a href='edit.php?post_type=page'>$num</a>";
297                 $text = "<a href='edit.php?post_type=page'>$text</a>";
298         }
299         echo '<td class="first b b_pages">' . $num . '</td>';
300         echo '<td class="t pages">' . $text . '</td>';
301
302         echo '</tr><tr>';
303
304         // Categories
305         $num = number_format_i18n( $num_cats );
306         $text = _n( 'Category', 'Categories', $num_cats );
307         if ( current_user_can( 'manage_categories' ) ) {
308                 $num = "<a href='edit-tags.php?taxonomy=category'>$num</a>";
309                 $text = "<a href='edit-tags.php?taxonomy=category'>$text</a>";
310         }
311         echo '<td class="first b b-cats">' . $num . '</td>';
312         echo '<td class="t cats">' . $text . '</td>';
313
314         echo '</tr><tr>';
315
316         // Tags
317         $num = number_format_i18n( $num_tags );
318         $text = _n( 'Tag', 'Tags', $num_tags );
319         if ( current_user_can( 'manage_categories' ) ) {
320                 $num = "<a href='edit-tags.php'>$num</a>";
321                 $text = "<a href='edit-tags.php'>$text</a>";
322         }
323         echo '<td class="first b b-tags">' . $num . '</td>';
324         echo '<td class="t tags">' . $text . '</td>';
325
326         echo "</tr>";
327         do_action('right_now_content_table_end');
328         echo "\n\t</table>\n\t</div>";
329
330
331         echo "\n\t".'<div class="table table_discussion">';
332         echo "\n\t".'<p class="sub">' . __('Discussion') . '</p>'."\n\t".'<table>';
333         echo "\n\t".'<tr class="first">';
334
335         // Total Comments
336         $num = '<span class="total-count">' . number_format_i18n($num_comm->total_comments) . '</span>';
337         $text = _n( 'Comment', 'Comments', $num_comm->total_comments );
338         if ( current_user_can( 'moderate_comments' ) ) {
339                 $num = '<a href="edit-comments.php">' . $num . '</a>';
340                 $text = '<a href="edit-comments.php">' . $text . '</a>';
341         }
342         echo '<td class="b b-comments">' . $num . '</td>';
343         echo '<td class="last t comments">' . $text . '</td>';
344
345         echo '</tr><tr>';
346
347         // Approved Comments
348         $num = '<span class="approved-count">' . number_format_i18n($num_comm->approved) . '</span>';
349         $text = _nx( 'Approved', 'Approved', $num_comm->approved, 'Right Now' );
350         if ( current_user_can( 'moderate_comments' ) ) {
351                 $num = "<a href='edit-comments.php?comment_status=approved'>$num</a>";
352                 $text = "<a class='approved' href='edit-comments.php?comment_status=approved'>$text</a>";
353         }
354         echo '<td class="b b_approved">' . $num . '</td>';
355         echo '<td class="last t">' . $text . '</td>';
356
357         echo "</tr>\n\t<tr>";
358
359         // Pending Comments
360         $num = '<span class="pending-count">' . number_format_i18n($num_comm->moderated) . '</span>';
361         $text = _n( 'Pending', 'Pending', $num_comm->moderated );
362         if ( current_user_can( 'moderate_comments' ) ) {
363                 $num = "<a href='edit-comments.php?comment_status=moderated'>$num</a>";
364                 $text = "<a class='waiting' href='edit-comments.php?comment_status=moderated'>$text</a>";
365         }
366         echo '<td class="b b-waiting">' . $num . '</td>';
367         echo '<td class="last t">' . $text . '</td>';
368
369         echo "</tr>\n\t<tr>";
370
371         // Spam Comments
372         $num = number_format_i18n($num_comm->spam);
373         $text = _nx( 'Spam', 'Spam', $num_comm->spam, 'comment' );
374         if ( current_user_can( 'moderate_comments' ) ) {
375                 $num = "<a href='edit-comments.php?comment_status=spam'><span class='spam-count'>$num</span></a>";
376                 $text = "<a class='spam' href='edit-comments.php?comment_status=spam'>$text</a>";
377         }
378         echo '<td class="b b-spam">' . $num . '</td>';
379         echo '<td class="last t">' . $text . '</td>';
380
381         echo "</tr>";
382         do_action('right_now_table_end');
383         do_action('right_now_discussion_table_end');
384         echo "\n\t</table>\n\t</div>";
385
386         echo "\n\t".'<div class="versions">';
387         $ct = current_theme_info();
388
389         echo "\n\t<p>";
390         if ( !empty($wp_registered_sidebars) ) {
391                 $sidebars_widgets = wp_get_sidebars_widgets();
392                 $num_widgets = 0;
393                 foreach ( (array) $sidebars_widgets as $k => $v ) {
394                         if ( 'wp_inactive_widgets' == $k )
395                                 continue;
396                         if ( is_array($v) )
397                                 $num_widgets = $num_widgets + count($v);
398                 }
399                 $num = number_format_i18n( $num_widgets );
400
401                 $switch_themes = $ct->title;
402                 if ( current_user_can( 'switch_themes') )
403                         $switch_themes = '<a href="themes.php">' . $switch_themes . '</a>';
404                 if ( current_user_can( 'edit_theme_options' ) ) {
405                         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);
406                 } else {
407                         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);
408                 }
409         } else {
410                 if ( current_user_can( 'switch_themes' ) )
411                         printf( __('Theme <span class="b"><a href="themes.php">%1$s</a></span>'), $ct->title );
412                 else
413                         printf( __('Theme <span class="b">%1$s</span>'), $ct->title );
414         }
415         echo '</p>';
416
417         // Check if search engines are blocked.
418         if ( !is_network_admin() && !is_user_admin() && current_user_can('manage_options') && '1' != get_option('blog_public') ) {
419                 $title = apply_filters('privacy_on_link_title', __('Your site is asking search engines not to index its content') );
420                 $content = apply_filters('privacy_on_link_text', __('Search Engines Blocked') );
421
422                 echo "<p><a href='options-privacy.php' title='$title'>$content</a></p>";
423         }
424
425         update_right_now_message();
426
427         echo "\n\t".'<br class="clear" /></div>';
428         do_action( 'rightnow_end' );
429         do_action( 'activity_box_end' );
430 }
431
432 function wp_network_dashboard_right_now() {
433         $actions = array();
434         if ( current_user_can('create_sites') )
435                 $actions['create-site'] = '<a href="' . network_admin_url('site-new.php') . '">' . __( 'Create a New Site' ) . '</a>';
436         if ( current_user_can('create_users') )
437                 $actions['create-user'] = '<a href="' . network_admin_url('user-new.php') . '">' . __( 'Create a New User' ) . '</a>';
438
439         $c_users = get_user_count();
440         $c_blogs = get_blog_count();
441
442         $user_text = sprintf( _n( '%s user', '%s users', $c_users ), number_format_i18n( $c_users ) );
443         $blog_text = sprintf( _n( '%s site', '%s sites', $c_blogs ), number_format_i18n( $c_blogs ) );
444
445         $sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text );
446
447         if ( $actions ) {
448                 echo '<ul class="subsubsub">';
449                 foreach ( $actions as $class => $action ) {
450                          $actions[ $class ] = "\t<li class='$class'>$action";
451                 }
452                 echo implode( " |</li>\n", $actions ) . "</li>\n";
453                 echo '</ul>';
454         }
455 ?>
456         <br class="clear" />
457
458         <p class="youhave"><?php echo $sentence; ?></p>
459         <?php do_action( 'wpmuadminresult', '' ); ?>
460
461         <form name="searchform" action="<?php echo network_admin_url('users.php'); ?>" method="get">
462                 <p>
463                         <input type="text" name="s" value="" size="17" />
464                         <?php submit_button( __( 'Search Users' ), 'button', 'submit', false, array( 'id' => 'submit_users' ) ); ?>
465                 </p>
466         </form>
467
468         <form name="searchform" action="<?php echo network_admin_url('sites.php'); ?>" method="get">
469                 <p>
470                         <input type="text" name="s" value="" size="17" />
471                         <?php submit_button( __( 'Search Sites' ), 'button', 'submit', false, array( 'id' => 'submit_sites' ) ); ?>
472                 </p>
473         </form>
474 <?php
475         do_action( 'mu_rightnow_end' );
476         do_action( 'mu_activity_box_end' );
477 }
478
479 function wp_dashboard_quick_press() {
480         global $post_ID;
481
482         $drafts = false;
483         if ( 'post' === strtolower( $_SERVER['REQUEST_METHOD'] ) && isset( $_POST['action'] ) && 0 === strpos( $_POST['action'], 'post-quickpress' ) && (int) $_POST['post_ID'] ) {
484                 $view = get_permalink( $_POST['post_ID'] );
485                 $edit = esc_url( get_edit_post_link( $_POST['post_ID'] ) );
486                 if ( 'post-quickpress-publish' == $_POST['action'] ) {
487                         if ( current_user_can('publish_posts') )
488                                 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 );
489                         else
490                                 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 );
491                 } else {
492                         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 );
493                         $drafts_query = new WP_Query( array(
494                                 'post_type' => 'post',
495                                 'post_status' => 'draft',
496                                 'author' => $GLOBALS['current_user']->ID,
497                                 'posts_per_page' => 1,
498                                 'orderby' => 'modified',
499                                 'order' => 'DESC'
500                         ) );
501
502                         if ( $drafts_query->posts )
503                                 $drafts =& $drafts_query->posts;
504                 }
505                 printf('<p class="textright">' . __('You can also try %s, easy blogging from anywhere on the Web.') . '</p>', '<a href="' . esc_url( admin_url( 'tools.php' ) ) . '">' . __('Press This') . '</a>' );
506                 $_REQUEST = array(); // hack for get_default_post_to_edit()
507         }
508
509         /* Check if a new auto-draft (= no new post_ID) is needed or if the old can be used */
510         $last_post_id = (int) get_user_option( 'dashboard_quick_press_last_post_id' ); // Get the last post_ID
511         if ( $last_post_id ) {
512                 $post = get_post( $last_post_id );
513                 if ( empty( $post ) || $post->post_status != 'auto-draft' ) { // auto-draft doesn't exists anymore
514                         $post = get_default_post_to_edit('post', true);
515                         update_user_option( (int) $GLOBALS['current_user']->ID, 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID
516                 } else {
517                         $post->post_title = ''; // Remove the auto draft title
518                 }
519         } else {
520                 $post = get_default_post_to_edit('post', true);
521                 update_user_option( (int) $GLOBALS['current_user']->ID, 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID
522         }
523
524         $post_ID = (int) $post->ID;
525 ?>
526
527         <form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press">
528                 <h4 id="quick-post-title"><label for="title"><?php _e('Title') ?></label></h4>
529                 <div class="input-text-wrap">
530                         <input type="text" name="post_title" id="title" tabindex="1" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" />
531                 </div>
532
533                 <?php if ( current_user_can( 'upload_files' ) ) : ?>
534                 <div id="media-buttons" class="hide-if-no-js">
535                         <?php do_action( 'media_buttons' ); ?>
536                 </div>
537                 <?php endif; ?>
538
539                 <h4 id="content-label"><label for="content"><?php _e('Content') ?></label></h4>
540                 <div class="textarea-wrap">
541                         <textarea name="content" id="content" class="mceEditor" rows="3" cols="15" tabindex="2"><?php echo esc_textarea( $post->post_content ); ?></textarea>
542                 </div>
543
544                 <script type="text/javascript">edCanvas = document.getElementById('content');edInsertContent = null;</script>
545
546                 <h4><label for="tags-input"><?php _e('Tags') ?></label></h4>
547                 <div class="input-text-wrap">
548                         <input type="text" name="tags_input" id="tags-input" tabindex="3" value="<?php echo get_tags_to_edit( $post->ID ); ?>" />
549                 </div>
550
551                 <p class="submit">
552                         <input type="hidden" name="action" id="quickpost-action" value="post-quickpress-save" />
553                         <input type="hidden" name="quickpress_post_ID" value="<?php echo $post_ID; ?>" />
554                         <input type="hidden" name="post_type" value="post" />
555                         <?php wp_nonce_field('add-post'); ?>
556                         <?php submit_button( __( 'Save Draft' ), 'button', 'save', false, array( 'id' => 'save-post', 'tabindex'=> 4 ) ); ?>
557                         <input type="reset" value="<?php esc_attr_e( 'Reset' ); ?>" class="button" />
558                         <span id="publishing-action">
559                                 <input type="submit" name="publish" id="publish" accesskey="p" tabindex="5" class="button-primary" value="<?php current_user_can('publish_posts') ? esc_attr_e('Publish') : esc_attr_e('Submit for Review'); ?>" />
560                                 <img class="waiting" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" />
561                         </span>
562                         <br class="clear" />
563                 </p>
564
565         </form>
566
567 <?php
568         if ( $drafts )
569                 wp_dashboard_recent_drafts( $drafts );
570 }
571
572 function wp_dashboard_recent_drafts( $drafts = false ) {
573         if ( !$drafts ) {
574                 $drafts_query = new WP_Query( array(
575                         'post_type' => 'post',
576                         'post_status' => 'draft',
577                         'author' => $GLOBALS['current_user']->ID,
578                         'posts_per_page' => 5,
579                         'orderby' => 'modified',
580                         'order' => 'DESC'
581                 ) );
582                 $drafts =& $drafts_query->posts;
583         }
584
585         if ( $drafts && is_array( $drafts ) ) {
586                 $list = array();
587                 foreach ( $drafts as $draft ) {
588                         $url = get_edit_post_link( $draft->ID );
589                         $title = _draft_or_post_title( $draft->ID );
590                         $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>';
591                         if ( $the_content = preg_split( '#\s#', strip_tags( $draft->post_content ), 11, PREG_SPLIT_NO_EMPTY ) )
592                                 $item .= '<p>' . join( ' ', array_slice( $the_content, 0, 10 ) ) . ( 10 < count( $the_content ) ? '&hellip;' : '' ) . '</p>';
593                         $list[] = $item;
594                 }
595 ?>
596         <ul>
597                 <li><?php echo join( "</li>\n<li>", $list ); ?></li>
598         </ul>
599         <p class="textright"><a href="edit.php?post_status=draft" ><?php _e('View all'); ?></a></p>
600 <?php
601         } else {
602                 _e('There are no drafts at the moment');
603         }
604 }
605
606 /**
607  * Display recent comments dashboard widget content.
608  *
609  * @since 2.5.0
610  */
611 function wp_dashboard_recent_comments() {
612         global $wpdb;
613
614         if ( current_user_can('edit_posts') )
615                 $allowed_states = array('0', '1');
616         else
617                 $allowed_states = array('1');
618
619         // Select all comment types and filter out spam later for better query performance.
620         $comments = array();
621         $start = 0;
622
623         $widgets = get_option( 'dashboard_widget_options' );
624         $total_items = isset( $widgets['dashboard_recent_comments'] ) && isset( $widgets['dashboard_recent_comments']['items'] )
625                 ? absint( $widgets['dashboard_recent_comments']['items'] ) : 5;
626
627         while ( count( $comments ) < $total_items && $possible = $wpdb->get_results( "SELECT * FROM $wpdb->comments c LEFT JOIN $wpdb->posts p ON c.comment_post_ID = p.ID WHERE p.post_status != 'trash' ORDER BY c.comment_date_gmt DESC LIMIT $start, 50" ) ) {
628
629                 foreach ( $possible as $comment ) {
630                         if ( count( $comments ) >= $total_items )
631                                 break;
632                         if ( in_array( $comment->comment_approved, $allowed_states ) && current_user_can( 'read_post', $comment->comment_post_ID ) )
633                                 $comments[] = $comment;
634                 }
635
636                 $start = $start + 50;
637         }
638
639         if ( $comments ) :
640 ?>
641
642                 <div id="the-comment-list" class="list:comment">
643 <?php
644                 foreach ( $comments as $comment )
645                         _wp_dashboard_recent_comments_row( $comment );
646 ?>
647
648                 </div>
649
650 <?php
651                 if ( current_user_can('edit_posts') ) { ?>
652                         <?php _get_list_table('WP_Comments_List_Table')->views(); ?>
653 <?php   }
654
655                 wp_comment_reply( -1, false, 'dashboard', false );
656                 wp_comment_trashnotice();
657
658         else :
659 ?>
660
661         <p><?php _e( 'No comments yet.' ); ?></p>
662
663 <?php
664         endif; // $comments;
665 }
666
667 function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) {
668         $GLOBALS['comment'] =& $comment;
669
670         $comment_post_url = get_edit_post_link( $comment->comment_post_ID );
671         $comment_post_title = strip_tags(get_the_title( $comment->comment_post_ID ));
672         $comment_post_link = "<a href='$comment_post_url'>$comment_post_title</a>";
673         $comment_link = '<a class="comment-link" href="' . esc_url(get_comment_link()) . '">#</a>';
674
675         $actions_string = '';
676         if ( current_user_can( 'edit_comment', $comment->comment_ID ) ) {
677                 // preorder it: Approve | Reply | Edit | Spam | Trash
678                 $actions = array(
679                         'approve' => '', 'unapprove' => '',
680                         'reply' => '',
681                         'edit' => '',
682                         'spam' => '',
683                         'trash' => '', 'delete' => ''
684                 );
685
686                 $del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) );
687                 $approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) );
688
689                 $approve_url = esc_url( "comment.php?action=approvecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" );
690                 $unapprove_url = esc_url( "comment.php?action=unapprovecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" );
691                 $spam_url = esc_url( "comment.php?action=spamcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
692                 $trash_url = esc_url( "comment.php?action=trashcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
693                 $delete_url = esc_url( "comment.php?action=deletecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
694
695                 $actions['approve'] = "<a href='$approve_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
696                 $actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
697                 $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>';
698                 $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>';
699                 $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */  _x( 'Spam', 'verb' ) . '</a>';
700                 if ( !EMPTY_TRASH_DAYS )
701                         $actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID::trash=1 delete vim-d vim-destructive'>" . __('Delete Permanently') . '</a>';
702                 else
703                         $actions['trash'] = "<a href='$trash_url' class='delete:the-comment-list:comment-$comment->comment_ID::trash=1 delete vim-d vim-destructive' title='" . esc_attr__( 'Move this comment to the trash' ) . "'>" . _x('Trash', 'verb') . '</a>';
704
705                 $actions = apply_filters( 'comment_row_actions', array_filter($actions), $comment );
706
707                 $i = 0;
708                 foreach ( $actions as $action => $link ) {
709                         ++$i;
710                         ( ( ('approve' == $action || 'unapprove' == $action) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
711
712                         // Reply and quickedit need a hide-if-no-js span
713                         if ( 'reply' == $action || 'quickedit' == $action )
714                                 $action .= ' hide-if-no-js';
715
716                         $actions_string .= "<span class='$action'>$sep$link</span>";
717                 }
718         }
719
720 ?>
721
722                 <div id="comment-<?php echo $comment->comment_ID; ?>" <?php comment_class( array( 'comment-item', wp_get_comment_status($comment->comment_ID) ) ); ?>>
723                         <?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?>
724
725                         <?php echo get_avatar( $comment, 50 ); ?>
726
727                         <div class="dashboard-comment-wrap">
728                         <h4 class="comment-meta">
729                                 <?php printf( /* translators: 1: comment author, 2: post link, 3: notification if the comment is pending */__( 'From %1$s on %2$s%3$s' ),
730                                         '<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?>
731                         </h4>
732
733                         <?php
734                         else :
735                                 switch ( $comment->comment_type ) :
736                                 case 'pingback' :
737                                         $type = __( 'Pingback' );
738                                         break;
739                                 case 'trackback' :
740                                         $type = __( 'Trackback' );
741                                         break;
742                                 default :
743                                         $type = ucwords( $comment->comment_type );
744                                 endswitch;
745                                 $type = esc_html( $type );
746                         ?>
747                         <div class="dashboard-comment-wrap">
748                         <?php /* translators: %1$s is type of comment, %2$s is link to the post */ ?>
749                         <h4 class="comment-meta"><?php printf( _x( '%1$s on %2$s', 'dashboard' ), "<strong>$type</strong>", $comment_post_link." ".$comment_link ); ?></h4>
750                         <p class="comment-author"><?php comment_author_link(); ?></p>
751
752                         <?php endif; // comment_type ?>
753                         <blockquote><p><?php comment_excerpt(); ?></p></blockquote>
754                         <p class="row-actions"><?php echo $actions_string; ?></p>
755                         </div>
756                 </div>
757 <?php
758 }
759
760 /**
761  * The recent comments dashboard widget control.
762  *
763  * @since 3.0.0
764  */
765 function wp_dashboard_recent_comments_control() {
766         if ( !$widget_options = get_option( 'dashboard_widget_options' ) )
767                 $widget_options = array();
768
769         if ( !isset($widget_options['dashboard_recent_comments']) )
770                 $widget_options['dashboard_recent_comments'] = array();
771
772         if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget-recent-comments']) ) {
773                 $number = absint( $_POST['widget-recent-comments']['items'] );
774                 $widget_options['dashboard_recent_comments']['items'] = $number;
775                 update_option( 'dashboard_widget_options', $widget_options );
776         }
777
778         $number = isset( $widget_options['dashboard_recent_comments']['items'] ) ? (int) $widget_options['dashboard_recent_comments']['items'] : '';
779
780         echo '<p><label for="comments-number">' . __('Number of comments to show:') . '</label>';
781         echo '<input id="comments-number" name="widget-recent-comments[items]" type="text" value="' . $number . '" size="3" /></p>';
782 }
783
784 function wp_dashboard_incoming_links() {
785         wp_dashboard_cached_rss_widget( 'dashboard_incoming_links', 'wp_dashboard_incoming_links_output' );
786 }
787
788 /**
789  * Display incoming links dashboard widget content.
790  *
791  * @since 2.5.0
792  */
793 function wp_dashboard_incoming_links_output() {
794         $widgets = get_option( 'dashboard_widget_options' );
795         @extract( @$widgets['dashboard_incoming_links'], EXTR_SKIP );
796         $rss = fetch_feed( $url );
797
798         if ( is_wp_error($rss) ) {
799                 if ( is_admin() || current_user_can('manage_options') ) {
800                         echo '<p>';
801                         printf(__('<strong>RSS Error</strong>: %s'), $rss->get_error_message());
802                         echo '</p>';
803                 }
804                 return;
805         }
806
807         if ( !$rss->get_item_quantity() ) {
808                 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";
809                 $rss->__destruct();
810                 unset($rss);
811                 return;
812         }
813
814         echo "<ul>\n";
815
816         if ( !isset($items) )
817                 $items = 10;
818
819         foreach ( $rss->get_items(0, $items) as $item ) {
820                 $publisher = '';
821                 $site_link = '';
822                 $link = '';
823                 $content = '';
824                 $date = '';
825                 $link = esc_url( strip_tags( $item->get_link() ) );
826
827                 $author = $item->get_author();
828                 if ( $author ) {
829                         $site_link = esc_url( strip_tags( $author->get_link() ) );
830
831                         if ( !$publisher = esc_html( strip_tags( $author->get_name() ) ) )
832                                 $publisher = __( 'Somebody' );
833                 } else {
834                   $publisher = __( 'Somebody' );
835                 }
836                 if ( $site_link )
837                         $publisher = "<a href='$site_link'>$publisher</a>";
838                 else
839                         $publisher = "<strong>$publisher</strong>";
840
841                 $content = $item->get_content();
842                 $content = wp_html_excerpt($content, 50) . ' ...';
843
844                 if ( $link )
845                         /* translators: incoming links feed, %1$s is other person, %3$s is content */
846                         $text = __( '%1$s linked here <a href="%2$s">saying</a>, "%3$s"' );
847                 else
848                         /* translators: incoming links feed, %1$s is other person, %3$s is content */
849                         $text = __( '%1$s linked here saying, "%3$s"' );
850
851                 if ( !empty($show_date) ) {
852                         if ( !empty($show_author) || !empty($show_summary) )
853                                 /* translators: incoming links feed, %4$s is the date */
854                                 $text .= ' ' . __( 'on %4$s' );
855                         $date = esc_html( strip_tags( $item->get_date() ) );
856                         $date = strtotime( $date );
857                         $date = gmdate( get_option( 'date_format' ), $date );
858                 }
859
860                 echo "\t<li>" . sprintf( $text, $publisher, $link, $content, $date ) . "</li>\n";
861         }
862
863         echo "</ul>\n";
864         $rss->__destruct();
865         unset($rss);
866 }
867
868 function wp_dashboard_incoming_links_control() {
869         wp_dashboard_rss_control( 'dashboard_incoming_links', array( 'title' => false, 'show_summary' => false, 'show_author' => false ) );
870 }
871
872 function wp_dashboard_primary() {
873         wp_dashboard_cached_rss_widget( 'dashboard_primary', 'wp_dashboard_rss_output' );
874 }
875
876 function wp_dashboard_primary_control() {
877         wp_dashboard_rss_control( 'dashboard_primary' );
878 }
879
880 /**
881  * {@internal Missing Short Description}}
882  *
883  * @since 2.5.0
884  *
885  * @param string $widget_id
886  */
887 function wp_dashboard_rss_output( $widget_id ) {
888         $widgets = get_option( 'dashboard_widget_options' );
889         echo '<div class="rss-widget">';
890         wp_widget_rss_output( $widgets[$widget_id] );
891         echo "</div>";
892 }
893
894 function wp_dashboard_secondary() {
895         wp_dashboard_cached_rss_widget( 'dashboard_secondary', 'wp_dashboard_secondary_output' );
896 }
897
898 function wp_dashboard_secondary_control() {
899         wp_dashboard_rss_control( 'dashboard_secondary' );
900 }
901
902 /**
903  * Display secondary dashboard RSS widget feed.
904  *
905  * @since 2.5.0
906  *
907  * @return unknown
908  */
909 function wp_dashboard_secondary_output() {
910         $widgets = get_option( 'dashboard_widget_options' );
911         @extract( @$widgets['dashboard_secondary'], EXTR_SKIP );
912         $rss = @fetch_feed( $url );
913
914         if ( is_wp_error($rss) ) {
915                 if ( is_admin() || current_user_can('manage_options') ) {
916                         echo '<div class="rss-widget"><p>';
917                         printf(__('<strong>RSS Error</strong>: %s'), $rss->get_error_message());
918                         echo '</p></div>';
919                 }
920         } elseif ( !$rss->get_item_quantity() ) {
921                 $rss->__destruct();
922                 unset($rss);
923                 return false;
924         } else {
925                 echo '<div class="rss-widget">';
926                 wp_widget_rss_output( $rss, $widgets['dashboard_secondary'] );
927                 echo '</div>';
928                 $rss->__destruct();
929                 unset($rss);
930         }
931 }
932
933 function wp_dashboard_plugins() {
934         wp_dashboard_cached_rss_widget( 'dashboard_plugins', 'wp_dashboard_plugins_output', array(
935                 'http://wordpress.org/extend/plugins/rss/browse/popular/',
936                 'http://wordpress.org/extend/plugins/rss/browse/new/',
937                 'http://wordpress.org/extend/plugins/rss/browse/updated/'
938         ) );
939 }
940
941 /**
942  * Display plugins most popular, newest plugins, and recently updated widget text.
943  *
944  * @since 2.5.0
945  */
946 function wp_dashboard_plugins_output() {
947         $popular = fetch_feed( 'http://wordpress.org/extend/plugins/rss/browse/popular/' );
948         $new     = fetch_feed( 'http://wordpress.org/extend/plugins/rss/browse/new/' );
949         $updated = fetch_feed( 'http://wordpress.org/extend/plugins/rss/browse/updated/' );
950
951         if ( false === $plugin_slugs = get_transient( 'plugin_slugs' ) ) {
952                 $plugin_slugs = array_keys( get_plugins() );
953                 set_transient( 'plugin_slugs', $plugin_slugs, 86400 );
954         }
955
956         foreach ( array( 'popular' => __('Most Popular'), 'new' => __('Newest Plugins'), 'updated' => __('Recently Updated') ) as $feed => $label ) {
957                 if ( is_wp_error($$feed) || !$$feed->get_item_quantity() )
958                         continue;
959
960                 $items = $$feed->get_items(0, 5);
961
962                 // Pick a random, non-installed plugin
963                 while ( true ) {
964                         // Abort this foreach loop iteration if there's no plugins left of this type
965                         if ( 0 == count($items) )
966                                 continue 2;
967
968                         $item_key = array_rand($items);
969                         $item = $items[$item_key];
970
971                         list($link, $frag) = explode( '#', $item->get_link() );
972
973                         $link = esc_url($link);
974                         if ( preg_match( '|/([^/]+?)/?$|', $link, $matches ) )
975                                 $slug = $matches[1];
976                         else {
977                                 unset( $items[$item_key] );
978                                 continue;
979                         }
980
981                         // Is this random plugin's slug already installed? If so, try again.
982                         reset( $plugin_slugs );
983                         foreach ( $plugin_slugs as $plugin_slug ) {
984                                 if ( $slug == substr( $plugin_slug, 0, strlen( $slug ) ) ) {
985                                         unset( $items[$item_key] );
986                                         continue 2;
987                                 }
988                         }
989
990                         // If we get to this point, then the random plugin isn't installed and we can stop the while().
991                         break;
992                 }
993
994                 // Eliminate some common badly formed plugin descriptions
995                 while ( ( null !== $item_key = array_rand($items) ) && false !== strpos( $items[$item_key]->get_description(), 'Plugin Name:' ) )
996                         unset($items[$item_key]);
997
998                 if ( !isset($items[$item_key]) )
999                         continue;
1000
1001                 // current bbPress feed item titles are: user on "topic title"
1002                 if ( preg_match( '/&quot;(.*)&quot;/s', $item->get_title(), $matches ) )
1003                         $title = $matches[1];
1004                 else // but let's make it forward compatible if things change
1005                         $title = $item->get_title();
1006                 $title = esc_html( $title );
1007
1008                 $description = esc_html( strip_tags(@html_entity_decode($item->get_description(), ENT_QUOTES, get_option('blog_charset'))) );
1009
1010                 $ilink = wp_nonce_url('plugin-install.php?tab=plugin-information&plugin=' . $slug, 'install-plugin_' . $slug) .
1011                                                         '&amp;TB_iframe=true&amp;width=600&amp;height=800';
1012
1013                 echo "<h4>$label</h4>\n";
1014                 echo "<h5><a href='$link'>$title</a></h5>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span>\n";
1015                 echo "<p>$description</p>\n";
1016
1017                 $$feed->__destruct();
1018                 unset($$feed);
1019         }
1020 }
1021
1022 /**
1023  * Checks to see if all of the feed url in $check_urls are cached.
1024  *
1025  * If $check_urls is empty, look for the rss feed url found in the dashboard
1026  * widget optios of $widget_id. If cached, call $callback, a function that
1027  * echoes out output for this widget. If not cache, echo a "Loading..." stub
1028  * which is later replaced by AJAX call (see top of /wp-admin/index.php)
1029  *
1030  * @since 2.5.0
1031  *
1032  * @param string $widget_id
1033  * @param callback $callback
1034  * @param array $check_urls RSS feeds
1035  * @return bool False on failure. True on success.
1036  */
1037 function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = array() ) {
1038         $loading = '<p class="widget-loading hide-if-no-js">' . __( 'Loading&#8230;' ) . '</p><p class="hide-if-js">' . __( 'This widget requires JavaScript.' ) . '</p>';
1039         $doing_ajax = ( defined('DOING_AJAX') && DOING_AJAX );
1040
1041         if ( empty($check_urls) ) {
1042                 $widgets = get_option( 'dashboard_widget_options' );
1043                 if ( empty($widgets[$widget_id]['url']) && ! $doing_ajax ) {
1044                         echo $loading;
1045                         return false;
1046                 }
1047                 $check_urls = array( $widgets[$widget_id]['url'] );
1048         }
1049
1050         $cache_key = 'dash_' . md5( $widget_id );
1051         if ( false !== ( $output = get_transient( $cache_key ) ) ) {
1052                 echo $output;
1053                 return true;
1054         }
1055
1056         if ( ! $doing_ajax ) {
1057                 echo $loading;
1058                 return false;
1059         }
1060
1061         if ( $callback && is_callable( $callback ) ) {
1062                 $args = array_slice( func_get_args(), 2 );
1063                 array_unshift( $args, $widget_id );
1064                 ob_start();
1065                 call_user_func_array( $callback, $args );
1066                 set_transient( $cache_key, ob_get_flush(), 43200); // Default lifetime in cache of 12 hours (same as the feeds)
1067         }
1068
1069         return true;
1070 }
1071
1072 /* Dashboard Widgets Controls */
1073
1074 // Calls widget_control callback
1075 /**
1076  * Calls widget control callback.
1077  *
1078  * @since 2.5.0
1079  *
1080  * @param int $widget_control_id Registered Widget ID.
1081  */
1082 function wp_dashboard_trigger_widget_control( $widget_control_id = false ) {
1083         global $wp_dashboard_control_callbacks;
1084
1085         if ( is_scalar($widget_control_id) && $widget_control_id && isset($wp_dashboard_control_callbacks[$widget_control_id]) && is_callable($wp_dashboard_control_callbacks[$widget_control_id]) ) {
1086                 call_user_func( $wp_dashboard_control_callbacks[$widget_control_id], '', array( 'id' => $widget_control_id, 'callback' => $wp_dashboard_control_callbacks[$widget_control_id] ) );
1087         }
1088 }
1089
1090 /**
1091  * The RSS dashboard widget control.
1092  *
1093  * Sets up $args to be used as input to wp_widget_rss_form(). Handles POST data
1094  * from RSS-type widgets.
1095  *
1096  * @since 2.5.0
1097  *
1098  * @param string $widget_id
1099  * @param array $form_inputs
1100  */
1101 function wp_dashboard_rss_control( $widget_id, $form_inputs = array() ) {
1102         if ( !$widget_options = get_option( 'dashboard_widget_options' ) )
1103                 $widget_options = array();
1104
1105         if ( !isset($widget_options[$widget_id]) )
1106                 $widget_options[$widget_id] = array();
1107
1108         $number = 1; // Hack to use wp_widget_rss_form()
1109         $widget_options[$widget_id]['number'] = $number;
1110
1111         if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget-rss'][$number]) ) {
1112                 $_POST['widget-rss'][$number] = stripslashes_deep( $_POST['widget-rss'][$number] );
1113                 $widget_options[$widget_id] = wp_widget_rss_process( $_POST['widget-rss'][$number] );
1114                 // title is optional.  If black, fill it if possible
1115                 if ( !$widget_options[$widget_id]['title'] && isset($_POST['widget-rss'][$number]['title']) ) {
1116                         $rss = fetch_feed($widget_options[$widget_id]['url']);
1117                         if ( is_wp_error($rss) ) {
1118                                 $widget_options[$widget_id]['title'] = htmlentities(__('Unknown Feed'));
1119                         } else {
1120                                 $widget_options[$widget_id]['title'] = htmlentities(strip_tags($rss->get_title()));
1121                                 $rss->__destruct();
1122                                 unset($rss);
1123                         }
1124                 }
1125                 update_option( 'dashboard_widget_options', $widget_options );
1126                 $cache_key = 'dash_' . md5( $widget_id );
1127                 delete_transient( $cache_key );
1128         }
1129
1130         wp_widget_rss_form( $widget_options[$widget_id], $form_inputs );
1131 }
1132
1133 // Display File upload quota on dashboard
1134 function wp_dashboard_quota() {
1135         if ( !is_multisite() || !current_user_can('upload_files') || get_site_option( 'upload_space_check_disabled' ) )
1136                 return true;
1137
1138         $quota = get_space_allowed();
1139         $used = get_dirsize( BLOGUPLOADDIR ) / 1024 / 1024;
1140
1141         if ( $used > $quota )
1142                 $percentused = '100';
1143         else
1144                 $percentused = ( $used / $quota ) * 100;
1145         $used_color = ( $percentused >= 70 ) ? ' spam' : '';
1146         $used = round( $used, 2 );
1147         $percentused = number_format( $percentused );
1148
1149         ?>
1150         <p class="sub musub"><?php _e( 'Storage Space' ); ?></p>
1151         <div class="table table_content musubtable">
1152         <table>
1153                 <tr class="first">
1154                         <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' ) ), $quota ); ?></td>
1155                         <td class="t posts"><?php _e( 'Space Allowed' ); ?></td>
1156                 </tr>
1157         </table>
1158         </div>
1159         <div class="table table_discussion musubtable">
1160         <table>
1161                 <tr class="first">
1162                         <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' ) ), $used, $percentused ); ?></td>
1163                         <td class="last t comments<?php echo $used_color;?>"><?php _e( 'Space Used' );?></td>
1164                 </tr>
1165         </table>
1166         </div>
1167         <br class="clear" />
1168         <?php
1169 }
1170 add_action( 'activity_box_end', 'wp_dashboard_quota' );
1171
1172 // Display Browser Nag Meta Box
1173 function wp_dashboard_browser_nag() {
1174         $notice = '';
1175         $response = wp_check_browser_version();
1176
1177         if ( $response ) {
1178                 if ( $response['insecure'] ) {
1179                         $msg = sprintf( __( "It looks like you're using an insecure version of <a href='%s'>%s</a>. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ) );
1180                 } else {
1181                         $msg = sprintf( __( "It looks like you're using an old version of <a href='%s'>%s</a>. For the best WordPress experience, please update your browser." ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ) );
1182                 }
1183
1184                 $browser_nag_class = '';
1185                 if ( !empty( $response['img_src'] ) ) {
1186                         $img_src = ( is_ssl() && ! empty( $response['img_src_ssl'] ) )? $response['img_src_ssl'] : $response['img_src'];
1187
1188                         $notice .= '<div class="alignright browser-icon"><a href="' . esc_attr($response['update_url']) . '"><img src="' . esc_attr( $img_src ) . '" alt="" /></a></div>';
1189                         $browser_nag_class = ' has-browser-icon';
1190                 }
1191                 $notice .= "<p class='browser-update-nag{$browser_nag_class}'>{$msg}</p>";
1192                 $notice .= sprintf( __( '<p><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></p>' ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ), 'http://browsehappy.com/' );
1193                 $notice .= '<p class="hide-if-no-js"><a href="" class="dismiss">' . __( 'Dismiss' ) . '</a></p>';
1194                 $notice .= '<div class="clear"></div>';
1195         }
1196
1197         echo apply_filters( 'browse-happy-notice', $notice, $response );
1198 }
1199
1200 function dashboard_browser_nag_class( $classes ) {
1201         $response = wp_check_browser_version();
1202
1203         if ( $response && $response['insecure'] )
1204                 $classes[] = 'browser-insecure';
1205
1206         return $classes;
1207 }
1208
1209 /**
1210  * Check if the user needs a browser update
1211  *
1212  * @since 3.2.0
1213  *
1214  * @return array|bool False on failure, array of browser data on success.
1215  */
1216 function wp_check_browser_version() {
1217         if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
1218                 return false;
1219
1220         $key = md5( $_SERVER['HTTP_USER_AGENT'] );
1221
1222         if ( false === ($response = get_site_transient('browser_' . $key) ) ) {
1223                 global $wp_version;
1224
1225                 $options = array(
1226                         'body'                  => array( 'useragent' => $_SERVER['HTTP_USER_AGENT'] ),
1227                         'user-agent'    => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
1228                 );
1229
1230                 $response = wp_remote_post( 'http://api.wordpress.org/core/browse-happy/1.0/', $options );
1231
1232                 if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
1233                         return false;
1234
1235                 /**
1236                  * Response should be an array with:
1237                  *  'name' - string - A user friendly browser name
1238                  *  'version' - string - The most recent version of the browser
1239                  *  'current_version' - string - The version of the browser the user is using
1240                  *  'upgrade' - boolean - Whether the browser needs an upgrade
1241                  *  'insecure' - boolean - Whether the browser is deemed insecure
1242                  *  'upgrade_url' - string - The url to visit to upgrade
1243                  *  'img_src' - string - An image representing the browser
1244                  *  'img_src_ssl' - string - An image (over SSL) representing the browser
1245                  */
1246                 $response = unserialize( wp_remote_retrieve_body( $response ) );
1247
1248                 if ( ! $response )
1249                         return false;
1250
1251                 set_site_transient( 'browser_' . $key, $response, 604800 ); // cache for 1 week
1252         }
1253
1254         return $response;
1255 }
1256
1257 /**
1258  * Empty function usable by plugins to output empty dashboard widget (to be populated later by JS).
1259  */
1260 function wp_dashboard_empty() {}
1261
1262 ?>