]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/class-wp-plugins-list-table.php
WordPress 4.0.1-scripts
[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         public function _search_callback( $plugin ) {
195                 static $term;
196                 if ( is_null( $term ) )
197                         $term = wp_unslash( $_REQUEST['s'] );
198
199                 foreach ( $plugin as $value ) {
200                         if ( false !== stripos( strip_tags( $value ), $term ) ) {
201                                 return true;
202                         }
203                 }
204
205                 return false;
206         }
207
208         public function _order_callback( $plugin_a, $plugin_b ) {
209                 global $orderby, $order;
210
211                 $a = $plugin_a[$orderby];
212                 $b = $plugin_b[$orderby];
213
214                 if ( $a == $b )
215                         return 0;
216
217                 if ( 'DESC' == $order )
218                         return ( $a < $b ) ? 1 : -1;
219                 else
220                         return ( $a < $b ) ? -1 : 1;
221         }
222
223         public function no_items() {
224                 global $plugins;
225
226                 if ( !empty( $plugins['all'] ) )
227                         _e( 'No plugins found.' );
228                 else
229                         _e( 'You do not appear to have any plugins available at this time.' );
230         }
231
232         public function get_columns() {
233                 global $status;
234
235                 return array(
236                         'cb'          => !in_array( $status, array( 'mustuse', 'dropins' ) ) ? '<input type="checkbox" />' : '',
237                         'name'        => __( 'Plugin' ),
238                         'description' => __( 'Description' ),
239                 );
240         }
241
242         protected function get_sortable_columns() {
243                 return array();
244         }
245
246         protected function get_views() {
247                 global $totals, $status;
248
249                 $status_links = array();
250                 foreach ( $totals as $type => $count ) {
251                         if ( !$count )
252                                 continue;
253
254                         switch ( $type ) {
255                                 case 'all':
256                                         $text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'plugins' );
257                                         break;
258                                 case 'active':
259                                         $text = _n( 'Active <span class="count">(%s)</span>', 'Active <span class="count">(%s)</span>', $count );
260                                         break;
261                                 case 'recently_activated':
262                                         $text = _n( 'Recently Active <span class="count">(%s)</span>', 'Recently Active <span class="count">(%s)</span>', $count );
263                                         break;
264                                 case 'inactive':
265                                         $text = _n( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', $count );
266                                         break;
267                                 case 'mustuse':
268                                         $text = _n( 'Must-Use <span class="count">(%s)</span>', 'Must-Use <span class="count">(%s)</span>', $count );
269                                         break;
270                                 case 'dropins':
271                                         $text = _n( 'Drop-ins <span class="count">(%s)</span>', 'Drop-ins <span class="count">(%s)</span>', $count );
272                                         break;
273                                 case 'upgrade':
274                                         $text = _n( 'Update Available <span class="count">(%s)</span>', 'Update Available <span class="count">(%s)</span>', $count );
275                                         break;
276                         }
277
278                         if ( 'search' != $type ) {
279                                 $status_links[$type] = sprintf( "<a href='%s' %s>%s</a>",
280                                         add_query_arg('plugin_status', $type, 'plugins.php'),
281                                         ( $type == $status ) ? ' class="current"' : '',
282                                         sprintf( $text, number_format_i18n( $count ) )
283                                         );
284                         }
285                 }
286
287                 return $status_links;
288         }
289
290         protected function get_bulk_actions() {
291                 global $status;
292
293                 $actions = array();
294
295                 if ( 'active' != $status )
296                         $actions['activate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Activate' ) : __( 'Activate' );
297
298                 if ( 'inactive' != $status && 'recent' != $status )
299                         $actions['deactivate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Deactivate' ) : __( 'Deactivate' );
300
301                 if ( !is_multisite() || $this->screen->in_admin( 'network' ) ) {
302                         if ( current_user_can( 'update_plugins' ) )
303                                 $actions['update-selected'] = __( 'Update' );
304                         if ( current_user_can( 'delete_plugins' ) && ( 'active' != $status ) )
305                                 $actions['delete-selected'] = __( 'Delete' );
306                 }
307
308                 return $actions;
309         }
310
311         public function bulk_actions( $which = '' ) {
312                 global $status;
313
314                 if ( in_array( $status, array( 'mustuse', 'dropins' ) ) )
315                         return;
316
317                 parent::bulk_actions( $which );
318         }
319
320         protected function extra_tablenav( $which ) {
321                 global $status;
322
323                 if ( ! in_array($status, array('recently_activated', 'mustuse', 'dropins') ) )
324                         return;
325
326                 echo '<div class="alignleft actions">';
327
328                 if ( ! $this->screen->in_admin( 'network' ) && 'recently_activated' == $status )
329                         submit_button( __( 'Clear List' ), 'button', 'clear-recent-list', false );
330                 elseif ( 'top' == $which && 'mustuse' == $status )
331                         echo '<p>' . sprintf( __( 'Files in the <code>%s</code> directory are executed automatically.' ), str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) ) . '</p>';
332                 elseif ( 'top' == $which && 'dropins' == $status )
333                         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>';
334
335                 echo '</div>';
336         }
337
338         public function current_action() {
339                 if ( isset($_POST['clear-recent-list']) )
340                         return 'clear-recent-list';
341
342                 return parent::current_action();
343         }
344
345         public function display_rows() {
346                 global $status;
347
348                 if ( is_multisite() && ! $this->screen->in_admin( 'network' ) && in_array( $status, array( 'mustuse', 'dropins' ) ) )
349                         return;
350
351                 foreach ( $this->items as $plugin_file => $plugin_data )
352                         $this->single_row( array( $plugin_file, $plugin_data ) );
353         }
354
355         public function single_row( $item ) {
356                 global $status, $page, $s, $totals;
357
358                 list( $plugin_file, $plugin_data ) = $item;
359                 $context = $status;
360                 $screen = $this->screen;
361
362                 // Pre-order.
363                 $actions = array(
364                         'deactivate' => '',
365                         'activate' => '',
366                         'details' => '',
367                         'edit' => '',
368                         'delete' => '',
369                 );
370
371                 if ( 'mustuse' == $context ) {
372                         $is_active = true;
373                 } elseif ( 'dropins' == $context ) {
374                         $dropins = _get_dropins();
375                         $plugin_name = $plugin_file;
376                         if ( $plugin_file != $plugin_data['Name'] )
377                                 $plugin_name .= '<br/>' . $plugin_data['Name'];
378                         if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant
379                                 $is_active = true;
380                                 $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
381                         } elseif ( defined( $dropins[ $plugin_file ][1] ) && constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
382                                 $is_active = true;
383                                 $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
384                         } else {
385                                 $is_active = false;
386                                 $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>';
387                         }
388                         if ( $plugin_data['Description'] )
389                                 $description .= '<p>' . $plugin_data['Description'] . '</p>';
390                 } else {
391                         if ( $screen->in_admin( 'network' ) )
392                                 $is_active = is_plugin_active_for_network( $plugin_file );
393                         else
394                                 $is_active = is_plugin_active( $plugin_file );
395
396                         if ( $screen->in_admin( 'network' ) ) {
397                                 if ( $is_active ) {
398                                         if ( current_user_can( 'manage_network_plugins' ) )
399                                                 $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>';
400                                 } else {
401                                         if ( current_user_can( 'manage_network_plugins' ) )
402                                                 $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>';
403                                         if ( current_user_can( 'delete_plugins' ) && ! is_plugin_active( $plugin_file ) )
404                                                 $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>';
405                                 }
406                         } else {
407                                 if ( $is_active ) {
408                                         $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>';
409                                 } else {
410                                         $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>';
411
412                                         if ( ! is_multisite() && current_user_can('delete_plugins') )
413                                                 $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>';
414                                 } // end if $is_active
415
416                          } // end if $screen->in_admin( 'network' )
417
418                         if ( ( ! is_multisite() || $screen->in_admin( 'network' ) ) && current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
419                                 $actions['edit'] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . esc_attr__('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
420                 } // end if $context
421
422                 $prefix = $screen->in_admin( 'network' ) ? 'network_admin_' : '';
423
424                 /**
425                  * Filter the action links displayed for each plugin in the Plugins list table.
426                  *
427                  * The dynamic portion of the hook name, $prefix, refers to the context the
428                  * action links are displayed in. The 'network_admin_' prefix is used if the
429                  * current screen is the Network plugins list table. The prefix is empty ('')
430                  * if the current screen is the site plugins list table.
431                  *
432                  * The default action links for the Network plugins list table include
433                  * 'Network Activate', 'Network Deactivate', 'Edit', and 'Delete'.
434                  *
435                  * The default action links for the site plugins list table include
436                  * 'Activate', 'Deactivate', and 'Edit', for a network site, and
437                  * 'Activate', 'Deactivate', 'Edit', and 'Delete' for a single site.
438                  *
439                  * @since 2.5.0
440                  *
441                  * @param array  $actions     An array of plugin action links.
442                  * @param string $plugin_file Path to the plugin file.
443                  * @param array  $plugin_data An array of plugin data.
444                  * @param string $context     The plugin context. Defaults are 'All', 'Active',
445                  *                            'Inactive', 'Recently Activated', 'Upgrade',
446                  *                            'Must-Use', 'Drop-ins', 'Search'.
447                  */
448                 $actions = apply_filters( $prefix . 'plugin_action_links', array_filter( $actions ), $plugin_file, $plugin_data, $context );
449
450                 /**
451                  * Filter the list of action links displayed for a specific plugin.
452                  *
453                  * The first dynamic portion of the hook name, $prefix, refers to the context
454                  * the action links are displayed in. The 'network_admin_' prefix is used if the
455                  * current screen is the Network plugins list table. The prefix is empty ('')
456                  * if the current screen is the site plugins list table.
457                  *
458                  * The second dynamic portion of the hook name, $plugin_file, refers to the path
459                  * to the plugin file, relative to the plugins directory.
460                  *
461                  * @since 2.7.0
462                  *
463                  * @param array  $actions     An array of plugin action links.
464                  * @param string $plugin_file Path to the plugin file.
465                  * @param array  $plugin_data An array of plugin data.
466                  * @param string $context     The plugin context. Defaults are 'All', 'Active',
467                  *                            'Inactive', 'Recently Activated', 'Upgrade',
468                  *                            'Must-Use', 'Drop-ins', 'Search'.
469                  */
470                 $actions = apply_filters( $prefix . "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
471
472                 $class = $is_active ? 'active' : 'inactive';
473                 $checkbox_id =  "checkbox_" . md5($plugin_data['Name']);
474                 if ( in_array( $status, array( 'mustuse', 'dropins' ) ) ) {
475                         $checkbox = '';
476                 } else {
477                         $checkbox = "<label class='screen-reader-text' for='" . $checkbox_id . "' >" . sprintf( __( 'Select %s' ), $plugin_data['Name'] ) . "</label>"
478                                 . "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' />";
479                 }
480                 if ( 'dropins' != $context ) {
481                         $description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
482                         $plugin_name = $plugin_data['Name'];
483                 }
484
485                 $id = sanitize_title( $plugin_name );
486                 if ( ! empty( $totals['upgrade'] ) && ! empty( $plugin_data['update'] ) )
487                         $class .= ' update';
488
489                 echo "<tr id='$id' class='$class'>";
490
491                 list( $columns, $hidden ) = $this->get_column_info();
492
493                 foreach ( $columns as $column_name => $column_display_name ) {
494                         $style = '';
495                         if ( in_array( $column_name, $hidden ) )
496                                 $style = ' style="display:none;"';
497
498                         switch ( $column_name ) {
499                                 case 'cb':
500                                         echo "<th scope='row' class='check-column'>$checkbox</th>";
501                                         break;
502                                 case 'name':
503                                         echo "<td class='plugin-title'$style><strong>$plugin_name</strong>";
504                                         echo $this->row_actions( $actions, true );
505                                         echo "</td>";
506                                         break;
507                                 case 'description':
508                                         echo "<td class='column-description desc'$style>
509                                                 <div class='plugin-description'>$description</div>
510                                                 <div class='$class second plugin-version-author-uri'>";
511
512                                         $plugin_meta = array();
513                                         if ( !empty( $plugin_data['Version'] ) )
514                                                 $plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
515                                         if ( !empty( $plugin_data['Author'] ) ) {
516                                                 $author = $plugin_data['Author'];
517                                                 if ( !empty( $plugin_data['AuthorURI'] ) )
518                                                         $author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>';
519                                                 $plugin_meta[] = sprintf( __( 'By %s' ), $author );
520                                         }
521
522                                         // Details link using API info, if available
523                                         if ( isset( $plugin_data['slug'] ) && current_user_can( 'install_plugins' ) ) {
524                                                 $plugin_meta[] = sprintf( '<a href="%s" class="thickbox" aria-label="%s" data-title="%s">%s</a>',
525                                                         esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_data['slug'] .
526                                                                 '&TB_iframe=true&width=600&height=550' ) ),
527                                                         esc_attr( sprintf( __( 'More information about %s' ), $plugin_name ) ),
528                                                         esc_attr( $plugin_name ),
529                                                         __( 'View details' )
530                                                 );
531                                         } elseif ( ! empty( $plugin_data['PluginURI'] ) ) {
532                                                 $plugin_meta[] = sprintf( '<a href="%s">%s</a>',
533                                                         esc_url( $plugin_data['PluginURI'] ),
534                                                         __( 'Visit plugin site' )
535                                                 );
536                                         }
537
538                                         /**
539                                          * Filter the array of row meta for each plugin in the Plugins list table.
540                                          *
541                                          * @since 2.8.0
542                                          *
543                                          * @param array  $plugin_meta An array of the plugin's metadata,
544                                          *                            including the version, author,
545                                          *                            author URI, and plugin URI.
546                                          * @param string $plugin_file Path to the plugin file, relative to the plugins directory.
547                                          * @param array  $plugin_data An array of plugin data.
548                                          * @param string $status      Status of the plugin. Defaults are 'All', 'Active',
549                                          *                            'Inactive', 'Recently Activated', 'Upgrade', 'Must-Use',
550                                          *                            'Drop-ins', 'Search'.
551                                          */
552                                         $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
553                                         echo implode( ' | ', $plugin_meta );
554
555                                         echo "</div></td>";
556                                         break;
557                                 default:
558                                         echo "<td class='$column_name column-$column_name'$style>";
559
560                                         /**
561                                          * Fires inside each custom column of the Plugins list table.
562                                          *
563                                          * @since 3.1.0
564                                          *
565                                          * @param string $column_name Name of the column.
566                                          * @param string $plugin_file Path to the plugin file.
567                                          * @param array  $plugin_data An array of plugin data.
568                                          */
569                                         do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data );
570                                         echo "</td>";
571                         }
572                 }
573
574                 echo "</tr>";
575
576                 /**
577                  * Fires after each row in the Plugins list table.
578                  *
579                  * @since 2.3.0
580                  *
581                  * @param string $plugin_file Path to the plugin file, relative to the plugins directory.
582                  * @param array  $plugin_data An array of plugin data.
583                  * @param string $status      Status of the plugin. Defaults are 'All', 'Active',
584                  *                            'Inactive', 'Recently Activated', 'Upgrade', 'Must-Use',
585                  *                            'Drop-ins', 'Search'.
586                  */
587                 do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
588
589                 /**
590                  * Fires after each specific row in the Plugins list table.
591                  *
592                  * The dynamic portion of the hook name, $plugin_file, refers to the path
593                  * to the plugin file, relative to the plugins directory.
594                  *
595                  * @since 2.7.0
596                  *
597                  * @param string $plugin_file Path to the plugin file, relative to the plugins directory.
598                  * @param array  $plugin_data An array of plugin data.
599                  * @param string $status      Status of the plugin. Defaults are 'All', 'Active',
600                  *                            'Inactive', 'Recently Activated', 'Upgrade', 'Must-Use',
601                  *                            'Drop-ins', 'Search'.
602                  */
603                 do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $status );
604         }
605 }