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