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