Changeset 37221
- Timestamp:
- 04/16/2016 04:42:48 PM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/themes.css
r37219 r37221 1057 1057 cursor: pointer; 1058 1058 } 1059 .theme-install-php a.browse-themes, 1060 .theme-install-php.show-upload-theme a.upload { 1059 1060 .upload-view-toggle .browse, 1061 .upload-view-toggle.upload-tab .upload { 1061 1062 display: none; 1062 1063 } 1063 .theme-install-php.show-upload-theme a.browse-themes { 1064 1065 .upload-view-toggle.upload-tab .browse { 1064 1066 display: inline; 1065 1067 } 1068 1066 1069 .upload-theme, 1067 1070 .upload-plugin { … … 1077 1080 top: 10px; 1078 1081 } 1079 body.show-upload-theme .upload-theme, 1080 .upload-plugin { 1081 display: block; 1082 } 1082 1083 .show-upload-view .upload-theme, 1084 .show-upload-view .upload-plugin, 1085 .upload-tab .upload-plugin { 1086 display: block; 1087 } 1088 1083 1089 .upload-theme .wp-upload-form, 1084 1090 .upload-plugin .wp-upload-form { -
trunk/src/wp-admin/includes/admin-filters.php
r35167 r37221 65 65 // Plugin Install hooks. 66 66 add_action( 'install_plugins_featured', 'install_dashboard' ); 67 add_action( 'install_plugins_upload', 'install_plugins_upload' );68 67 add_action( 'install_plugins_search', 'display_plugins_table' ); 69 68 add_action( 'install_plugins_popular', 'display_plugins_table' ); -
trunk/src/wp-admin/includes/class-wp-upgrader-skins.php
r35855 r37221 580 580 } elseif ( $this->type == 'web' ) { 581 581 $install_actions['plugins_page'] = '<a href="' . self_admin_url( 'plugin-install.php' ) . '" target="_parent">' . __( 'Return to Plugin Installer' ) . '</a>'; 582 } elseif ( 'upload' == $this->type && 'plugins' == $from ) { 583 $install_actions['plugins_page'] = '<a href="' . self_admin_url( 'plugin-install.php' ) . '">' . __( 'Return to Plugin Installer' ) . '</a>'; 582 584 } else { 583 585 $install_actions['plugins_page'] = '<a href="' . self_admin_url( 'plugins.php' ) . '" target="_parent">' . __( 'Return to Plugins page' ) . '</a>'; -
trunk/src/wp-admin/includes/plugin-install.php
r37156 r37221 211 211 function install_dashboard() { 212 212 ?> 213 <p><?php printf( __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="%1$s">WordPress Plugin Directory</a> or upload a plugin in .zip format via <a href="%2$s">this page</a>.' ), 'https://wordpress.org/plugins/', self_admin_url( 'plugin-install.php?tab=upload' )); ?></p>213 <p><?php printf( __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="%1$s">WordPress Plugin Directory</a> or upload a plugin in .zip format by clicking the button at the top of this page.' ), 'https://wordpress.org/plugins/' ); ?></p> 214 214 215 215 <?php display_plugins_table(); ?> -
trunk/src/wp-admin/js/plugin-install.js
r36964 r37221 1 1 /* global plugininstallL10n, tb_click, tb_remove */ 2 2 3 /* Plugin Browser Thickbox related JS*/ 3 /** 4 * Functionality for the plugin install screens. 5 */ 4 6 var tb_position; 5 7 jQuery( document ).ready( function( $ ) { … … 175 177 $( '#section-' + tab ).show(); 176 178 }); 179 180 /* 181 * When a user presses the "Upload Plugin" button, show the upload form in place 182 * rather than sending them to the devoted upload plugin page. 183 * @todo consider to abstract this in a generic, reusable, utility, see theme.js 184 */ 185 var uploadViewToggle = $( '.upload-view-toggle' ), 186 $body = $( document.body ); 187 188 uploadViewToggle 189 .attr({ 190 role: 'button', 191 'aria-expanded': 'false' 192 }) 193 .on( 'click', function( event ) { 194 event.preventDefault(); 195 $body.toggleClass( 'show-upload-view' ); 196 uploadViewToggle.attr( 'aria-expanded', $body.hasClass( 'show-upload-view' ) ); 197 }); 177 198 }); -
trunk/src/wp-admin/js/theme.js
r37145 r37221 1605 1605 searchContainer: $( '.wp-filter .search-form' ), 1606 1606 1607 /* 1608 * When a user presses the "Upload Theme" button, show the upload form in place. 1609 * @todo consider to abstract this in a generic, reusable, utility, see plugin-install.js 1610 */ 1607 1611 uploader: function() { 1608 $( 'a.upload' ).on( 'click', function( event ) { 1609 event.preventDefault(); 1610 $( 'body' ).addClass( 'show-upload-theme' ); 1611 themes.router.navigate( themes.router.baseUrl( '?upload' ), { replace: true } ); 1612 }); 1613 $( 'a.browse-themes' ).on( 'click', function( event ) { 1614 event.preventDefault(); 1615 $( 'body' ).removeClass( 'show-upload-theme' ); 1616 themes.router.navigate( themes.router.baseUrl( '' ), { replace: true } ); 1617 }); 1612 var uploadViewToggle = $( '.upload-view-toggle' ), 1613 $body = $( document.body ); 1614 1615 uploadViewToggle 1616 .attr({ 1617 role: 'button', 1618 'aria-expanded': 'false' 1619 }) 1620 .on( 'click', function( event ) { 1621 event.preventDefault(); 1622 $body.toggleClass( 'show-upload-view' ); 1623 uploadViewToggle.attr( 'aria-expanded', $body.hasClass( 'show-upload-view' ) ); 1624 }); 1618 1625 }, 1619 1626 -
trunk/src/wp-admin/plugin-install.php
r34891 r37221 107 107 if ( $tab === 'upload' ) { 108 108 $href = self_admin_url( 'plugin-install.php' ); 109 $ text = _x( 'Browse', 'plugins' );109 $upload_tab_class = ' upload-tab'; 110 110 } else { 111 111 $href = self_admin_url( 'plugin-install.php?tab=upload' ); 112 $ text = __( 'Upload Plugin' );112 $upload_tab_class = ''; 113 113 } 114 echo ' <a href="' . $href . '" class="upload page-title-action">' . $text . '</a>'; 114 115 printf( ' <a href="%s" class="upload-view-toggle page-title-action%s"><span class="upload">%s</span><span class="browse">%s</span></a>', 116 $href, 117 $upload_tab_class, 118 __( 'Upload Plugin' ), 119 __( 'Browse Plugins' ) 120 ); 115 121 } 116 122 ?> 117 123 </h1> 124 125 <div class="upload-plugin-wrap<?php echo $upload_tab_class; ?>"> 126 <?php 127 /* 128 * Output the upload plugin form on every plugin install screen, so it can be 129 * displayed via JavaScript rather then opening up the devoted upload plugin page. 130 */ 131 install_plugins_upload(); ?> 132 </div> 118 133 119 134 <?php -
trunk/src/wp-admin/plugins.php
r36662 r37221 373 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 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>' 375 /* translators: %s: WordPress Plugin Directory URL */ 376 __( 'If you would like to see more plugins to choose from, click on the “Add New” button and you will be able to browse or search for additional plugins from the <a href="%s" target="_blank">WordPress.org Plugin Directory</a>. Plugins in the WordPress.org Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!' ), 377 'https://wordpress.org/plugins/' 380 378 ) . '</p>' 381 379 ) ); -
trunk/src/wp-admin/theme-install.php
r37145 r37221 128 128 $tabs = apply_filters( 'install_themes_tabs', array( 'upload' => __( 'Upload Theme' ) ) ); 129 129 if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_themes' ) ) { 130 echo ' <a href="#" class="upload page-title-action">' . __( 'Upload Theme' ) . '</a>'; 131 echo ' <a href="#" class="browse-themes page-title-action">' . _x( 'Browse', 'themes' ) . '</a>'; 130 echo ' <a href="#" class="upload-view-toggle page-title-action">' . __( 'Upload Theme' ) . '</a>'; 132 131 } 133 132 ?></h1>
Note: See TracChangeset
for help on using the changeset viewer.