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