X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/e08b42e8ad054ec67522d7ac1aaae5dc68cb3d01..88550bc3400cc7c035ff590ecb007c7938041ded:/wp-admin/includes/class-wp-theme-install-list-table.php diff --git a/wp-admin/includes/class-wp-theme-install-list-table.php b/wp-admin/includes/class-wp-theme-install-list-table.php index 8934684c..eb8498a2 100644 --- a/wp-admin/includes/class-wp-theme-install-list-table.php +++ b/wp-admin/includes/class-wp-theme-install-list-table.php @@ -9,13 +9,13 @@ */ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { - var $features = array(); + public $features = array(); - function ajax_user_can() { + public function ajax_user_can() { return current_user_can( 'install_themes' ); } - function prepare_items() { + public function prepare_items() { include( ABSPATH . 'wp-admin/includes/theme-install.php' ); global $tabs, $tab, $paged, $type, $theme_field_defaults; @@ -41,14 +41,24 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { if ( 'search' == $tab ) $tabs['search'] = __( 'Search Results' ); $tabs['upload'] = __( 'Upload' ); - $tabs['featured'] = _x( 'Featured','Theme Installer' ); - //$tabs['popular'] = _x( 'Popular','Theme Installer' ); - $tabs['new'] = _x( 'Newest','Theme Installer' ); - $tabs['updated'] = _x( 'Recently Updated','Theme Installer' ); + $tabs['featured'] = _x( 'Featured', 'themes' ); + //$tabs['popular'] = _x( 'Popular', 'themes' ); + $tabs['new'] = _x( 'Latest', 'themes' ); + $tabs['updated'] = _x( 'Recently Updated', 'themes' ); $nonmenu_tabs = array( 'theme-information' ); // Valid actions to perform which do not have a Menu item. + /** This filter is documented in wp-admin/theme-install.php */ $tabs = apply_filters( 'install_themes_tabs', $tabs ); + + /** + * Filter tabs not associated with a menu item on the Install Themes screen. + * + * @since 2.8.0 + * + * @param array $nonmenu_tabs The tabs that don't have a menu item on + * the Install Themes screen. + */ $nonmenu_tabs = apply_filters( 'install_themes_nonmenu_tabs', $nonmenu_tabs ); // If a non-valid menu tab has been selected, And it's not a non-menu action. @@ -82,7 +92,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { break; case 'featured': - //case 'popular': + // case 'popular': case 'new': case 'updated': $args['browse'] = $tab; @@ -93,6 +103,17 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { break; } + /** + * Filter API request arguments for each Install Themes screen tab. + * + * The dynamic portion of the hook name, `$tab`, refers to the theme install + * tabs. Default tabs are 'dashboard', 'search', 'upload', 'featured', + * 'new', and 'updated'. + * + * @since 3.7.0 + * + * @param array $args An array of themes API arguments. + */ $args = apply_filters( 'install_themes_table_api_args_' . $tab, $args ); if ( ! $args ) @@ -107,16 +128,16 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { $this->set_pagination_args( array( 'total_items' => $api->info['results'], - 'per_page' => $per_page, + 'per_page' => $args['per_page'], 'infinite_scroll' => true, ) ); } - function no_items() { + public function no_items() { _e( 'No themes match your request.' ); } - function get_views() { + protected function get_views() { global $tabs, $tab; $display_tabs = array(); @@ -129,12 +150,19 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { return $display_tabs; } - function display() { + public function display() { wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); ?>
- +
pagination( 'top' ); ?>
@@ -148,7 +176,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { parent::tablenav( 'bottom' ); } - function display_rows() { + public function display_rows() { $themes = $this->items; foreach ( $themes as $theme ) { ?> @@ -179,7 +207,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { * public 'description' => string 'A basic magazine style layout with a fully customizable layout through a backend interface. Designed by c.bavota of Tinker Priest Media.' * public 'download_link' => string 'http://wordpress.org/themes/download/magazine-basic.1.1.zip' */ - function single_row( $theme ) { + public function single_row( $theme ) { global $themes_allowedtags; if ( empty( $theme ) ) @@ -192,7 +220,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { $preview_url = add_query_arg( array( 'tab' => 'theme-information', 'theme' => $theme->slug, - ) ); + ), self_admin_url( 'theme-install.php' ) ); $actions = array(); @@ -209,10 +237,6 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { $status = $this->_get_theme_status( $theme ); switch ( $status ) { - default: - case 'install': - $actions[] = '' . __( 'Install Now' ) . ''; - break; case 'update_available': $actions[] = '' . __( 'Update' ) . ''; break; @@ -220,15 +244,28 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { case 'latest_installed': $actions[] = '' . _x( 'Installed', 'theme' ) . ''; break; + case 'install': + default: + $actions[] = '' . __( 'Install Now' ) . ''; + break; } $actions[] = '' . __( 'Preview' ) . ''; + /** + * Filter the install action links for a theme in the Install Themes list table. + * + * @since 3.4.0 + * + * @param array $actions An array of theme action hyperlinks. Defaults are + * links to Install Now, Preview, and Details. + * @param WP_Theme $theme Theme object. + */ $actions = apply_filters( 'theme_install_actions', $actions, $theme ); ?> - +

@@ -250,7 +287,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { /** * Prints the wrapper for the theme installer. */ - function theme_installer() { + public function theme_installer() { ?>
@@ -279,7 +316,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { * * @param object $theme - A WordPress.org Theme API object. */ - function theme_installer_single( $theme ) { + public function theme_installer_single( $theme ) { ?>
@@ -297,7 +334,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { * * @param object $theme - A WordPress.org Theme API object. */ - function install_theme_info( $theme ) { + public function install_theme_info( $theme ) { global $themes_allowedtags; if ( empty( $theme ) ) @@ -306,8 +343,6 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { $name = wp_kses( $theme->name, $themes_allowedtags ); $author = wp_kses( $theme->author, $themes_allowedtags ); - $num_ratings = sprintf( _n( '(based on %s rating)', '(based on %s ratings)', $theme->num_ratings ), number_format_i18n( $theme->num_ratings ) ); - $install_url = add_query_arg( array( 'action' => 'install-theme', 'theme' => $theme->slug, @@ -323,10 +358,6 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { ?>
slug ) ) . '">' . __( 'Install' ) . ''; - break; case 'update_available': echo '' . __( 'Update' ) . ''; break; @@ -334,6 +365,10 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { case 'latest_installed': echo '' . _x( 'Installed', 'theme' ) . ''; break; + case 'install': + default: + echo '' . __( 'Install' ) . ''; + break; } ?>

@@ -358,13 +393,13 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { /** * Send required variables to JavaScript land * - * @since 3.4 - * @access private + * @since 3.4.0 + * @access public * * @uses $tab Global; current tab within Themes->Install screen * @uses $type Global; type of search. */ - function _js_vars( $extra_args = array() ) { + public function _js_vars( $extra_args = array() ) { global $tab, $type; parent::_js_vars( compact( 'tab', 'type' ) ); } @@ -372,7 +407,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { /** * Check to see if the theme is already installed. * - * @since 3.4 + * @since 3.4.0 * @access private * * @param object $theme - A WordPress.org Theme API object.