]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/class-wp-plugins-list-table.php
WordPress 3.3.2-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         function __construct() {
13                 global $status, $page;
14
15                 $status = 'all';
16                 if ( isset( $_REQUEST['plugin_status'] ) && in_array( $_REQUEST['plugin_status'], array( 'active', 'inactive', 'recently_activated', 'upgrade', 'network', 'mustuse', 'dropins', 'search' ) ) )
17                         $status = $_REQUEST['plugin_status'];
18
19                 if ( isset($_REQUEST['s']) )
20                         $_SERVER['REQUEST_URI'] = add_query_arg('s', stripslashes($_REQUEST['s']) );
21
22                 $page = $this->get_pagenum();
23
24                 parent::__construct( array(
25                         'plural' => 'plugins',
26                 ) );
27         }
28
29         function get_table_classes() {
30                 return array( 'widefat', $this->_args['plural'] );
31         }
32
33         function ajax_user_can() {
34                 if ( is_multisite() ) {
35                         $menu_perms = get_site_option( 'menu_items', array() );
36
37                         if ( empty( $menu_perms['plugins'] ) && ! is_super_admin() )
38                                 return false;
39                 }
40
41                 return current_user_can('activate_plugins');
42         }
43
44         function prepare_items() {
45                 global $status, $plugins, $totals, $page, $orderby, $order, $s;
46
47                 wp_reset_vars( array( 'orderby', 'order', 's' ) );
48
49                 $plugins = array(
50                         'all' => apply_filters( 'all_plugins', get_plugins() ),
51                         'search' => array(),
52                         'active' => array(),
53                         'inactive' => array(),
54                         'recently_activated' => array(),
55                         'upgrade' => array(),
56                         'mustuse' => array(),
57                         'dropins' => array()
58                 );
59
60                 $screen = get_current_screen();
61
62                 if ( ! is_multisite() || ( $screen->is_network && current_user_can('manage_network_plugins') ) ) {
63                         if ( apply_filters( 'show_advanced_plugins', true, 'mustuse' ) )
64                                 $plugins['mustuse'] = get_mu_plugins();
65                         if ( apply_filters( 'show_advanced_plugins', true, 'dropins' ) )
66                                 $plugins['dropins'] = get_dropins();
67
68                         $current = get_site_transient( 'update_plugins' );
69                         foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
70                                 if ( isset( $current->response[ $plugin_file ] ) )
71                                         $plugins['upgrade'][ $plugin_file ] = $plugin_data;
72                         }
73                 }
74
75                 set_transient( 'plugin_slugs', array_keys( $plugins['all'] ), 86400 );
76
77                 $recently_activated = get_option( 'recently_activated', array() );
78
79                 $one_week = 7*24*60*60;
80                 foreach ( $recently_activated as $key => $time )
81                         if ( $time + $one_week < time() )
82                                 unset( $recently_activated[$key] );
83                 update_option( 'recently_activated', $recently_activated );
84
85                 foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
86                         // Filter into individual sections
87                         if ( is_multisite() && is_network_only_plugin( $plugin_file ) && !$screen->is_network ) {
88                                 unset( $plugins['all'][ $plugin_file] );
89                         } elseif ( is_plugin_active_for_network($plugin_file) && !$screen->is_network ) {
90                                 unset( $plugins['all'][ $plugin_file ] );
91                         } elseif ( is_multisite() && is_network_only_plugin( $plugin_file ) && !current_user_can( 'manage_network_plugins' ) ) {
92                                 $plugins['network'][ $plugin_file ] = $plugin_data;
93                         } elseif ( ( !$screen->is_network && is_plugin_active( $plugin_file ) )
94                                 || ( $screen->is_network && is_plugin_active_for_network( $plugin_file ) ) ) {
95                                 $plugins['active'][ $plugin_file ] = $plugin_data;
96                         } else {
97                                 if ( !$screen->is_network && isset( $recently_activated[ $plugin_file ] ) ) // Was the plugin recently activated?
98                                         $plugins['recently_activated'][ $plugin_file ] = $plugin_data;
99                                 $plugins['inactive'][ $plugin_file ] = $plugin_data;
100                         }
101                 }
102
103                 if ( !current_user_can( 'update_plugins' ) )
104                         $plugins['upgrade'] = array();
105
106                 if ( $s ) {
107                         $status = 'search';
108                         $plugins['search'] = array_filter( $plugins['all'], array( &$this, '_search_callback' ) );
109                 }
110
111                 $totals = array();
112                 foreach ( $plugins as $type => $list )
113                         $totals[ $type ] = count( $list );
114
115                 if ( empty( $plugins[ $status ] ) && !in_array( $status, array( 'all', 'search' ) ) )
116                         $status = 'all';
117
118                 $this->items = array();
119                 foreach ( $plugins[ $status ] as $plugin_file => $plugin_data ) {
120                         // Translate, Don't Apply Markup, Sanitize HTML
121                         $this->items[$plugin_file] = _get_plugin_data_markup_translate( $plugin_file, $plugin_data, false, true );
122                 }
123
124                 $total_this_page = $totals[ $status ];
125
126                 if ( $orderby ) {
127                         $orderby = ucfirst( $orderby );
128                         $order = strtoupper( $order );
129
130                         uasort( $this->items, array( &$this, '_order_callback' ) );
131                 }
132
133                 $plugins_per_page = $this->get_items_per_page( str_replace( '-', '_', $screen->id . '_per_page' ), 999 );
134
135                 $start = ( $page - 1 ) * $plugins_per_page;
136
137                 if ( $total_this_page > $plugins_per_page )
138                         $this->items = array_slice( $this->items, $start, $plugins_per_page );
139
140                 $this->set_pagination_args( array(
141                         'total_items' => $total_this_page,
142                         'per_page' => $plugins_per_page,
143                 ) );
144         }
145
146         function _search_callback( $plugin ) {
147                 static $term;
148                 if ( is_null( $term ) )
149                         $term = stripslashes( $_REQUEST['s'] );
150
151                 foreach ( $plugin as $value )
152                         if ( stripos( $value, $term ) !== false )
153                                 return true;
154
155                 return false;
156         }
157
158         function _order_callback( $plugin_a, $plugin_b ) {
159                 global $orderby, $order;
160
161                 $a = $plugin_a[$orderby];
162                 $b = $plugin_b[$orderby];
163
164                 if ( $a == $b )
165                         return 0;
166
167                 if ( 'DESC' == $order )
168                         return ( $a < $b ) ? 1 : -1;
169                 else
170                         return ( $a < $b ) ? -1 : 1;
171         }
172
173         function no_items() {
174                 global $plugins;
175
176                 if ( !empty( $plugins['all'] ) )
177                         _e( 'No plugins found.' );
178                 else
179                         _e( 'You do not appear to have any plugins available at this time.' );
180         }
181
182         function get_columns() {
183                 global $status;
184
185                 return array(
186                         'cb'          => !in_array( $status, array( 'mustuse', 'dropins' ) ) ? '<input type="checkbox" />' : '',
187                         'name'        => __( 'Plugin' ),
188                         'description' => __( 'Description' ),
189                 );
190         }
191
192         function get_sortable_columns() {
193                 return array();
194         }
195
196         function get_views() {
197                 global $totals, $status;
198
199                 $status_links = array();
200                 foreach ( $totals as $type => $count ) {
201                         if ( !$count )
202                                 continue;
203
204                         switch ( $type ) {
205                                 case 'all':
206                                         $text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'plugins' );
207                                         break;
208                                 case 'active':
209                                         $text = _n( 'Active <span class="count">(%s)</span>', 'Active <span class="count">(%s)</span>', $count );
210                                         break;
211                                 case 'recently_activated':
212                                         $text = _n( 'Recently Active <span class="count">(%s)</span>', 'Recently Active <span class="count">(%s)</span>', $count );
213                                         break;
214                                 case 'inactive':
215                                         $text = _n( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', $count );
216                                         break;
217                                 case 'network':
218                                         $text = _n( 'Network <span class="count">(%s)</span>', 'Network <span class="count">(%s)</span>', $count );
219                                         break;
220                                 case 'mustuse':
221                                         $text = _n( 'Must-Use <span class="count">(%s)</span>', 'Must-Use <span class="count">(%s)</span>', $count );
222                                         break;
223                                 case 'dropins':
224                                         $text = _n( 'Drop-ins <span class="count">(%s)</span>', 'Drop-ins <span class="count">(%s)</span>', $count );
225                                         break;
226                                 case 'upgrade':
227                                         $text = _n( 'Update Available <span class="count">(%s)</span>', 'Update Available <span class="count">(%s)</span>', $count );
228                                         break;
229                         }
230
231                         if ( 'search' != $type ) {
232                                 $status_links[$type] = sprintf( "<a href='%s' %s>%s</a>",
233                                         add_query_arg('plugin_status', $type, 'plugins.php'),
234                                         ( $type == $status ) ? ' class="current"' : '',
235                                         sprintf( $text, number_format_i18n( $count ) )
236                                         );
237                         }
238                 }
239
240                 return $status_links;
241         }
242
243         function get_bulk_actions() {
244                 global $status;
245
246                 $actions = array();
247
248                 $screen = get_current_screen();
249
250                 if ( 'active' != $status ) {
251                         $action = $screen->is_network ? 'network-activate-selected' : 'activate-selected';
252                         $actions[ $action ] = __( 'Activate' );
253                 }
254
255                 if ( 'inactive' != $status && 'recent' != $status )
256                         $actions['deactivate-selected'] = __( 'Deactivate' );
257
258                 if ( !is_multisite() || $screen->is_network ) {
259                         if ( current_user_can( 'update_plugins' ) )
260                                 $actions['update-selected'] = __( 'Update' );
261                         if ( current_user_can( 'delete_plugins' ) && ( 'active' != $status ) )
262                                 $actions['delete-selected'] = __( 'Delete' );
263                 }
264
265                 return $actions;
266         }
267
268         function bulk_actions( $which ) {
269                 global $status;
270
271                 if ( in_array( $status, array( 'mustuse', 'dropins' ) ) )
272                         return;
273
274                 parent::bulk_actions( $which );
275         }
276
277         function extra_tablenav( $which ) {
278                 global $status;
279
280                 if ( ! in_array($status, array('recently_activated', 'mustuse', 'dropins') ) )
281                         return;
282
283                 echo '<div class="alignleft actions">';
284
285                 if ( 'recently_activated' == $status )
286                         submit_button( __( 'Clear List' ), 'secondary', 'clear-recent-list', false );
287                 elseif ( 'top' == $which && 'mustuse' == $status )
288                         echo '<p>' . sprintf( __( 'Files in the <code>%s</code> directory are executed automatically.' ), str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) ) . '</p>';
289                 elseif ( 'top' == $which && 'dropins' == $status )
290                         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>';
291
292                 echo '</div>';
293         }
294
295         function current_action() {
296                 if ( isset($_POST['clear-recent-list']) )
297                         return 'clear-recent-list';
298
299                 return parent::current_action();
300         }
301
302         function display_rows() {
303                 global $status;
304
305                 $screen = get_current_screen();
306
307                 if ( is_multisite() && !$screen->is_network && in_array( $status, array( 'mustuse', 'dropins' ) ) )
308                         return;
309
310                 foreach ( $this->items as $plugin_file => $plugin_data )
311                         $this->single_row( $plugin_file, $plugin_data );
312         }
313
314         function single_row( $plugin_file, $plugin_data ) {
315                 global $status, $page, $s;
316
317                 $context = $status;
318
319                 $screen = get_current_screen();
320
321                 // preorder
322                 $actions = array(
323                         'network_deactivate' => '', 'deactivate' => '',
324                         'network_only' => '', 'activate' => '',
325                         'network_activate' => '',
326                         'edit' => '',
327                         'delete' => '',
328                 );
329
330                 if ( 'mustuse' == $context ) {
331                         $is_active = true;
332                 } elseif ( 'dropins' == $context ) {
333                         $dropins = _get_dropins();
334                         $plugin_name = $plugin_file;
335                         if ( $plugin_file != $plugin_data['Name'] )
336                                 $plugin_name .= '<br/>' . $plugin_data['Name'];
337                         if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant
338                                 $is_active = true;
339                                 $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
340                         } elseif ( constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
341                                 $is_active = true;
342                                 $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
343                         } else {
344                                 $is_active = false;
345                                 $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>';
346                         }
347                         if ( $plugin_data['Description'] )
348                                 $description .= '<p>' . $plugin_data['Description'] . '</p>';
349                 } else {
350                         $is_active_for_network = is_plugin_active_for_network($plugin_file);
351                         if ( $screen->is_network )
352                                 $is_active = $is_active_for_network;
353                         else
354                                 $is_active = is_plugin_active( $plugin_file );
355
356                         if ( $is_active_for_network && !is_super_admin() && !$screen->is_network )
357                                 return;
358
359                         if ( $screen->is_network ) {
360                                 if ( $is_active_for_network ) {
361                                         if ( current_user_can( 'manage_network_plugins' ) )
362                                                 $actions['network_deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;networkwide=1&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>';
363                                 } else {
364                                         if ( current_user_can( 'manage_network_plugins' ) )
365                                                 $actions['network_activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;networkwide=1&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>';
366                                         if ( current_user_can( 'delete_plugins' ) && ! is_plugin_active( $plugin_file ) )
367                                                 $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>';
368                                 }
369                         } else {
370                                 if ( $is_active ) {
371                                         $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>';
372                                 } else {
373                                         $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>';
374
375                                         if ( ! is_multisite() && current_user_can('delete_plugins') )
376                                                 $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>';
377                                 } // end if $is_active
378                          } // end if $screen->is_network
379
380                         if ( ( ! is_multisite() || $screen->is_network ) && current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
381                                 $actions['edit'] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . esc_attr__('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
382                 } // end if $context
383
384                 $prefix = $screen->is_network ? 'network_admin_' : '';
385                 $actions = apply_filters( $prefix . 'plugin_action_links', array_filter( $actions ), $plugin_file, $plugin_data, $context );
386                 $actions = apply_filters( $prefix . "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
387
388                 $class = $is_active ? 'active' : 'inactive';
389                 $checkbox_id =  "checkbox_" . md5($plugin_data['Name']);
390                 $checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $plugin_data['Name'] . "</label>";
391                 if ( 'dropins' != $context ) {
392                         $description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
393                         $plugin_name = $plugin_data['Name'];
394                 }
395
396                 $id = sanitize_title( $plugin_name );
397
398                 echo "<tr id='$id' class='$class'>";
399
400                 list( $columns, $hidden ) = $this->get_column_info();
401
402                 foreach ( $columns as $column_name => $column_display_name ) {
403                         $style = '';
404                         if ( in_array( $column_name, $hidden ) )
405                                 $style = ' style="display:none;"';
406
407                         switch ( $column_name ) {
408                                 case 'cb':
409                                         echo "<th scope='row' class='check-column'>$checkbox</th>";
410                                         break;
411                                 case 'name':
412                                         echo "<td class='plugin-title'$style><strong>$plugin_name</strong>";
413                                         echo $this->row_actions( $actions, true );
414                                         echo "</td>";
415                                         break;
416                                 case 'description':
417                                         echo "<td class='column-description desc'$style>
418                                                 <div class='plugin-description'>$description</div>
419                                                 <div class='$class second plugin-version-author-uri'>";
420
421                                         $plugin_meta = array();
422                                         if ( !empty( $plugin_data['Version'] ) )
423                                                 $plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
424                                         if ( !empty( $plugin_data['Author'] ) ) {
425                                                 $author = $plugin_data['Author'];
426                                                 if ( !empty( $plugin_data['AuthorURI'] ) )
427                                                         $author = '<a href="' . $plugin_data['AuthorURI'] . '" title="' . esc_attr__( 'Visit author homepage' ) . '">' . $plugin_data['Author'] . '</a>';
428                                                 $plugin_meta[] = sprintf( __( 'By %s' ), $author );
429                                         }
430                                         if ( ! empty( $plugin_data['PluginURI'] ) )
431                                                 $plugin_meta[] = '<a href="' . $plugin_data['PluginURI'] . '" title="' . esc_attr__( 'Visit plugin site' ) . '">' . __( 'Visit plugin site' ) . '</a>';
432
433                                         $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
434                                         echo implode( ' | ', $plugin_meta );
435
436                                         echo "</div></td>";
437                                         break;
438                                 default:
439                                         echo "<td class='$column_name column-$column_name'$style>";
440                                         do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data );
441                                         echo "</td>";
442                         }
443                 }
444
445                 echo "</tr>";
446
447                 do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
448                 do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $status );
449         }
450 }
451
452 ?>