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