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