]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/class-wp-theme-install-list-table.php
WordPress 4.4.1-scripts
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-theme-install-list-table.php
index 47175243585e68a1e2df3bf737d50f7cf62b6490..c2b0b6d5813a0102e4c2d097b37b6afd83d98c47 100644 (file)
@@ -1,21 +1,41 @@
 <?php
 /**
- * Theme Installer List Table class.
+ * List Table API: WP_Theme_Install_List_Table class
  *
  * @package WordPress
- * @subpackage List_Table
+ * @subpackage Administration
+ * @since 3.1.0
+ */
+
+/**
+ * Core class used to implement displaying themes to install in a list table.
+ *
  * @since 3.1.0
  * @access private
+ *
+ * @see WP_Thenes_List_Table
  */
 class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
 
-       var $features = array();
+       public $features = array();
 
-       function ajax_user_can() {
+       /**
+        *
+        * @return bool
+        */
+       public function ajax_user_can() {
                return current_user_can( 'install_themes' );
        }
 
-       function prepare_items() {
+       /**
+        *
+        * @global array  $tabs
+        * @global string $tab
+        * @global int    $paged
+        * @global string $type
+        * @global array  $theme_field_defaults
+        */
+       public function prepare_items() {
                include( ABSPATH . 'wp-admin/includes/theme-install.php' );
 
                global $tabs, $tab, $paged, $type, $theme_field_defaults;
@@ -24,7 +44,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                $search_terms = array();
                $search_string = '';
                if ( ! empty( $_REQUEST['s'] ) ){
-                       $search_string = strtolower( stripslashes( $_REQUEST['s'] ) );
+                       $search_string = strtolower( wp_unslash( $_REQUEST['s'] ) );
                        $search_terms = array_unique( array_filter( array_map( 'trim', explode( ',', $search_string ) ) ) );
                }
 
@@ -38,20 +58,30 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                // These are the tabs which are shown on the page,
                $tabs = array();
                $tabs['dashboard'] = __( 'Search' );
-               if ( 'search' == $tab )
+               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 its not a non-menu action.
+               // If a non-valid menu tab has been selected, And it's not a non-menu action.
                if ( empty( $tab ) || ( ! isset( $tabs[ $tab ] ) && ! in_array( $tab, (array) $nonmenu_tabs ) ) )
                        $tab = key( $tabs );
 
@@ -59,7 +89,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
 
                switch ( $tab ) {
                        case 'search':
-                               $type = isset( $_REQUEST['type'] ) ? stripslashes( $_REQUEST['type'] ) : 'term';
+                               $type = isset( $_REQUEST['type'] ) ? wp_unslash( $_REQUEST['type'] ) : 'term';
                                switch ( $type ) {
                                        case 'tag':
                                                $args['tag'] = array_map( 'sanitize_key', $search_terms );
@@ -82,7 +112,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;
@@ -90,8 +120,22 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
 
                        default:
                                $args = false;
+                               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 )
                        return;
 
@@ -104,21 +148,30 @@ 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() {
+       /**
+        * @access public
+        */
+       public function no_items() {
                _e( 'No themes match your request.' );
        }
 
-       function get_views() {
+       /**
+        *
+        * @global array $tabs
+        * @global string $tab
+        * @return array
+        */
+       protected function get_views() {
                global $tabs, $tab;
 
                $display_tabs = array();
                foreach ( (array) $tabs as $action => $text ) {
-                       $class = ( $action == $tab ) ? ' class="current"' : '';
+                       $class = ( $action === $tab ) ? ' class="current"' : '';
                        $href = self_admin_url('theme-install.php?tab=' . $action);
                        $display_tabs['theme-install-'.$action] = "<a href='$href'$class>$text</a>";
                }
@@ -126,15 +179,24 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                return $display_tabs;
        }
 
-       function display() {
+       /**
+        * @access public
+        */
+       public function display() {
                wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
 ?>
                <div class="tablenav top themes">
                        <div class="alignleft actions">
-                               <?php do_action( 'install_themes_table_header' ); ?>
+                               <?php
+                               /**
+                                * Fires in the Install Themes list table header.
+                                *
+                                * @since 2.8.0
+                                */
+                               do_action( 'install_themes_table_header' );
+                               ?>
                        </div>
                        <?php $this->pagination( 'top' ); ?>
-                       <img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" class="ajax-loading list-ajax-loading" alt="" />
                        <br class="clear" />
                </div>
 
@@ -143,10 +205,13 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                </div>
 
                <?php
-               parent::tablenav( 'bottom' );
+               $this->tablenav( 'bottom' );
        }
 
-       function display_rows() {
+       /**
+        * @access public
+        */
+       public function display_rows() {
                $themes = $this->items;
                foreach ( $themes as $theme ) {
                                ?>
@@ -158,26 +223,28 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                $this->theme_installer();
        }
 
-       /*
+       /**
         * Prints a theme from the WordPress.org API.
         *
+        * @global array $themes_allowedtags
+        *
         * @param object $theme An object that contains theme data returned by the WordPress.org API.
         *
         * Example theme data:
         *   object(stdClass)[59]
-        *     public 'name' => string 'Magazine Basic' (length=14)
-        *     public 'slug' => string 'magazine-basic' (length=14)
-        *     public 'version' => string '1.1' (length=3)
-        *     public 'author' => string 'tinkerpriest' (length=12)
-        *     public 'preview_url' => string 'http://wp-themes.com/?magazine-basic' (length=36)
-        *     public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png' (length=68)
+        *     public 'name' => string 'Magazine Basic'
+        *     public 'slug' => string 'magazine-basic'
+        *     public 'version' => string '1.1'
+        *     public 'author' => string 'tinkerpriest'
+        *     public 'preview_url' => string 'http://wp-themes.com/?magazine-basic'
+        *     public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png'
         *     public 'rating' => float 80
         *     public 'num_ratings' => int 1
-        *     public 'homepage' => string 'http://wordpress.org/extend/themes/magazine-basic' (length=49)
-        *     public 'description' => string 'A basic magazine style layout with a fully customizable layout through a backend interface. Designed by <a href="http://bavotasan.com">c.bavota</a> of <a href="http://tinkerpriestmedia.com">Tinker Priest Media</a>.' (length=214)
-        *     public 'download_link' => string 'http://wordpress.org/extend/themes/download/magazine-basic.1.1.zip' (length=66)
+        *     public 'homepage' => string 'http://wordpress.org/themes/magazine-basic'
+        *     public 'description' => string 'A basic magazine style layout with a fully customizable layout through a backend interface. Designed by <a href="http://bavotasan.com">c.bavota</a> of <a href="http://tinkerpriestmedia.com">Tinker Priest Media</a>.'
+        *     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 ) )
@@ -190,7 +257,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();
 
@@ -207,10 +274,6 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                $status = $this->_get_theme_status( $theme );
 
                switch ( $status ) {
-                       default:
-                       case 'install':
-                               $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
-                               break;
                        case 'update_available':
                                $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
                                break;
@@ -218,15 +281,28 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                        case 'latest_installed':
                                $actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
                                break;
+                       case 'install':
+                       default:
+                               $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
+                               break;
                }
 
                $actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>';
 
+               /**
+                * 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 );
 
                ?>
                <a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
-                       <img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' />
+                       <img src="<?php echo esc_url( $theme->screenshot_url ); ?>" width="150" alt="" />
                </a>
 
                <h3><?php echo $name; ?></h3>
@@ -237,7 +313,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                                <?php foreach ( $actions as $action ): ?>
                                        <li><?php echo $action; ?></li>
                                <?php endforeach; ?>
-                               <li class="hide-if-no-js"><a href="#" class="theme-detail" tabindex='4'><?php _e('Details') ?></a></li>
+                               <li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li>
                        </ul>
                </div>
 
@@ -245,24 +321,25 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                $this->install_theme_info( $theme );
        }
 
-       /*
+       /**
         * Prints the wrapper for the theme installer.
         */
-       function theme_installer() {
+       public function theme_installer() {
                ?>
                <div id="theme-installer" class="wp-full-overlay expanded">
                        <div class="wp-full-overlay-sidebar">
                                <div class="wp-full-overlay-header">
-                                       <a href="#" class="close-full-overlay"><?php _e( '&larr; Close' ); ?></a>
+                                       <a href="#" class="close-full-overlay button-secondary"><?php _e( 'Close' ); ?></a>
+                                       <span class="theme-install"></span>
                                </div>
                                <div class="wp-full-overlay-sidebar-content">
                                        <div class="install-theme-info"></div>
                                </div>
                                <div class="wp-full-overlay-footer">
-                                       <a href="#" class="collapse-sidebar button-secondary" title="<?php esc_attr_e('Collapse Sidebar'); ?>">
-                                               <span class="collapse-sidebar-label"><?php _e('Collapse'); ?></span>
+                                       <button type="button" class="collapse-sidebar button-secondary" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
                                                <span class="collapse-sidebar-arrow"></span>
-                                       </a>
+                                               <span class="collapse-sidebar-label"><?php _e( 'Collapse' ); ?></span>
+                                       </button>
                                </div>
                        </div>
                        <div class="wp-full-overlay-main"></div>
@@ -270,13 +347,13 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                <?php
        }
 
-       /*
+       /**
         * Prints the wrapper for the theme installer with a provided theme's data.
         * Used to make the theme installer work for no-js.
         *
         * @param object $theme - A WordPress.org Theme API object.
         */
-       function theme_installer_single( $theme ) {
+       public function theme_installer_single( $theme ) {
                ?>
                <div id="theme-installer" class="wp-full-overlay single-theme">
                        <div class="wp-full-overlay-sidebar">
@@ -289,12 +366,14 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                <?php
        }
 
-       /*
+       /**
         * Prints the info for a theme (to be used in the theme installer modal).
         *
+        * @global array $themes_allowedtags
+        *
         * @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 ) )
@@ -303,8 +382,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,
@@ -320,10 +397,6 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                ?>
                <div class="install-theme-info"><?php
                        switch ( $status ) {
-                               default:
-                               case 'install':
-                                       echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '">' . __( 'Install' ) . '</a>';
-                                       break;
                                case 'update_available':
                                        echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
                                        break;
@@ -331,16 +404,18 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
                                case 'latest_installed':
                                        echo '<span class="theme-install" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
                                        break;
+                               case 'install':
+                               default:
+                                       echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '">' . __( 'Install' ) . '</a>';
+                                       break;
                        } ?>
                        <h3 class="theme-name"><?php echo $name; ?></h3>
                        <span class="theme-by"><?php printf( __( 'By %s' ), $author ); ?></span>
                        <?php if ( isset( $theme->screenshot_url ) ): ?>
-                               <img class="theme-screenshot" src="<?php echo esc_url( $theme->screenshot_url ); ?>" />
+                               <img class="theme-screenshot" src="<?php echo esc_url( $theme->screenshot_url ); ?>" alt="" />
                        <?php endif; ?>
                        <div class="theme-details">
-                               <div class="star-holder" title="<?php echo esc_attr( $num_ratings ); ?>">
-                                       <div class="star-rating" style="width:<?php echo esc_attr( intval( $theme->rating ) . 'px' ); ?>;"></div>
-                               </div>
+                               <?php wp_star_rating( array( 'rating' => $theme->rating, 'type' => 'percent', 'number' => $theme->num_ratings ) ); ?>
                                <div class="theme-version">
                                        <strong><?php _e('Version:') ?> </strong>
                                        <?php echo wp_kses( $theme->version, $themes_allowedtags ); ?>
@@ -357,13 +432,15 @@ 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
+        *
+        * @global string $tab  Current tab within Themes->Install screen
+        * @global string $type Type of search.
         *
-        * @uses $tab Global; current tab within Themes->Install screen
-        * @uses $type Global; type of search.
+        * @param array $extra_args Unused.
         */
-       function _js_vars() {
+       public function _js_vars( $extra_args = array() ) {
                global $tab, $type;
                parent::_js_vars( compact( 'tab', 'type' ) );
        }
@@ -371,7 +448,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.