]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/plugin-install.php
WordPress 4.5.1-scripts
[autoinstalls/wordpress.git] / wp-admin / plugin-install.php
index e2431eb9b5686abf11207b35389480429f04fbd5..c9f2b50fcba3b259f0d5ca49ddc35f202140379b 100644 (file)
@@ -54,6 +54,8 @@ if ( 'plugin-information' != $tab )
 
 $body_id = $tab;
 
+wp_enqueue_script( 'updates' );
+
 /**
  * Fires before each tab on the Install Plugins screen is loaded.
  *
@@ -82,17 +84,23 @@ get_current_screen()->add_help_tab( array(
 
 get_current_screen()->set_help_sidebar(
        '<p><strong>' . __('For more information:') . '</strong></p>' .
-       '<p>' . __('<a href="http://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' .
+       '<p>' . __('<a href="https://codex.wordpress.org/Plugins_Add_New_Screen" target="_blank">Documentation on Installing Plugins</a>') . '</p>' .
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 );
 
+get_current_screen()->set_screen_reader_content( array(
+       'heading_views'      => __( 'Filter plugins list' ),
+       'heading_pagination' => __( 'Plugins list navigation' ),
+       'heading_list'       => __( 'Plugins list' ),
+) );
+
 /**
  * WordPress Administration Template Header.
  */
 include(ABSPATH . 'wp-admin/admin-header.php');
 ?>
 <div class="wrap">
-<h2>
+<h1>
        <?php
        echo esc_html( $title );
        if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_plugins' ) ) {
@@ -103,10 +111,10 @@ include(ABSPATH . 'wp-admin/admin-header.php');
                        $href = self_admin_url( 'plugin-install.php?tab=upload' );
                        $text = __( 'Upload Plugin' );
                }
-               echo ' <a href="' . $href . '" class="upload add-new-h2">' . $text . '</a>';
+               echo ' <a href="' . $href . '" class="upload page-title-action">' . $text . '</a>';
        }
        ?>
-</h2>
+</h1>
 
 <?php
 if ( $tab !== 'upload' ) {
@@ -126,7 +134,10 @@ if ( $tab !== 'upload' ) {
  */
 do_action( "install_plugins_$tab", $paged ); ?>
 </div>
+
 <?php
+wp_print_request_filesystem_credentials_modal();
+
 /**
  * WordPress Administration Template Footer.
  */