Changeset 38172 for trunk/src/wp-admin/plugin-install.php
- Timestamp:
- 07/31/2016 06:10:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugin-install.php
r38119 r38172 67 67 do_action( "install_plugins_pre_$tab" ); 68 68 69 /* 70 * Call the pre upload action on every non-upload plugin install screen 71 * because the form is always displayed on these screens. 72 */ 73 if ( 'upload' !== $tab ) { 74 /** This action is documented in wp-admin/plugin-install.php */ 75 do_action( 'install_plugins_pre_upload' ); 76 } 77 69 78 get_current_screen()->add_help_tab( array( 70 79 'id' => 'overview', … … 102 111 include(ABSPATH . 'wp-admin/admin-header.php'); 103 112 ?> 104 <div class="wrap ">113 <div class="wrap <?php echo esc_attr( "plugin-install-tab-$tab" ); ?>"> 105 114 <h1> 106 115 <?php 107 116 echo esc_html( $title ); 108 117 if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_plugins' ) ) { 109 if ( $tab === 'upload' ) { 110 $href = self_admin_url( 'plugin-install.php' ); 111 $upload_tab_class = ' upload-tab'; 112 } else { 113 $href = self_admin_url( 'plugin-install.php?tab=upload' ); 114 $upload_tab_class = ''; 115 } 116 117 printf( ' <a href="%s" class="upload-view-toggle page-title-action%s"><span class="upload">%s</span><span class="browse">%s</span></a>', 118 $href, 119 $upload_tab_class, 118 printf( ' <a href="%s" class="upload-view-toggle page-title-action"><span class="upload">%s</span><span class="browse">%s</span></a>', 119 ( 'upload' === $tab ) ? self_admin_url( 'plugin-install.php' ) : self_admin_url( 'plugin-install.php?tab=upload' ), 120 120 __( 'Upload Plugin' ), 121 121 __( 'Browse Plugins' ) … … 125 125 </h1> 126 126 127 <div class="upload-plugin-wrap<?php echo $upload_tab_class; ?>">128 127 <?php 129 128 /* 130 * Output the upload plugin form on every plugin install screen, so it can be129 * Output the upload plugin form on every non-upload plugin install screen, so it can be 131 130 * displayed via JavaScript rather then opening up the devoted upload plugin page. 132 131 */ 133 install_plugins_upload(); ?> 134 </div> 132 if ( $tab !== 'upload' ) { 133 ?> 134 <div class="upload-plugin-wrap"> 135 <?php 136 /** This action is documented in wp-admin/plugin-install.php */ 137 do_action( 'install_plugins_upload' ); 138 ?> 139 </div> 140 <?php 141 } 135 142 136 <?php137 143 if ( $tab !== 'upload' ) { 138 144 $wp_list_table->views();
Note: See TracChangeset
for help on using the changeset viewer.