]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/plugins.php
Wordpress 4.5.3-scripts
[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( wp_unslash( $_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                         } else {
58                                 $recent = (array) get_site_option( 'recently_activated' );
59                                 unset( $recent[ $plugin ] );
60                                 update_site_option( 'recently_activated', $recent );
61                         }
62
63                         if ( isset($_GET['from']) && 'import' == $_GET['from'] ) {
64                                 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
65                         } else {
66                                 wp_redirect( self_admin_url("plugins.php?activate=true&plugin_status=$status&paged=$page&s=$s") ); // overrides the ?error=true one above
67                         }
68                         exit;
69
70                 case 'activate-selected':
71                         if ( ! current_user_can('activate_plugins') )
72                                 wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
73
74                         check_admin_referer('bulk-plugins');
75
76                         $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
77
78                         if ( is_network_admin() ) {
79                                 foreach ( $plugins as $i => $plugin ) {
80                                         // Only activate plugins which are not already network activated.
81                                         if ( is_plugin_active_for_network( $plugin ) ) {
82                                                 unset( $plugins[ $i ] );
83                                         }
84                                 }
85                         } else {
86                                 foreach ( $plugins as $i => $plugin ) {
87                                         // Only activate plugins which are not already active and are not network-only when on Multisite.
88                                         if ( is_plugin_active( $plugin ) || ( is_multisite() && is_network_only_plugin( $plugin ) ) ) {
89                                                 unset( $plugins[ $i ] );
90                                         }
91                                 }
92                         }
93
94                         if ( empty($plugins) ) {
95                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
96                                 exit;
97                         }
98
99                         activate_plugins($plugins, self_admin_url('plugins.php?error=true'), is_network_admin() );
100
101                         if ( ! is_network_admin() ) {
102                                 $recent = (array) get_option('recently_activated' );
103                         } else {
104                                 $recent = (array) get_site_option('recently_activated' );
105                         }
106
107                         foreach ( $plugins as $plugin ) {
108                                 unset( $recent[ $plugin ] );
109                         }
110
111                         if ( ! is_network_admin() ) {
112                                 update_option( 'recently_activated', $recent );
113                         } else {
114                                 update_site_option( 'recently_activated', $recent );
115                         }
116
117                         wp_redirect( self_admin_url("plugins.php?activate-multi=true&plugin_status=$status&paged=$page&s=$s") );
118                         exit;
119
120                 case 'update-selected' :
121
122                         check_admin_referer( 'bulk-plugins' );
123
124                         if ( isset( $_GET['plugins'] ) )
125                                 $plugins = explode( ',', $_GET['plugins'] );
126                         elseif ( isset( $_POST['checked'] ) )
127                                 $plugins = (array) $_POST['checked'];
128                         else
129                                 $plugins = array();
130
131                         $title = __( 'Update Plugins' );
132                         $parent_file = 'plugins.php';
133
134                         wp_enqueue_script( 'updates' );
135                         require_once(ABSPATH . 'wp-admin/admin-header.php');
136
137                         echo '<div class="wrap">';
138                         echo '<h1>' . esc_html( $title ) . '</h1>';
139
140                         $url = self_admin_url('update.php?action=update-selected&amp;plugins=' . urlencode( join(',', $plugins) ));
141                         $url = wp_nonce_url($url, 'bulk-update-plugins');
142
143                         echo "<iframe src='$url' style='width: 100%; height:100%; min-height:850px;'></iframe>";
144                         echo '</div>';
145                         require_once(ABSPATH . 'wp-admin/admin-footer.php');
146                         exit;
147
148                 case 'error_scrape':
149                         if ( ! current_user_can('activate_plugins') )
150                                 wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
151
152                         check_admin_referer('plugin-activation-error_' . $plugin);
153
154                         $valid = validate_plugin($plugin);
155                         if ( is_wp_error($valid) )
156                                 wp_die($valid);
157
158                         if ( ! WP_DEBUG ) {
159                                 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 );
160                         }
161
162                         @ini_set('display_errors', true); //Ensure that Fatal errors are displayed.
163                         // Go back to "sandbox" scope so we get the same errors as before
164                         plugin_sandbox_scrape( $plugin );
165                         /** This action is documented in wp-admin/includes/plugin.php */
166                         do_action( "activate_{$plugin}" );
167                         exit;
168
169                 case 'deactivate':
170                         if ( ! current_user_can('activate_plugins') )
171                                 wp_die(__('You do not have sufficient permissions to deactivate plugins for this site.'));
172
173                         check_admin_referer('deactivate-plugin_' . $plugin);
174
175                         if ( ! is_network_admin() && is_plugin_active_for_network( $plugin ) ) {
176                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
177                                 exit;
178                         }
179
180                         deactivate_plugins( $plugin, false, is_network_admin() );
181
182                         if ( ! is_network_admin() ) {
183                                 update_option( 'recently_activated', array( $plugin => time() ) + (array) get_option( 'recently_activated' ) );
184                         } else {
185                                 update_site_option( 'recently_activated', array( $plugin => time() ) + (array) get_site_option( 'recently_activated' ) );
186                         }
187
188                         if ( headers_sent() )
189                                 echo "<meta http-equiv='refresh' content='" . esc_attr( "0;url=plugins.php?deactivate=true&plugin_status=$status&paged=$page&s=$s" ) . "' />";
190                         else
191                                 wp_redirect( self_admin_url("plugins.php?deactivate=true&plugin_status=$status&paged=$page&s=$s") );
192                         exit;
193
194                 case 'deactivate-selected':
195                         if ( ! current_user_can('activate_plugins') )
196                                 wp_die(__('You do not have sufficient permissions to deactivate plugins for this site.'));
197
198                         check_admin_referer('bulk-plugins');
199
200                         $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
201                         // Do not deactivate plugins which are already deactivated.
202                         if ( is_network_admin() ) {
203                                 $plugins = array_filter( $plugins, 'is_plugin_active_for_network' );
204                         } else {
205                                 $plugins = array_filter( $plugins, 'is_plugin_active' );
206                                 $plugins = array_diff( $plugins, array_filter( $plugins, 'is_plugin_active_for_network' ) );
207                         }
208                         if ( empty($plugins) ) {
209                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
210                                 exit;
211                         }
212
213                         deactivate_plugins( $plugins, false, is_network_admin() );
214
215                         $deactivated = array();
216                         foreach ( $plugins as $plugin ) {
217                                 $deactivated[ $plugin ] = time();
218                         }
219
220                         if ( ! is_network_admin() ) {
221                                 update_option( 'recently_activated', $deactivated + (array) get_option( 'recently_activated' ) );
222                         } else {
223                                 update_site_option( 'recently_activated', $deactivated + (array) get_site_option( 'recently_activated' ) );
224                         }
225
226                         wp_redirect( self_admin_url("plugins.php?deactivate-multi=true&plugin_status=$status&paged=$page&s=$s") );
227                         exit;
228
229                 case 'delete-selected':
230                         if ( ! current_user_can('delete_plugins') ) {
231                                 wp_die(__('You do not have sufficient permissions to delete plugins for this site.'));
232                         }
233
234                         check_admin_referer('bulk-plugins');
235
236                         //$_POST = from the plugin form; $_GET = from the FTP details screen.
237                         $plugins = isset( $_REQUEST['checked'] ) ? (array) $_REQUEST['checked'] : array();
238                         if ( empty( $plugins ) ) {
239                                 wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
240                                 exit;
241                         }
242
243                         $plugins = array_filter($plugins, 'is_plugin_inactive'); // Do not allow to delete Activated plugins.
244                         if ( empty( $plugins ) ) {
245                                 wp_redirect( self_admin_url( "plugins.php?error=true&main=true&plugin_status=$status&paged=$page&s=$s" ) );
246                                 exit;
247                         }
248
249                         include(ABSPATH . 'wp-admin/update.php');
250
251                         $parent_file = 'plugins.php';
252
253                         if ( ! isset($_REQUEST['verify-delete']) ) {
254                                 wp_enqueue_script('jquery');
255                                 require_once(ABSPATH . 'wp-admin/admin-header.php');
256                                 ?>
257                         <div class="wrap">
258                                 <?php
259                                         $plugin_info = array();
260                                         $have_non_network_plugins = false;
261                                         foreach ( (array) $plugins as $plugin ) {
262                                                 $plugin_slug = dirname( $plugin );
263
264                                                 if ( '.' == $plugin_slug ) {
265                                                         if ( $data = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin ) ) {
266                                                                 $plugin_info[ $plugin ] = $data;
267                                                                 $plugin_info[ $plugin ]['is_uninstallable'] = is_uninstallable_plugin( $plugin );
268                                                                 if ( ! $plugin_info[ $plugin ]['Network'] ) {
269                                                                         $have_non_network_plugins = true;
270                                                                 }
271                                                         }
272                                                 } else {
273                                                         // Get plugins list from that folder.
274                                                         if ( $folder_plugins = get_plugins( '/' . $plugin_slug ) ) {
275                                                                 foreach ( $folder_plugins as $plugin_file => $data ) {
276                                                                         $plugin_info[ $plugin_file ] = _get_plugin_data_markup_translate( $plugin_file, $data );
277                                                                         $plugin_info[ $plugin_file ]['is_uninstallable'] = is_uninstallable_plugin( $plugin );
278                                                                         if ( ! $plugin_info[ $plugin_file ]['Network'] ) {
279                                                                                 $have_non_network_plugins = true;
280                                                                         }
281                                                                 }
282                                                         }
283                                                 }
284                                         }
285                                         $plugins_to_delete = count( $plugin_info );
286                                 ?>
287                                 <?php if ( 1 == $plugins_to_delete ) : ?>
288                                         <h1><?php _e( 'Delete Plugin' ); ?></h1>
289                                         <?php if ( $have_non_network_plugins && is_network_admin() ) : ?>
290                                                 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'This plugin may be active on other sites in the network.' ); ?></p></div>
291                                         <?php endif; ?>
292                                         <p><?php _e( 'You are about to remove the following plugin:' ); ?></p>
293                                 <?php else: ?>
294                                         <h1><?php _e( 'Delete Plugins' ); ?></h1>
295                                         <?php if ( $have_non_network_plugins && is_network_admin() ) : ?>
296                                                 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'These plugins may be active on other sites in the network.' ); ?></p></div>
297                                         <?php endif; ?>
298                                         <p><?php _e( 'You are about to remove the following plugins:' ); ?></p>
299                                 <?php endif; ?>
300                                         <ul class="ul-disc">
301                                                 <?php
302                                                 $data_to_delete = false;
303                                                 foreach ( $plugin_info as $plugin ) {
304                                                         if ( $plugin['is_uninstallable'] ) {
305                                                                 /* translators: 1: plugin name, 2: plugin author */
306                                                                 echo '<li>', sprintf( __( '%1$s by %2$s (will also <strong>delete its data</strong>)' ), '<strong>' . $plugin['Name'] . '</strong>', '<em>' . $plugin['AuthorName'] . '</em>' ), '</li>';
307                                                                 $data_to_delete = true;
308                                                         } else {
309                                                                 /* translators: 1: plugin name, 2: plugin author */
310                                                                 echo '<li>', sprintf( _x('%1$s by %2$s', 'plugin' ), '<strong>' . $plugin['Name'] . '</strong>', '<em>' . $plugin['AuthorName'] ) . '</em>', '</li>';
311                                                         }
312                                                 }
313                                                 ?>
314                                         </ul>
315                                 <p><?php
316                                 if ( $data_to_delete )
317                                         _e('Are you sure you wish to delete these files and data?');
318                                 else
319                                         _e('Are you sure you wish to delete these files?');
320                                 ?></p>
321                                 <form method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;">
322                                         <input type="hidden" name="verify-delete" value="1" />
323                                         <input type="hidden" name="action" value="delete-selected" />
324                                         <?php
325                                                 foreach ( (array) $plugins as $plugin ) {
326                                                         echo '<input type="hidden" name="checked[]" value="' . esc_attr( $plugin ) . '" />';
327                                                 }
328                                         ?>
329                                         <?php wp_nonce_field('bulk-plugins') ?>
330                                         <?php submit_button( $data_to_delete ? __( 'Yes, delete these files and data' ) : __( 'Yes, delete these files' ), 'button', 'submit', false ); ?>
331                                 </form>
332                                 <?php
333                                 $referer = wp_get_referer();
334                                 ?>
335                                 <form method="post" action="<?php echo $referer ? esc_url( $referer ) : ''; ?>" style="display:inline;">
336                                         <?php submit_button( __( 'No, return me to the plugin list' ), 'button', 'submit', false ); ?>
337                                 </form>
338                         </div>
339                                 <?php
340                                 require_once(ABSPATH . 'wp-admin/admin-footer.php');
341                                 exit;
342                         } else {
343                                 $plugins_to_delete = count( $plugins );
344                         } // endif verify-delete
345
346                         $delete_result = delete_plugins( $plugins );
347
348                         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
349                         wp_redirect( self_admin_url("plugins.php?deleted=$plugins_to_delete&plugin_status=$status&paged=$page&s=$s") );
350                         exit;
351
352                 case 'clear-recent-list':
353                         if ( ! is_network_admin() ) {
354                                 update_option( 'recently_activated', array() );
355                         } else {
356                                 update_site_option( 'recently_activated', array() );
357                         }
358                         break;
359         }
360 }
361
362 $wp_list_table->prepare_items();
363
364 wp_enqueue_script('plugin-install');
365 add_thickbox();
366
367 add_screen_option( 'per_page', array( 'default' => 999 ) );
368
369 get_current_screen()->add_help_tab( array(
370 'id'            => 'overview',
371 'title'         => __('Overview'),
372 'content'       =>
373         '<p>' . __('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.') . '</p>' .
374         '<p>' . sprintf(
375                 /* translators: 1: Plugin Browser/Installer URL, 2: WordPress Plugin Directory URL 3: local plugin directory */
376                 __( '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 %3$s directory. Once a plugin has been installed, you can activate it here.' ),
377                 'plugin-install.php',
378                 'https://wordpress.org/plugins/',
379                 '<code>/wp-content/plugins</code>'
380         ) . '</p>'
381 ) );
382 get_current_screen()->add_help_tab( array(
383 'id'            => 'compatibility-problems',
384 'title'         => __('Troubleshooting'),
385 'content'       =>
386         '<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>' .
387         '<p>' . sprintf(
388                 /* translators: WP_PLUGIN_DIR constant value */
389                 __( 'If something goes wrong with a plugin and you can&#8217;t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.' ),
390                 '<code>' . WP_PLUGIN_DIR . '</code>'
391         ) . '</p>'
392 ) );
393
394 get_current_screen()->set_help_sidebar(
395         '<p><strong>' . __('For more information:') . '</strong></p>' .
396         '<p>' . __('<a href="https://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' .
397         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
398 );
399
400 get_current_screen()->set_screen_reader_content( array(
401         'heading_views'      => __( 'Filter plugins list' ),
402         'heading_pagination' => __( 'Plugins list navigation' ),
403         'heading_list'       => __( 'Plugins list' ),
404 ) );
405
406 $title = __('Plugins');
407 $parent_file = 'plugins.php';
408
409 require_once(ABSPATH . 'wp-admin/admin-header.php');
410
411 $invalid = validate_active_plugins();
412 if ( ! empty( $invalid ) ) {
413         foreach ( $invalid as $plugin_file => $error ) {
414                 echo '<div id="message" class="error"><p>';
415                 printf(
416                         /* translators: 1: plugin file 2: error message */
417                         __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ),
418                         '<code>' . esc_html( $plugin_file ) . '</code>',
419                         $error->get_error_message() );
420                 echo '</p></div>';
421         }
422 }
423 ?>
424
425 <?php if ( isset($_GET['error']) ) :
426
427         if ( isset( $_GET['main'] ) )
428                 $errmsg = __( 'You cannot delete a plugin while it is active on the main site.' );
429         elseif ( isset($_GET['charsout']) )
430                 $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']);
431         else
432                 $errmsg = __('Plugin could not be activated because it triggered a <strong>fatal error</strong>.');
433         ?>
434         <div id="message" class="error"><p><?php echo $errmsg; ?></p>
435         <?php
436                 if ( ! isset( $_GET['main'] ) && ! isset( $_GET['charsout'] ) && wp_verify_nonce( $_GET['_error_nonce'], 'plugin-activation-error_' . $plugin ) ) {
437                         $iframe_url = add_query_arg( array(
438                                 'action'   => 'error_scrape',
439                                 'plugin'   => urlencode( $plugin ),
440                                 '_wpnonce' => urlencode( $_GET['_error_nonce'] ),
441                         ), admin_url( 'plugins.php' ) );
442                 ?>
443                 <iframe style="border:0" width="100%" height="70px" src="<?php echo esc_url( $iframe_url ); ?>"></iframe>
444         <?php
445                 }
446         ?>
447         </div>
448 <?php elseif ( isset($_GET['deleted']) ) :
449                 $delete_result = get_transient( 'plugins_delete_result_' . $user_ID );
450                 // Delete it once we're done.
451                 delete_transient( 'plugins_delete_result_' . $user_ID );
452
453                 if ( is_wp_error($delete_result) ) : ?>
454                 <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>
455                 <?php else : ?>
456                 <div id="message" class="updated notice is-dismissible">
457                         <p>
458                                 <?php
459                                 if ( 1 == (int) $_GET['deleted'] ) {
460                                         _e( 'The selected plugin has been <strong>deleted</strong>.' );
461                                 } else {
462                                         _e( 'The selected plugins have been <strong>deleted</strong>.' );
463                                 }
464                                 ?>
465                         </p>
466                 </div>
467                 <?php endif; ?>
468 <?php elseif ( isset($_GET['activate']) ) : ?>
469         <div id="message" class="updated notice is-dismissible"><p><?php _e('Plugin <strong>activated</strong>.') ?></p></div>
470 <?php elseif (isset($_GET['activate-multi'])) : ?>
471         <div id="message" class="updated notice is-dismissible"><p><?php _e('Selected plugins <strong>activated</strong>.'); ?></p></div>
472 <?php elseif ( isset($_GET['deactivate']) ) : ?>
473         <div id="message" class="updated notice is-dismissible"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p></div>
474 <?php elseif (isset($_GET['deactivate-multi'])) : ?>
475         <div id="message" class="updated notice is-dismissible"><p><?php _e('Selected plugins <strong>deactivated</strong>.'); ?></p></div>
476 <?php elseif ( 'update-selected' == $action ) : ?>
477         <div id="message" class="updated notice is-dismissible"><p><?php _e('All selected plugins are up to date.'); ?></p></div>
478 <?php endif; ?>
479
480 <div class="wrap">
481 <h1><?php echo esc_html( $title );
482 if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) { ?>
483  <a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="page-title-action"><?php echo esc_html_x('Add New', 'plugin'); ?></a>
484 <?php
485 }
486
487 if ( strlen( $s ) ) {
488         /* translators: %s: search keywords */
489         printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( urldecode( $s ) ) );
490 }
491 ?>
492 </h1>
493
494 <?php
495 /**
496  * Fires before the plugins list table is rendered.
497  *
498  * This hook also fires before the plugins list table is rendered in the Network Admin.
499  *
500  * Please note: The 'active' portion of the hook name does not refer to whether the current
501  * view is for active plugins, but rather all plugins actively-installed.
502  *
503  * @since 3.0.0
504  *
505  * @param array $plugins_all An array containing all installed plugins.
506  */
507 do_action( 'pre_current_active_plugins', $plugins['all'] );
508 ?>
509
510 <?php $wp_list_table->views(); ?>
511
512 <form method="get">
513 <?php $wp_list_table->search_box( __( 'Search Installed Plugins' ), 'plugin' ); ?>
514 </form>
515
516 <form method="post" id="bulk-action-form">
517
518 <input type="hidden" name="plugin_status" value="<?php echo esc_attr($status) ?>" />
519 <input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />
520
521 <?php $wp_list_table->display(); ?>
522 </form>
523
524 </div>
525
526 <?php
527 wp_print_request_filesystem_credentials_modal();
528
529 include(ABSPATH . 'wp-admin/admin-footer.php');