]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/plugins.php
WordPress 4.6.1-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( __( 'Sorry, you are not allowed 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(__('Sorry, you are not allowed 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(__('Sorry, you are not allowed 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(__('Sorry, you are not allowed 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(__('Sorry, you are not allowed 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(__('Sorry, you are not allowed 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(__('Sorry, you are not allowed 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>' . __( 'The search for installed plugins will search for terms in their name, description, or author.' ) . ' <span id="live-search-desc" class="hide-if-no-js">' . __( 'The search results will be updated as you type.' ) . '</span></p>' .
375         '<p>' . sprintf(
376                 /* translators: %s: WordPress Plugin Directory URL */
377                 __( 'If you would like to see more plugins to choose from, click on the &#8220;Add New&#8221; button and you will be able to browse or search for additional plugins from the <a href="%s" target="_blank">WordPress Plugin Directory</a>. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!' ),
378                 'https://wordpress.org/plugins/'
379         ) . '</p>'
380 ) );
381 get_current_screen()->add_help_tab( array(
382 'id'            => 'compatibility-problems',
383 'title'         => __('Troubleshooting'),
384 'content'       =>
385         '<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>' .
386         '<p>' . sprintf(
387                 /* translators: WP_PLUGIN_DIR constant value */
388                 __( '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.' ),
389                 '<code>' . WP_PLUGIN_DIR . '</code>'
390         ) . '</p>'
391 ) );
392
393 get_current_screen()->set_help_sidebar(
394         '<p><strong>' . __('For more information:') . '</strong></p>' .
395         '<p>' . __('<a href="https://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' .
396         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
397 );
398
399 get_current_screen()->set_screen_reader_content( array(
400         'heading_views'      => __( 'Filter plugins list' ),
401         'heading_pagination' => __( 'Plugins list navigation' ),
402         'heading_list'       => __( 'Plugins list' ),
403 ) );
404
405 $title = __('Plugins');
406 $parent_file = 'plugins.php';
407
408 require_once(ABSPATH . 'wp-admin/admin-header.php');
409
410 $invalid = validate_active_plugins();
411 if ( ! empty( $invalid ) ) {
412         foreach ( $invalid as $plugin_file => $error ) {
413                 echo '<div id="message" class="error"><p>';
414                 printf(
415                         /* translators: 1: plugin file 2: error message */
416                         __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ),
417                         '<code>' . esc_html( $plugin_file ) . '</code>',
418                         $error->get_error_message() );
419                 echo '</p></div>';
420         }
421 }
422 ?>
423
424 <?php if ( isset($_GET['error']) ) :
425
426         if ( isset( $_GET['main'] ) )
427                 $errmsg = __( 'You cannot delete a plugin while it is active on the main site.' );
428         elseif ( isset($_GET['charsout']) )
429                 $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']);
430         else
431                 $errmsg = __('Plugin could not be activated because it triggered a <strong>fatal error</strong>.');
432         ?>
433         <div id="message" class="error"><p><?php echo $errmsg; ?></p>
434         <?php
435                 if ( ! isset( $_GET['main'] ) && ! isset( $_GET['charsout'] ) && wp_verify_nonce( $_GET['_error_nonce'], 'plugin-activation-error_' . $plugin ) ) {
436                         $iframe_url = add_query_arg( array(
437                                 'action'   => 'error_scrape',
438                                 'plugin'   => urlencode( $plugin ),
439                                 '_wpnonce' => urlencode( $_GET['_error_nonce'] ),
440                         ), admin_url( 'plugins.php' ) );
441                 ?>
442                 <iframe style="border:0" width="100%" height="70px" src="<?php echo esc_url( $iframe_url ); ?>"></iframe>
443         <?php
444                 }
445         ?>
446         </div>
447 <?php elseif ( isset($_GET['deleted']) ) :
448                 $delete_result = get_transient( 'plugins_delete_result_' . $user_ID );
449                 // Delete it once we're done.
450                 delete_transient( 'plugins_delete_result_' . $user_ID );
451
452                 if ( is_wp_error($delete_result) ) : ?>
453                 <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>
454                 <?php else : ?>
455                 <div id="message" class="updated notice is-dismissible">
456                         <p>
457                                 <?php
458                                 if ( 1 == (int) $_GET['deleted'] ) {
459                                         _e( 'The selected plugin has been <strong>deleted</strong>.' );
460                                 } else {
461                                         _e( 'The selected plugins have been <strong>deleted</strong>.' );
462                                 }
463                                 ?>
464                         </p>
465                 </div>
466                 <?php endif; ?>
467 <?php elseif ( isset($_GET['activate']) ) : ?>
468         <div id="message" class="updated notice is-dismissible"><p><?php _e('Plugin <strong>activated</strong>.') ?></p></div>
469 <?php elseif (isset($_GET['activate-multi'])) : ?>
470         <div id="message" class="updated notice is-dismissible"><p><?php _e('Selected plugins <strong>activated</strong>.'); ?></p></div>
471 <?php elseif ( isset($_GET['deactivate']) ) : ?>
472         <div id="message" class="updated notice is-dismissible"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p></div>
473 <?php elseif (isset($_GET['deactivate-multi'])) : ?>
474         <div id="message" class="updated notice is-dismissible"><p><?php _e('Selected plugins <strong>deactivated</strong>.'); ?></p></div>
475 <?php elseif ( 'update-selected' == $action ) : ?>
476         <div id="message" class="updated notice is-dismissible"><p><?php _e('All selected plugins are up to date.'); ?></p></div>
477 <?php endif; ?>
478
479 <div class="wrap">
480 <h1><?php echo esc_html( $title );
481 if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) { ?>
482  <a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="page-title-action"><?php echo esc_html_x('Add New', 'plugin'); ?></a>
483 <?php
484 }
485
486 if ( strlen( $s ) ) {
487         /* translators: %s: search keywords */
488         printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( urldecode( $s ) ) );
489 }
490 ?>
491 </h1>
492
493 <?php
494 /**
495  * Fires before the plugins list table is rendered.
496  *
497  * This hook also fires before the plugins list table is rendered in the Network Admin.
498  *
499  * Please note: The 'active' portion of the hook name does not refer to whether the current
500  * view is for active plugins, but rather all plugins actively-installed.
501  *
502  * @since 3.0.0
503  *
504  * @param array $plugins_all An array containing all installed plugins.
505  */
506 do_action( 'pre_current_active_plugins', $plugins['all'] );
507 ?>
508
509 <?php $wp_list_table->views(); ?>
510
511 <form class="search-form search-plugins" method="get">
512 <?php $wp_list_table->search_box( __( 'Search Installed Plugins' ), 'plugin' ); ?>
513 </form>
514
515 <form method="post" id="bulk-action-form">
516
517 <input type="hidden" name="plugin_status" value="<?php echo esc_attr($status) ?>" />
518 <input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />
519
520 <?php $wp_list_table->display(); ?>
521 </form>
522
523         <span class="spinner"></span>
524 </div>
525
526 <?php
527 wp_print_request_filesystem_credentials_modal();
528 wp_print_admin_notice_templates();
529 wp_print_update_row_templates();
530
531 include(ABSPATH . 'wp-admin/admin-footer.php');