X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/6c8f14c09105d0afa4c1574215c59b5021040e76..3194d1bb103c2d8db4f44feeced5e58ee2756658:/wp-admin/theme-install.php diff --git a/wp-admin/theme-install.php b/wp-admin/theme-install.php index 0825c0e4..289f3954 100644 --- a/wp-admin/theme-install.php +++ b/wp-admin/theme-install.php @@ -6,11 +6,11 @@ * @subpackage Administration */ -if ( !defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'theme-information' == $_GET['tab'] ) ) - define( 'IFRAME_REQUEST', true ); - /** WordPress Administration Bootstrap */ -require_once('./admin.php'); +require_once( dirname( __FILE__ ) . '/admin.php' ); +require( ABSPATH . 'wp-admin/includes/theme-install.php' ); + +wp_reset_vars( array( 'tab' ) ); if ( ! current_user_can('install_themes') ) wp_die( __( 'You do not have sufficient permissions to install themes on this site.' ) ); @@ -20,25 +20,62 @@ if ( is_multisite() && ! is_network_admin() ) { exit(); } -$wp_list_table = _get_list_table('WP_Theme_Install_List_Table'); -$pagenum = $wp_list_table->get_pagenum(); -$wp_list_table->prepare_items(); - -$title = __('Install Themes'); +$title = __( 'Add Themes' ); $parent_file = 'themes.php'; -if ( !is_network_admin() ) + +if ( ! is_network_admin() ) { $submenu_file = 'themes.php'; +} -wp_enqueue_script( 'theme-install' ); -wp_enqueue_script( 'theme' ); +$installed_themes = search_theme_directories(); +foreach ( $installed_themes as $k => $v ) { + if ( false !== strpos( $k, '/' ) ) { + unset( $installed_themes[ $k ] ); + } +} + +wp_localize_script( 'theme', '_wpThemeSettings', array( + 'themes' => false, + 'settings' => array( + 'isInstall' => true, + 'canInstall' => current_user_can( 'install_themes' ), + 'installURI' => current_user_can( 'install_themes' ) ? self_admin_url( 'theme-install.php' ) : null, + 'adminUrl' => parse_url( self_admin_url(), PHP_URL_PATH ) + ), + 'l10n' => array( + 'addNew' => __( 'Add New Theme' ), + 'search' => __( 'Search Themes' ), + 'searchPlaceholder' => __( 'Search themes...' ), // placeholder (no ellipsis) + 'upload' => __( 'Upload Theme' ), + 'back' => __( 'Back' ), + 'error' => __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ), + 'themesFound' => __( 'Number of Themes found: %d' ), + 'noThemesFound' => __( 'No themes found. Try a different search.' ), + 'collapseSidebar' => __( 'Collapse Sidebar' ), + 'expandSidebar' => __( 'Expand Sidebar' ), + ), + 'installedThemes' => array_keys( $installed_themes ), +) ); -$body_id = $tab; +wp_enqueue_script( 'theme' ); -do_action('install_themes_pre_' . $tab); //Used to override the general interface, Eg, install or theme information. +if ( $tab ) { + /** + * Fires before each of the tabs are rendered on the Install Themes page. + * + * The dynamic portion of the hook name, `$tab`, refers to the current + * theme install tab. Possible values are 'dashboard', 'search', 'upload', + * 'featured', 'new', or 'updated'. + * + * @since 2.8.0 + */ + do_action( "install_themes_pre_{$tab}" ); +} $help_overview = - '

' . sprintf(__('You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress.org Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'), 'http://wordpress.org/extend/themes/') . '

' . - '

' . __('You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter. Alternately, you can browse the themes that are Featured, Newest, or Recently Updated. When you find a theme you like, you can preview it or install it.') . '

' . + '

' . sprintf(__('You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress.org Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'), 'https://wordpress.org/themes/') . '

' . + '

' . __( 'You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.' ) . ' ' . __( 'The search results will be updated as you type.' ) . '

' . + '

' . __( 'Alternately, you can browse the themes that are Featured, Popular, or Latest. When you find a theme you like, you can preview it or install it.' ) . '

' . '

' . __('You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your /wp-content/themes directory.') . '

'; get_current_screen()->add_help_tab( array( @@ -59,28 +96,190 @@ get_current_screen()->add_help_tab( array( get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . - '

' . __('Documentation on Adding New Themes') . '

' . - '

' . __('Support Forums') . '

' + '

' . __('Documentation on Adding New Themes') . '

' . + '

' . __('Support Forums') . '

' ); include(ABSPATH . 'wp-admin/admin-header.php'); + ?>
- -

- - + /** + * Filter the tabs shown on the Add Themes screen. + * + * This filter is for backwards compatibility only, for the suppression + * of the upload tab. + * + * @since 2.8.0 + * + * @param array $tabs The tabs shown on the Add Themes screen. Default is 'upload'. + */ + $tabs = apply_filters( 'install_themes_tabs', array( 'upload' => __( 'Upload Theme' ) ) ); + if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_themes' ) ) { + echo ' ' . __( 'Upload Theme' ) . ''; + echo ' ' . _x( 'Browse', 'themes' ) . ''; + } + ?> - + +
+ +

+ +
+
+ +
-$wp_list_table->views(); ?> + -
- + + +
+ +
+ +

+ +

+ + + +

+
+ +
+
+ + +
+ $features ) { + echo '
'; + $feature_name = esc_html( $feature_name ); + echo '' . $feature_name . ''; + echo '
'; + foreach ( $features as $feature => $feature_name ) { + $feature = esc_attr( $feature ); + echo ' '; + echo '
'; + } + echo '
'; + echo '
'; + } + ?> +
+ +
+ +
+
+
+

+
+
+ +

+ + +
+ + + + + +