]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/class-wp-plugins-list-table.php
WordPress 4.1
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-plugins-list-table.php
1 <?php
2 /**
3  * Plugins List Table class.
4  *
5  * @package WordPress
6  * @subpackage List_Table
7  * @since 3.1.0
8  * @access private
9  */
10 class WP_Plugins_List_Table extends WP_List_Table {
11
12         /**
13          * Constructor.
14          *
15          * @since 3.1.0
16          * @access public
17          *
18          * @see WP_List_Table::__construct() for more information on default arguments.
19          *
20          * @param array $args An associative array of arguments.
21          */
22         public function __construct( $args = array() ) {
23                 global $status, $page;
24
25                 parent::__construct( array(
26                         'plural' => 'plugins',
27                         'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
28                 ) );
29
30                 $status = 'all';
31                 if ( isset( $_REQUEST['plugin_status'] ) && in_array( $_REQUEST['plugin_status'], array( 'active', 'inactive', 'recently_activated', 'upgrade', 'mustuse', 'dropins', 'search' ) ) )
32                         $status = $_REQUEST['plugin_status'];
33
34                 if ( isset($_REQUEST['s']) )
35                         $_SERVER['REQUEST_URI'] = add_query_arg('s', wp_unslash($_REQUEST['s']) );
36
37                 $page = $this->get_pagenum();
38         }
39
40         protected function get_table_classes() {
41                 return array( 'widefat', $this->_args['plural'] );
42         }
43
44         public function ajax_user_can() {
45                 return current_user_can('activate_plugins');
46         }
47
48         public function prepare_items() {
49                 global $status, $plugins, $totals, $page, $orderby, $order, $s;
50
51                 wp_reset_vars( array( 'orderby', 'order', 's' ) );
52
53                 /**
54                  * Filter the full array of plugins to list in the Plugins list table.
55                  *
56                  * @since 3.0.0
57                  *
58                  * @see get_plugins()
59                  *
60                  * @param array $plugins An array of plugins to display in the list table.
61                  */
62                 $plugins = array(
63                         'all' => apply_filters( 'all_plugins', get_plugins() ),
64                         'search' => array(),
65                         'active' => array(),
66                         'inactive' => array(),
67                         'recently_activated' => array(),
68                         'upgrade' => array(),
69                         'mustuse' => array(),
70                         'dropins' => array()
71                 );
72
73                 $screen = $this->screen;
74
75                 if ( ! is_multisite() || ( $screen->in_admin( 'network' ) && current_user_can( 'manage_network_plugins' ) ) ) {
76
77                         /**
78                          * Filter whether to display the advanced plugins list table.
79                          *
80                          * There are two types of advanced plugins - must-use and drop-ins -
81                          * which can be used in a single site or Multisite network.
82                          *
83                          * The $type parameter allows you to differentiate between the type of advanced
84                          * plugins to filter the display of. Contexts include 'mustuse' and 'dropins'.
85                          *
86                          * @since 3.0.0
87                          *
88                          * @param bool   $show Whether to show the advanced plugins for the specified
89                          *                     plugin type. Default true.
90                          * @param string $type The plugin type. Accepts 'mustuse', 'dropins'.
91                          */
92                         if ( apply_filters( 'show_advanced_plugins', true, 'mustuse' ) ) {
93                                 $plugins['mustuse'] = get_mu_plugins();
94                         }
95
96                         /** This action is documented in wp-admin/includes/class-wp-plugins-list-table.php */
97                         if ( apply_filters( 'show_advanced_plugins', true, 'dropins' ) )
98                                 $plugins['dropins'] = get_dropins();
99
100                         if ( current_user_can( 'update_plugins' ) ) {
101                                 $current = get_site_transient( 'update_plugins' );
102                                 foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
103                                         if ( isset( $current->response[ $plugin_file ] ) ) {
104                                                 $plugins['all'][ $plugin_file ]['update'] = true;
105                                                 $plugins['upgrade'][ $plugin_file ] = $plugins['all'][ $plugin_file ];
106                                         }
107                                 }
108                         }
109                 }
110
111                 set_transient( 'plugin_slugs', array_keys( $plugins['all'] ), DAY_IN_SECONDS );
112
113                 if ( ! $screen->in_admin( 'network' ) ) {
114                         $recently_activated = get_option( 'recently_activated', array() );
115
116                         foreach ( $recently_activated as $key => $time )
117                                 if ( $time + WEEK_IN_SECONDS < time() )
118                                         unset( $recently_activated[$key] );
119                         update_option( 'recently_activated', $recently_activated );
120                 }
121
122                 $plugin_info = get_site_transient( 'update_plugins' );
123
124                 foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
125                         // Extra info if known. array_merge() ensures $plugin_data has precedence if keys collide.
126                         if ( isset( $plugin_info->response[ $plugin_file ] ) ) {
127                                 $plugins['all'][ $plugin_file ] = $plugin_data = array_merge( (array) $plugin_info->response[ $plugin_file ], $plugin_data );
128                         } elseif ( isset( $plugin_info->no_update[ $plugin_file ] ) ) {
129                                 $plugins['all'][ $plugin_file ] = $plugin_data = array_merge( (array) $plugin_info->no_update[ $plugin_file ], $plugin_data );
130                         }
131
132                         // Filter into individual sections
133                         if ( is_multisite() && ! $screen->in_admin( 'network' ) && is_network_only_plugin( $plugin_file ) && ! is_plugin_active( $plugin_file ) ) {
134                                 // On the non-network screen, filter out network-only plugins as long as they're not individually activated
135                                 unset( $plugins['all'][ $plugin_file ] );
136                         } elseif ( ! $screen->in_admin( 'network' ) && is_plugin_active_for_network( $plugin_file ) ) {
137                                 // On the non-network screen, filter out network activated plugins
138                                 unset( $plugins['all'][ $plugin_file ] );
139                         } elseif ( ( ! $screen->in_admin( 'network' ) && is_plugin_active( $plugin_file ) )
140                                 || ( $screen->in_admin( 'network' ) && is_plugin_active_for_network( $plugin_file ) ) ) {
141                                 // On the non-network screen, populate the active list with plugins that are individually activated
142                                 // On the network-admin screen, populate the active list with plugins that are network activated
143                                 $plugins['active'][ $plugin_file ] = $plugin_data;
144                         } else {
145                                 if ( ! $screen->in_admin( 'network' ) && isset( $recently_activated[ $plugin_file ] ) ) {
146                                         // On the non-network screen, populate the recently activated list with plugins that have been recently activated
147                                         $plugins['recently_activated'][ $plugin_file ] = $plugin_data;
148                                 }
149                                 // Populate the inactive list with plugins that aren't activated
150                                 $plugins['inactive'][ $plugin_file ] = $plugin_data;
151                         }
152                 }
153
154                 if ( $s ) {
155                         $status = 'search';
156                         $plugins['search'] = array_filter( $plugins['all'], array( $this, '_search_callback' ) );
157                 }
158
159                 $totals = array();
160                 foreach ( $plugins as $type => $list )
161                         $totals[ $type ] = count( $list );
162
163                 if ( empty( $plugins[ $status ] ) && !in_array( $status, array( 'all', 'search' ) ) )
164                         $status = 'all';
165
166                 $this->items = array();
167                 foreach ( $plugins[ $status ] as $plugin_file => $plugin_data ) {
168                         // Translate, Don't Apply Markup, Sanitize HTML
169                         $this->items[$plugin_file] = _get_plugin_data_markup_translate( $plugin_file, $plugin_data, false, true );
170                 }
171
172                 $total_this_page = $totals[ $status ];
173
174                 if ( $orderby ) {
175                         $orderby = ucfirst( $orderby );
176                         $order = strtoupper( $order );
177
178                         uasort( $this->items, array( $this, '_order_callback' ) );
179                 }
180
181                 $plugins_per_page = $this->get_items_per_page( str_replace( '-', '_', $screen->id . '_per_page' ), 999 );
182
183                 $start = ( $page - 1 ) * $plugins_per_page;
184
185                 if ( $total_this_page > $plugins_per_page )
186                         $this->items = array_slice( $this->items, $start, $plugins_per_page );
187
188                 $this->set_pagination_args( array(
189                         'total_items' => $total_this_page,
190                         'per_page' => $plugins_per_page,
191                 ) );
192         }
193
194         /**
195          * @staticvar string $term
196          * @param array $plugin
197          * @return boolean
198          */
199         public function _search_callback( $plugin ) {
200                 static $term;
201                 if ( is_null( $term ) )
202                         $term = wp_unslash( $_REQUEST['s'] );
203
204                 foreach ( $plugin as $value ) {
205                         if ( false !== stripos( strip_tags( $value ), $term ) ) {
206                                 return true;
207                         }
208                 }
209
210                 return false;
211         }
212
213         /**
214          * @global string $orderby
215          * @global string $order
216          * @param array $plugin_a
217          * @param array $plugin_b
218          * @return int
219          */
220         public function _order_callback( $plugin_a, $plugin_b ) {
221                 global $orderby, $order;
222
223                 $a = $plugin_a[$orderby];
224                 $b = $plugin_b[$orderby];
225
226                 if ( $a == $b )
227                         return 0;
228
229                 if ( 'DESC' == $order )
230                         return ( $a < $b ) ? 1 : -1;
231                 else
232                         return ( $a < $b ) ? -1 : 1;
233         }
234
235         public function no_items() {
236                 global $plugins;
237
238                 if ( !empty( $plugins['all'] ) )
239                         _e( 'No plugins found.' );
240                 else
241                         _e( 'You do not appear to have any plugins available at this time.' );
242         }
243
244         public function get_columns() {
245                 global $status;
246
247                 return array(
248                         'cb'          => !in_array( $status, array( 'mustuse', 'dropins' ) ) ? '<input type="checkbox" />' : '',
249                         'name'        => __( 'Plugin' ),
250                         'description' => __( 'Description' ),
251                 );
252         }
253
254         protected function get_sortable_columns() {
255                 return array();
256         }
257
258         protected function get_views() {
259                 global $totals, $status;
260
261                 $status_links = array();
262                 foreach ( $totals as $type => $count ) {
263                         if ( !$count )
264                                 continue;
265
266                         switch ( $type ) {
267                                 case 'all':
268                                         $text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'plugins' );
269                                         break;
270                                 case 'active':
271                                         $text = _n( 'Active <span class="count">(%s)</span>', 'Active <span class="count">(%s)</span>', $count );
272                                         break;
273                                 case 'recently_activated':
274                                         $text = _n( 'Recently Active <span class="count">(%s)</span>', 'Recently Active <span class="count">(%s)</span>', $count );
275                                         break;
276                                 case 'inactive':
277                                         $text = _n( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', $count );
278                                         break;
279                                 case 'mustuse':
280                                         $text = _n( 'Must-Use <span class="count">(%s)</span>', 'Must-Use <span class="count">(%s)</span>', $count );
281                                         break;
282                                 case 'dropins':
283                                         $text = _n( 'Drop-ins <span class="count">(%s)</span>', 'Drop-ins <span class="count">(%s)</span>', $count );
284                                         break;
285                                 case 'upgrade':
286                                         $text = _n( 'Update Available <span class="count">(%s)</span>', 'Update Available <span class="count">(%s)</span>', $count );
287                                         break;
288                         }
289
290                         if ( 'search' != $type ) {
291                                 $status_links[$type] = sprintf( "<a href='%s' %s>%s</a>",
292                                         add_query_arg('plugin_status', $type, 'plugins.php'),
293                                         ( $type == $status ) ? ' class="current"' : '',
294                                         sprintf( $text, number_format_i18n( $count ) )
295                                         );
296                         }
297                 }
298
299                 return $status_links;
300         }
301
302         protected function get_bulk_actions() {
303                 global $status;
304
305                 $actions = array();
306
307                 if ( 'active' != $status )
308                         $actions['activate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Activate' ) : __( 'Activate' );
309
310                 if ( 'inactive' != $status && 'recent' != $status )
311                         $actions['deactivate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Deactivate' ) : __( 'Deactivate' );
312
313                 if ( !is_multisite() || $this->screen->in_admin( 'network' ) ) {
314                         if ( current_user_can( 'update_plugins' ) )
315                                 $actions['update-selected'] = __( 'Update' );
316                         if ( current_user_can( 'delete_plugins' ) && ( 'active' != $status ) )
317                                 $actions['delete-selected'] = __( 'Delete' );
318                 }
319
320                 return $actions;
321         }
322
323         /**
324          * @global string $status
325          * @param string $which
326          * @return null
327          */
328         public function bulk_actions( $which = '' ) {
329                 global $status;
330
331                 if ( in_array( $status, array( 'mustuse', 'dropins' ) ) )
332                         return;
333
334                 parent::bulk_actions( $which );
335         }
336
337         /**
338          * @global string $status
339          * @param string $which
340          * @return null
341          */
342         protected function extra_tablenav( $which ) {
343                 global $status;
344
345                 if ( ! in_array($status, array('recently_activated', 'mustuse', 'dropins') ) )
346                         return;
347
348                 echo '<div class="alignleft actions">';
349
350                 if ( ! $this->screen->in_admin( 'network' ) && 'recently_activated' == $status )
351                         submit_button( __( 'Clear List' ), 'button', 'clear-recent-list', false );
352                 elseif ( 'top' == $which && 'mustuse' == $status )
353                         echo '<p>' . sprintf( __( 'Files in the <code>%s</code> directory are executed automatically.' ), str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) ) . '</p>';
354                 elseif ( 'top' == $which && 'dropins' == $status )
355                         echo '<p>' . sprintf( __( 'Drop-ins are advanced plugins in the <code>%s</code> directory that replace WordPress functionality when present.' ), str_replace( ABSPATH, '', WP_CONTENT_DIR ) ) . '</p>';
356
357                 echo '</div>';
358         }
359
360         public function current_action() {
361                 if ( isset($_POST['clear-recent-list']) )
362                         return 'clear-recent-list';
363
364                 return parent::current_action();
365         }
366
367         public function display_rows() {
368                 global $status;
369
370                 if ( is_multisite() && ! $this->screen->in_admin( 'network' ) && in_array( $status, array( 'mustuse', 'dropins' ) ) )
371                         return;
372
373                 foreach ( $this->items as $plugin_file => $plugin_data )
374                         $this->single_row( array( $plugin_file, $plugin_data ) );
375         }
376
377         /**
378          * @global string $status
379          * @global int $page
380          * @global string $s
381          * @global array $totals
382          * @param array $item
383          */
384         public function single_row( $item ) {
385                 global $status, $page, $s, $totals;
386
387                 list( $plugin_file, $plugin_data ) = $item;
388                 $context = $status;
389                 $screen = $this->screen;
390
391                 // Pre-order.
392                 $actions = array(
393                         'deactivate' => '',
394                         'activate' => '',
395                         'details' => '',
396                         'edit' => '',
397                         'delete' => '',
398                 );
399
400                 if ( 'mustuse' == $context ) {
401                         $is_active = true;
402                 } elseif ( 'dropins' == $context ) {
403                         $dropins = _get_dropins();
404                         $plugin_name = $plugin_file;
405                         if ( $plugin_file != $plugin_data['Name'] )
406                                 $plugin_name .= '<br/>' . $plugin_data['Name'];
407                         if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant
408                                 $is_active = true;
409                                 $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
410                         } elseif ( defined( $dropins[ $plugin_file ][1] ) && constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
411                                 $is_active = true;
412                                 $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
413                         } else {
414                                 $is_active = false;
415                                 $description = '<p><strong>' . $dropins[ $plugin_file ][0] . ' <span class="attention">' . __('Inactive:') . '</span></strong> ' . sprintf( __( 'Requires <code>%s</code> in <code>wp-config.php</code>.' ), "define('" . $dropins[ $plugin_file ][1] . "', true);" ) . '</p>';
416                         }
417                         if ( $plugin_data['Description'] )
418                                 $description .= '<p>' . $plugin_data['Description'] . '</p>';
419                 } else {
420                         if ( $screen->in_admin( 'network' ) )
421                                 $is_active = is_plugin_active_for_network( $plugin_file );
422                         else
423                                 $is_active = is_plugin_active( $plugin_file );
424
425                         if ( $screen->in_admin( 'network' ) ) {
426                                 if ( $is_active ) {
427                                         if ( current_user_can( 'manage_network_plugins' ) )
428                                                 $actions['deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate this plugin') . '">' . __('Network Deactivate') . '</a>';
429                                 } else {
430                                         if ( current_user_can( 'manage_network_plugins' ) )
431                                                 $actions['activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate this plugin for all sites in this network') . '" class="edit">' . __('Network Activate') . '</a>';
432                                         if ( current_user_can( 'delete_plugins' ) && ! is_plugin_active( $plugin_file ) )
433                                                 $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
434                                 }
435                         } else {
436                                 if ( $is_active ) {
437                                         $actions['deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate this plugin') . '">' . __('Deactivate') . '</a>';
438                                 } else {
439                                         $actions['activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate this plugin') . '" class="edit">' . __('Activate') . '</a>';
440
441                                         if ( ! is_multisite() && current_user_can('delete_plugins') )
442                                                 $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
443                                 } // end if $is_active
444
445                          } // end if $screen->in_admin( 'network' )
446
447                         if ( ( ! is_multisite() || $screen->in_admin( 'network' ) ) && current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
448                                 $actions['edit'] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . esc_attr__('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
449                 } // end if $context
450
451                 $prefix = $screen->in_admin( 'network' ) ? 'network_admin_' : '';
452
453                 /**
454                  * Filter the action links displayed for each plugin in the Plugins list table.
455                  *
456                  * The dynamic portion of the hook name, `$prefix`, refers to the context the
457                  * action links are displayed in. The 'network_admin_' prefix is used if the
458                  * current screen is the Network plugins list table. The prefix is empty ('')
459                  * if the current screen is the site plugins list table.
460                  *
461                  * The default action links for the Network plugins list table include
462                  * 'Network Activate', 'Network Deactivate', 'Edit', and 'Delete'.
463                  *
464                  * The default action links for the site plugins list table include
465                  * 'Activate', 'Deactivate', and 'Edit', for a network site, and
466                  * 'Activate', 'Deactivate', 'Edit', and 'Delete' for a single site.
467                  *
468                  * @since 2.5.0
469                  *
470                  * @param array  $actions     An array of plugin action links.
471                  * @param string $plugin_file Path to the plugin file.
472                  * @param array  $plugin_data An array of plugin data.
473                  * @param string $context     The plugin context. Defaults are 'All', 'Active',
474                  *                            'Inactive', 'Recently Activated', 'Upgrade',
475                  *                            'Must-Use', 'Drop-ins', 'Search'.
476                  */
477                 $actions = apply_filters( $prefix . 'plugin_action_links', array_filter( $actions ), $plugin_file, $plugin_data, $context );
478
479                 /**
480                  * Filter the list of action links displayed for a specific plugin.
481                  *
482                  * The first dynamic portion of the hook name, $prefix, refers to the context
483                  * the action links are displayed in. The 'network_admin_' prefix is used if the
484                  * current screen is the Network plugins list table. The prefix is empty ('')
485                  * if the current screen is the site plugins list table.
486                  *
487                  * The second dynamic portion of the hook name, $plugin_file, refers to the path
488                  * to the plugin file, relative to the plugins directory.
489                  *
490                  * @since 2.7.0
491                  *
492                  * @param array  $actions     An array of plugin action links.
493                  * @param string $plugin_file Path to the plugin file.
494                  * @param array  $plugin_data An array of plugin data.
495                  * @param string $context     The plugin context. Defaults are 'All', 'Active',
496                  *                            'Inactive', 'Recently Activated', 'Upgrade',
497                  *                            'Must-Use', 'Drop-ins', 'Search'.
498                  */
499                 $actions = apply_filters( $prefix . "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
500
501                 $class = $is_active ? 'active' : 'inactive';
502                 $checkbox_id =  "checkbox_" . md5($plugin_data['Name']);
503                 if ( in_array( $status, array( 'mustuse', 'dropins' ) ) ) {
504                         $checkbox = '';
505                 } else {
506                         $checkbox = "<label class='screen-reader-text' for='" . $checkbox_id . "' >" . sprintf( __( 'Select %s' ), $plugin_data['Name'] ) . "</label>"
507                                 . "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' />";
508                 }
509                 if ( 'dropins' != $context ) {
510                         $description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
511                         $plugin_name = $plugin_data['Name'];
512                 }
513
514                 $id = sanitize_title( $plugin_name );
515                 if ( ! empty( $totals['upgrade'] ) && ! empty( $plugin_data['update'] ) )
516                         $class .= ' update';
517
518                 echo "<tr id='$id' class='$class'>";
519
520                 list( $columns, $hidden ) = $this->get_column_info();
521
522                 foreach ( $columns as $column_name => $column_display_name ) {
523                         $style = '';
524                         if ( in_array( $column_name, $hidden ) )
525                                 $style = ' style="display:none;"';
526
527                         switch ( $column_name ) {
528                                 case 'cb':
529                                         echo "<th scope='row' class='check-column'>$checkbox</th>";
530                                         break;
531                                 case 'name':
532                                         echo "<td class='plugin-title'$style><strong>$plugin_name</strong>";
533                                         echo $this->row_actions( $actions, true );
534                                         echo "</td>";
535                                         break;
536                                 case 'description':
537                                         echo "<td class='column-description desc'$style>
538                                                 <div class='plugin-description'>$description</div>
539                                                 <div class='$class second plugin-version-author-uri'>";
540
541                                         $plugin_meta = array();
542                                         if ( !empty( $plugin_data['Version'] ) )
543                                                 $plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
544                                         if ( !empty( $plugin_data['Author'] ) ) {
545                                                 $author = $plugin_data['Author'];
546                                                 if ( !empty( $plugin_data['AuthorURI'] ) )
547                                                         $author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>';
548                                                 $plugin_meta[] = sprintf( __( 'By %s' ), $author );
549                                         }
550
551                                         // Details link using API info, if available
552                                         if ( isset( $plugin_data['slug'] ) && current_user_can( 'install_plugins' ) ) {
553                                                 $plugin_meta[] = sprintf( '<a href="%s" class="thickbox" aria-label="%s" data-title="%s">%s</a>',
554                                                         esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_data['slug'] .
555                                                                 '&TB_iframe=true&width=600&height=550' ) ),
556                                                         esc_attr( sprintf( __( 'More information about %s' ), $plugin_name ) ),
557                                                         esc_attr( $plugin_name ),
558                                                         __( 'View details' )
559                                                 );
560                                         } elseif ( ! empty( $plugin_data['PluginURI'] ) ) {
561                                                 $plugin_meta[] = sprintf( '<a href="%s">%s</a>',
562                                                         esc_url( $plugin_data['PluginURI'] ),
563                                                         __( 'Visit plugin site' )
564                                                 );
565                                         }
566
567                                         /**
568                                          * Filter the array of row meta for each plugin in the Plugins list table.
569                                          *
570                                          * @since 2.8.0
571                                          *
572                                          * @param array  $plugin_meta An array of the plugin's metadata,
573                                          *                            including the version, author,
574                                          *                            author URI, and plugin URI.
575                                          * @param string $plugin_file Path to the plugin file, relative to the plugins directory.
576                                          * @param array  $plugin_data An array of plugin data.
577                                          * @param string $status      Status of the plugin. Defaults are 'All', 'Active',
578                                          *                            'Inactive', 'Recently Activated', 'Upgrade', 'Must-Use',
579                                          *                            'Drop-ins', 'Search'.
580                                          */
581                                         $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
582                                         echo implode( ' | ', $plugin_meta );
583
584                                         echo "</div></td>";
585                                         break;
586                                 default:
587                                         echo "<td class='$column_name column-$column_name'$style>";
588
589                                         /**
590                                          * Fires inside each custom column of the Plugins list table.
591                                          *
592                                          * @since 3.1.0
593                                          *
594                                          * @param string $column_name Name of the column.
595                                          * @param string $plugin_file Path to the plugin file.
596                                          * @param array  $plugin_data An array of plugin data.
597                                          */
598                                         do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data );
599                                         echo "</td>";
600                         }
601                 }
602
603                 echo "</tr>";
604
605                 /**
606                  * Fires after each row in the Plugins list table.
607                  *
608                  * @since 2.3.0
609                  *
610                  * @param string $plugin_file Path to the plugin file, relative to the plugins directory.
611                  * @param array  $plugin_data An array of plugin data.
612                  * @param string $status      Status of the plugin. Defaults are 'All', 'Active',
613                  *                            'Inactive', 'Recently Activated', 'Upgrade', 'Must-Use',
614                  *                            'Drop-ins', 'Search'.
615                  */
616                 do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
617
618                 /**
619                  * Fires after each specific row in the Plugins list table.
620                  *
621                  * The dynamic portion of the hook name, `$plugin_file`, refers to the path
622                  * to the plugin file, relative to the plugins directory.
623                  *
624                  * @since 2.7.0
625                  *
626                  * @param string $plugin_file Path to the plugin file, relative to the plugins directory.
627                  * @param array  $plugin_data An array of plugin data.
628                  * @param string $status      Status of the plugin. Defaults are 'All', 'Active',
629                  *                            'Inactive', 'Recently Activated', 'Upgrade', 'Must-Use',
630                  *                            'Drop-ins', 'Search'.
631                  */
632                 do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $status );
633         }
634 }