]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/plugins.php
WordPress 4.3.1
[autoinstalls/wordpress.git] / wp-admin / plugins.php
1 <?php
2 /**
3  * Plugins administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 if ( ! current_user_can('activate_plugins') )
13         wp_die( __( 'You do not have sufficient permissions to manage plugins for this site.' ) );
14
15 $wp_list_table = _get_list_table('WP_Plugins_List_Table');
16 $pagenum = $wp_list_table->get_pagenum();
17
18 $action = $wp_list_table->current_action();
19
20 $plugin = isset($_REQUEST['plugin']) ? $_REQUEST['plugin'] : '';
21 $s = isset($_REQUEST['s']) ? urlencode($_REQUEST['s']) : '';
22
23 // Clean up request URI from temporary args for screen options/paging uri's to work as expected.
24 $_SERVER['REQUEST_URI'] = remove_query_arg(array('error', 'deleted', 'activate', 'activate-multi', 'deactivate', 'deactivate-multi', '_error_nonce'), $_SERVER['REQUEST_URI']);
25
26 wp_enqueue_script( 'updates' );
27
28 if ( $action ) {
29
30         switch ( $action ) {
31                 case 'activate':
32                         if ( ! current_user_can('activate_plugins') )
33                                 wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
34
35                         if ( is_multisite() && ! is_network_admin() && is_network_only_plugin( $plugin ) ) {
36                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
37                                 exit;
38                         }
39
40                         check_admin_referer('activate-plugin_' . $plugin);
41
42                         $result = activate_plugin($plugin, self_admin_url('plugins.php?error=true&plugin=' . $plugin), is_network_admin() );
43                         if ( is_wp_error( $result ) ) {
44                                 if ( 'unexpected_output' == $result->get_error_code() ) {
45                                         $redirect = self_admin_url('plugins.php?error=true&charsout=' . strlen($result->get_error_data()) . '&plugin=' . $plugin . "&plugin_status=$status&paged=$page&s=$s");
46                                         wp_redirect(add_query_arg('_error_nonce', wp_create_nonce('plugin-activation-error_' . $plugin), $redirect));
47                                         exit;
48                                 } else {
49                                         wp_die($result);
50                                 }
51                         }
52
53                         if ( ! is_network_admin() ) {
54                                 $recent = (array) get_option( 'recently_activated' );
55                                 unset( $recent[ $plugin ] );
56                                 update_option( 'recently_activated', $recent );
57                         }
58
59                         if ( isset($_GET['from']) && 'import' == $_GET['from'] ) {
60                                 wp_redirect( self_admin_url("import.php?import=" . str_replace('-importer', '', dirname($plugin))) ); // overrides the ?error=true one above and redirects to the Imports page, stripping the -importer suffix
61                         } else {
62                                 wp_redirect( self_admin_url("plugins.php?activate=true&plugin_status=$status&paged=$page&s=$s") ); // overrides the ?error=true one above
63                         }
64                         exit;
65
66                 case 'activate-selected':
67                         if ( ! current_user_can('activate_plugins') )
68                                 wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
69
70                         check_admin_referer('bulk-plugins');
71
72                         $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
73
74                         if ( is_network_admin() ) {
75                                 foreach ( $plugins as $i => $plugin ) {
76                                         // Only activate plugins which are not already network activated.
77                                         if ( is_plugin_active_for_network( $plugin ) ) {
78                                                 unset( $plugins[ $i ] );
79                                         }
80                                 }
81                         } else {
82                                 foreach ( $plugins as $i => $plugin ) {
83                                         // Only activate plugins which are not already active and are not network-only when on Multisite.
84                                         if ( is_plugin_active( $plugin ) || ( is_multisite() && is_network_only_plugin( $plugin ) ) ) {
85                                                 unset( $plugins[ $i ] );
86                                         }
87                                 }
88                         }
89
90                         if ( empty($plugins) ) {
91                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
92                                 exit;
93                         }
94
95                         activate_plugins($plugins, self_admin_url('plugins.php?error=true'), is_network_admin() );
96
97                         if ( ! is_network_admin() ) {
98                                 $recent = (array) get_option('recently_activated' );
99                                 foreach ( $plugins as $plugin )
100                                         unset( $recent[ $plugin ] );
101                                 update_option( 'recently_activated', $recent );
102                         }
103
104                         wp_redirect( self_admin_url("plugins.php?activate-multi=true&plugin_status=$status&paged=$page&s=$s") );
105                         exit;
106
107                 case 'update-selected' :
108
109                         check_admin_referer( 'bulk-plugins' );
110
111                         if ( isset( $_GET['plugins'] ) )
112                                 $plugins = explode( ',', $_GET['plugins'] );
113                         elseif ( isset( $_POST['checked'] ) )
114                                 $plugins = (array) $_POST['checked'];
115                         else
116                                 $plugins = array();
117
118                         $title = __( 'Update Plugins' );
119                         $parent_file = 'plugins.php';
120
121                         wp_enqueue_script( 'updates' );
122                         require_once(ABSPATH . 'wp-admin/admin-header.php');
123
124                         echo '<div class="wrap">';
125                         echo '<h1>' . esc_html( $title ) . '</h1>';
126
127                         $url = self_admin_url('update.php?action=update-selected&amp;plugins=' . urlencode( join(',', $plugins) ));
128                         $url = wp_nonce_url($url, 'bulk-update-plugins');
129
130                         echo "<iframe src='$url' style='width: 100%; height:100%; min-height:850px;'></iframe>";
131                         echo '</div>';
132                         require_once(ABSPATH . 'wp-admin/admin-footer.php');
133                         exit;
134
135                 case 'error_scrape':
136                         if ( ! current_user_can('activate_plugins') )
137                                 wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
138
139                         check_admin_referer('plugin-activation-error_' . $plugin);
140
141                         $valid = validate_plugin($plugin);
142                         if ( is_wp_error($valid) )
143                                 wp_die($valid);
144
145                         if ( ! WP_DEBUG ) {
146                                 error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
147                         }
148
149                         @ini_set('display_errors', true); //Ensure that Fatal errors are displayed.
150                         // Go back to "sandbox" scope so we get the same errors as before
151                         /**
152                          * @param string $plugin
153                          */
154                         function plugin_sandbox_scrape( $plugin ) {
155                                 wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . $plugin );
156                                 include( WP_PLUGIN_DIR . '/' . $plugin );
157                         }
158                         plugin_sandbox_scrape( $plugin );
159                         /** This action is documented in wp-admin/includes/plugin.php */
160                         do_action( "activate_{$plugin}" );
161                         exit;
162
163                 case 'deactivate':
164                         if ( ! current_user_can('activate_plugins') )
165                                 wp_die(__('You do not have sufficient permissions to deactivate plugins for this site.'));
166
167                         check_admin_referer('deactivate-plugin_' . $plugin);
168
169                         if ( ! is_network_admin() && is_plugin_active_for_network( $plugin ) ) {
170                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
171                                 exit;
172                         }
173
174                         deactivate_plugins( $plugin, false, is_network_admin() );
175                         if ( ! is_network_admin() )
176                                 update_option( 'recently_activated', array( $plugin => time() ) + (array) get_option( 'recently_activated' ) );
177                         if ( headers_sent() )
178                                 echo "<meta http-equiv='refresh' content='" . esc_attr( "0;url=plugins.php?deactivate=true&plugin_status=$status&paged=$page&s=$s" ) . "' />";
179                         else
180                                 wp_redirect( self_admin_url("plugins.php?deactivate=true&plugin_status=$status&paged=$page&s=$s") );
181                         exit;
182
183                 case 'deactivate-selected':
184                         if ( ! current_user_can('activate_plugins') )
185                                 wp_die(__('You do not have sufficient permissions to deactivate plugins for this site.'));
186
187                         check_admin_referer('bulk-plugins');
188
189                         $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
190                         // Do not deactivate plugins which are already deactivated.
191                         if ( is_network_admin() ) {
192                                 $plugins = array_filter( $plugins, 'is_plugin_active_for_network' );
193                         } else {
194                                 $plugins = array_filter( $plugins, 'is_plugin_active' );
195                                 $plugins = array_diff( $plugins, array_filter( $plugins, 'is_plugin_active_for_network' ) );
196                         }
197                         if ( empty($plugins) ) {
198                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
199                                 exit;
200                         }
201
202                         deactivate_plugins( $plugins, false, is_network_admin() );
203
204                         if ( ! is_network_admin() ) {
205                                 $deactivated = array();
206                                 foreach ( $plugins as $plugin )
207                                         $deactivated[ $plugin ] = time();
208                                 update_option( 'recently_activated', $deactivated + (array) get_option( 'recently_activated' ) );
209                         }
210
211                         wp_redirect( self_admin_url("plugins.php?deactivate-multi=true&plugin_status=$status&paged=$page&s=$s") );
212                         exit;
213
214                 case 'delete-selected':
215                         if ( ! current_user_can('delete_plugins') ) {
216                                 wp_die(__('You do not have sufficient permissions to delete plugins for this site.'));
217                         }
218
219                         check_admin_referer('bulk-plugins');
220
221                         //$_POST = from the plugin form; $_GET = from the FTP details screen.
222                         $plugins = isset( $_REQUEST['checked'] ) ? (array) $_REQUEST['checked'] : array();
223                         if ( empty( $plugins ) ) {
224                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
225                                 exit;
226                         }
227
228                         $plugins = array_filter($plugins, 'is_plugin_inactive'); // Do not allow to delete Activated plugins.
229                         if ( empty( $plugins ) ) {
230                                 wp_redirect( self_admin_url( "plugins.php?error=true&main=true&plugin_status=$status&paged=$page&s=$s" ) );
231                                 exit;
232                         }
233
234                         include(ABSPATH . 'wp-admin/update.php');
235
236                         $parent_file = 'plugins.php';
237
238                         if ( ! isset($_REQUEST['verify-delete']) ) {
239                                 wp_enqueue_script('jquery');
240                                 require_once(ABSPATH . 'wp-admin/admin-header.php');
241                                 ?>
242                         <div class="wrap">
243                                 <?php
244                                         $files_to_delete = $plugin_info = array();
245                                         $have_non_network_plugins = false;
246                                         $plugin_translations = wp_get_installed_translations( 'plugins' );
247                                         foreach ( (array) $plugins as $plugin ) {
248                                                 $plugin_slug = dirname( $plugin );
249
250                                                 if ( '.' == $plugin_slug ) {
251                                                         $files_to_delete[] = WP_PLUGIN_DIR . '/' . $plugin;
252                                                         if ( $data = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin ) ) {
253                                                                 $plugin_info[ $plugin ] = $data;
254                                                                 $plugin_info[ $plugin ]['is_uninstallable'] = is_uninstallable_plugin( $plugin );
255                                                                 if ( ! $plugin_info[ $plugin ]['Network'] ) {
256                                                                         $have_non_network_plugins = true;
257                                                                 }
258                                                         }
259                                                 } else {
260                                                         // Locate all the files in that folder.
261                                                         $files = list_files( WP_PLUGIN_DIR . '/' . $plugin_slug );
262                                                         if ( $files ) {
263                                                                 $files_to_delete = array_merge( $files_to_delete, $files );
264                                                         }
265
266                                                         // Get plugins list from that folder.
267                                                         if ( $folder_plugins = get_plugins( '/' . $plugin_slug ) ) {
268                                                                 foreach( $folder_plugins as $plugin_file => $data ) {
269                                                                         $plugin_info[ $plugin_file ] = _get_plugin_data_markup_translate( $plugin_file, $data );
270                                                                         $plugin_info[ $plugin_file ]['is_uninstallable'] = is_uninstallable_plugin( $plugin );
271                                                                         if ( ! $plugin_info[ $plugin_file ]['Network'] ) {
272                                                                                 $have_non_network_plugins = true;
273                                                                         }
274                                                                 }
275                                                         }
276
277                                                         // Add translation files.
278                                                         if ( ! empty( $plugin_translations[ $plugin_slug ] ) ) {
279                                                                 $translations = $plugin_translations[ $plugin_slug ];
280
281                                                                 foreach ( $translations as $translation => $data ) {
282                                                                         $files_to_delete[] = $plugin_slug . '-' . $translation . '.po';
283                                                                         $files_to_delete[] = $plugin_slug . '-' . $translation . '.mo';
284                                                                 }
285                                                         }
286                                                 }
287                                         }
288                                         $plugins_to_delete = count( $plugin_info );
289                                 ?>
290                                 <?php if ( 1 == $plugins_to_delete ) : ?>
291                                         <h1><?php _e( 'Delete Plugin' ); ?></h1>
292                                         <?php if ( $have_non_network_plugins && is_network_admin() ) : ?>
293                                                 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'This plugin may be active on other sites in the network.' ); ?></p></div>
294                                         <?php endif; ?>
295                                         <p><?php _e( 'You are about to remove the following plugin:' ); ?></p>
296                                 <?php else: ?>
297                                         <h1><?php _e( 'Delete Plugins' ); ?></h1>
298                                         <?php if ( $have_non_network_plugins && is_network_admin() ) : ?>
299                                                 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'These plugins may be active on other sites in the network.' ); ?></p></div>
300                                         <?php endif; ?>
301                                         <p><?php _e( 'You are about to remove the following plugins:' ); ?></p>
302                                 <?php endif; ?>
303                                         <ul class="ul-disc">
304                                                 <?php
305                                                 $data_to_delete = false;
306                                                 foreach ( $plugin_info as $plugin ) {
307                                                         if ( $plugin['is_uninstallable'] ) {
308                                                                 /* translators: 1: plugin name, 2: plugin author */
309                                                                 echo '<li>', sprintf( __( '<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)' ), esc_html($plugin['Name']), esc_html($plugin['AuthorName']) ), '</li>';
310                                                                 $data_to_delete = true;
311                                                         } else {
312                                                                 /* translators: 1: plugin name, 2: plugin author */
313                                                                 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), esc_html($plugin['Name']), esc_html($plugin['AuthorName']) ), '</li>';
314                                                         }
315                                                 }
316                                                 ?>
317                                         </ul>
318                                 <p><?php
319                                 if ( $data_to_delete )
320                                         _e('Are you sure you wish to delete these files and data?');
321                                 else
322                                         _e('Are you sure you wish to delete these files?');
323                                 ?></p>
324                                 <form method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;">
325                                         <input type="hidden" name="verify-delete" value="1" />
326                                         <input type="hidden" name="action" value="delete-selected" />
327                                         <?php
328                                                 foreach ( (array) $plugins as $plugin ) {
329                                                         echo '<input type="hidden" name="checked[]" value="' . esc_attr( $plugin ) . '" />';
330                                                 }
331                                         ?>
332                                         <?php wp_nonce_field('bulk-plugins') ?>
333                                         <?php submit_button( $data_to_delete ? __( 'Yes, delete these files and data' ) : __( 'Yes, delete these files' ), 'button', 'submit', false ); ?>
334                                 </form>
335                                 <?php
336                                 $referer = wp_get_referer();
337                                 ?>
338                                 <form method="post" action="<?php echo $referer ? esc_url( $referer ) : ''; ?>" style="display:inline;">
339                                         <?php submit_button( __( 'No, return me to the plugin list' ), 'button', 'submit', false ); ?>
340                                 </form>
341
342                                 <p><a href="#" onclick="jQuery('#files-list').toggle(); return false;"><?php _e('Click to view entire list of files which will be deleted'); ?></a></p>
343                                 <div id="files-list" style="display:none;">
344                                         <ul class="code">
345                                         <?php
346                                                 foreach ( (array) $files_to_delete as $file ) {
347                                                         echo '<li>' . esc_html( str_replace( WP_PLUGIN_DIR, '', $file ) ) . '</li>';
348                                                 }
349                                         ?>
350                                         </ul>
351                                 </div>
352                         </div>
353                                 <?php
354                                 require_once(ABSPATH . 'wp-admin/admin-footer.php');
355                                 exit;
356                         } //Endif verify-delete
357                         $delete_result = delete_plugins($plugins);
358
359                         set_transient('plugins_delete_result_' . $user_ID, $delete_result); //Store the result in a cache rather than a URL param due to object type & length
360                         wp_redirect( self_admin_url("plugins.php?deleted=true&plugin_status=$status&paged=$page&s=$s") );
361                         exit;
362
363                 case 'clear-recent-list':
364                         if ( ! is_network_admin() )
365                                 update_option( 'recently_activated', array() );
366                         break;
367         }
368 }
369
370 $wp_list_table->prepare_items();
371
372 wp_enqueue_script('plugin-install');
373 add_thickbox();
374
375 add_screen_option( 'per_page', array( 'default' => 999 ) );
376
377 get_current_screen()->add_help_tab( array(
378 'id'            => 'overview',
379 'title'         => __('Overview'),
380 'content'       =>
381         '<p>' . __('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.') . '</p>' .
382         '<p>' . sprintf(__('You can find additional plugins for your site by using the <a href="%1$s">Plugin Browser/Installer</a> functionality or by browsing the <a href="%2$s" target="_blank">WordPress Plugin Directory</a> directly and installing new plugins manually. To manually install a plugin you generally just need to upload the plugin file into your <code>/wp-content/plugins</code> directory. Once a plugin has been installed, you can activate it here.'), 'plugin-install.php', 'https://wordpress.org/plugins/') . '</p>'
383 ) );
384 get_current_screen()->add_help_tab( array(
385 'id'            => 'compatibility-problems',
386 'title'         => __('Troubleshooting'),
387 'content'       =>
388         '<p>' . __('Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin&#8217;s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.') . '</p>' .
389         '<p>' . sprintf( __('If something goes wrong with a plugin and you can&#8217;t use WordPress, delete or rename that file in the <code>%s</code> directory and it will be automatically deactivated.'), WP_PLUGIN_DIR) . '</p>'
390 ) );
391
392 get_current_screen()->set_help_sidebar(
393         '<p><strong>' . __('For more information:') . '</strong></p>' .
394         '<p>' . __('<a href="https://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' .
395         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
396 );
397
398 $title = __('Plugins');
399 $parent_file = 'plugins.php';
400
401 require_once(ABSPATH . 'wp-admin/admin-header.php');
402
403 $invalid = validate_active_plugins();
404 if ( !empty($invalid) )
405         foreach ( $invalid as $plugin_file => $error )
406                 echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), esc_html($plugin_file), $error->get_error_message()) . '</p></div>';
407 ?>
408
409 <?php if ( isset($_GET['error']) ) :
410
411         if ( isset( $_GET['main'] ) )
412                 $errmsg = __( 'You cannot delete a plugin while it is active on the main site.' );
413         elseif ( isset($_GET['charsout']) )
414                 $errmsg = sprintf(__('The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'), $_GET['charsout']);
415         else
416                 $errmsg = __('Plugin could not be activated because it triggered a <strong>fatal error</strong>.');
417         ?>
418         <div id="message" class="error"><p><?php echo $errmsg; ?></p>
419         <?php
420                 if ( !isset( $_GET['main'] ) && !isset($_GET['charsout']) && wp_verify_nonce($_GET['_error_nonce'], 'plugin-activation-error_' . $plugin) ) { ?>
421         <iframe style="border:0" width="100%" height="70px" src="<?php echo 'plugins.php?action=error_scrape&amp;plugin=' . esc_attr($plugin) . '&amp;_wpnonce=' . esc_attr($_GET['_error_nonce']); ?>"></iframe>
422         <?php
423                 }
424         ?>
425         </div>
426 <?php elseif ( isset($_GET['deleted']) ) :
427                 $delete_result = get_transient( 'plugins_delete_result_' . $user_ID );
428                 // Delete it once we're done.
429                 delete_transient( 'plugins_delete_result_' . $user_ID );
430
431                 if ( is_wp_error($delete_result) ) : ?>
432                 <div id="message" class="error notice is-dismissible"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), $delete_result->get_error_message() ); ?></p></div>
433                 <?php else : ?>
434                 <div id="message" class="updated notice is-dismissible"><p><?php _e('The selected plugins have been <strong>deleted</strong>.'); ?></p></div>
435                 <?php endif; ?>
436 <?php elseif ( isset($_GET['activate']) ) : ?>
437         <div id="message" class="updated notice is-dismissible"><p><?php _e('Plugin <strong>activated</strong>.') ?></p></div>
438 <?php elseif (isset($_GET['activate-multi'])) : ?>
439         <div id="message" class="updated notice is-dismissible"><p><?php _e('Selected plugins <strong>activated</strong>.'); ?></p></div>
440 <?php elseif ( isset($_GET['deactivate']) ) : ?>
441         <div id="message" class="updated notice is-dismissible"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p></div>
442 <?php elseif (isset($_GET['deactivate-multi'])) : ?>
443         <div id="message" class="updated notice is-dismissible"><p><?php _e('Selected plugins <strong>deactivated</strong>.'); ?></p></div>
444 <?php elseif ( 'update-selected' == $action ) : ?>
445         <div id="message" class="updated notice is-dismissible"><p><?php _e('No out of date plugins were selected.'); ?></p></div>
446 <?php endif; ?>
447
448 <div class="wrap">
449 <h1><?php echo esc_html( $title );
450 if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) { ?>
451  <a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="page-title-action"><?php echo esc_html_x('Add New', 'plugin'); ?></a>
452 <?php }
453 if ( $s )
454         printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( $s ) ); ?>
455 </h1>
456
457 <?php
458 /**
459  * Fires before the plugins list table is rendered.
460  *
461  * This hook also fires before the plugins list table is rendered in the Network Admin.
462  *
463  * Please note: The 'active' portion of the hook name does not refer to whether the current
464  * view is for active plugins, but rather all plugins actively-installed.
465  *
466  * @since 3.0.0
467  *
468  * @param array $plugins_all An array containing all installed plugins.
469  */
470 do_action( 'pre_current_active_plugins', $plugins['all'] );
471 ?>
472
473 <?php $wp_list_table->views(); ?>
474
475 <form method="get">
476 <?php $wp_list_table->search_box( __( 'Search Installed Plugins' ), 'plugin' ); ?>
477 </form>
478
479 <form method="post" id="bulk-action-form">
480
481 <input type="hidden" name="plugin_status" value="<?php echo esc_attr($status) ?>" />
482 <input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />
483
484 <?php $wp_list_table->display(); ?>
485 </form>
486
487 </div>
488
489 <?php
490 wp_print_request_filesystem_credentials_modal();
491
492 include(ABSPATH . 'wp-admin/admin-footer.php');