diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/includes/class-wp-ms-themes-list-table.php --- a/wp/wp-admin/includes/class-wp-ms-themes-list-table.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-admin/includes/class-wp-ms-themes-list-table.php Mon Oct 14 17:39:30 2019 +0200 @@ -1,11 +1,19 @@ get_pagenum(); - $this->is_site_themes = ( 'site-themes-network' == $this->screen->id ) ? true : false; + $this->is_site_themes = ( 'site-themes-network' === $this->screen->id ) ? true : false; if ( $this->is_site_themes ) $this->site_id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0; } + /** + * + * @return array + */ protected function get_table_classes() { // todo: remove and add CSS for .themes return array( 'widefat', 'plugins' ); } + /** + * + * @return bool + */ public function ajax_user_can() { if ( $this->is_site_themes ) return current_user_can( 'manage_sites' ); @@ -56,6 +74,15 @@ return current_user_can( 'manage_network_themes' ); } + /** + * + * @global string $status + * @global array $totals + * @global int $page + * @global string $orderby + * @global string $order + * @global string $s + */ public function prepare_items() { global $status, $totals, $page, $orderby, $order, $s; @@ -63,7 +90,7 @@ $themes = array( /** - * Filter the full array of WP_Theme objects to list in the Multisite + * Filters the full array of WP_Theme objects to list in the Multisite * themes list table. * * @since 3.1.0 @@ -121,13 +148,19 @@ $this->has_items = ! empty( $themes['all'] ); $total_this_page = $totals[ $status ]; + wp_localize_script( 'updates', '_wpUpdatesItemCounts', array( + 'themes' => $totals, + 'totals' => wp_get_update_data(), + ) ); + if ( $orderby ) { $orderby = ucfirst( $orderby ); $order = strtoupper( $order ); - if ( $orderby == 'Name' ) { - if ( 'ASC' == $order ) + if ( $orderby === 'Name' ) { + if ( 'ASC' === $order ) { $this->items = array_reverse( $this->items ); + } } else { uasort( $this->items, array( $this, '_order_callback' ) ); } @@ -150,7 +183,7 @@ * @return bool */ public function _search_callback( $theme ) { - static $term; + static $term = null; if ( is_null( $term ) ) $term = wp_unslash( $_REQUEST['s'] ); @@ -186,22 +219,27 @@ if ( $a == $b ) return 0; - if ( 'DESC' == $order ) + if ( 'DESC' === $order ) return ( $a < $b ) ? 1 : -1; else return ( $a < $b ) ? -1 : 1; } + /** + */ public function no_items() { - if ( ! $this->has_items ) + if ( $this->has_items ) { _e( 'No themes found.' ); - else + } else { _e( 'You do not appear to have any themes available at this time.' ); + } } + /** + * + * @return array + */ public function get_columns() { - global $status; - return array( 'cb' => '', 'name' => __( 'Theme' ), @@ -209,12 +247,33 @@ ); } + /** + * + * @return array + */ protected function get_sortable_columns() { return array( 'name' => 'name', ); } + /** + * Gets the name of the primary column. + * + * @since 4.3.0 + * + * @return string Unalterable name of the primary column name, in this case, 'name'. + */ + protected function get_primary_column_name() { + return 'name'; + } + + /** + * + * @global array $totals + * @global string $status + * @return array + */ protected function get_views() { global $totals, $status; @@ -247,9 +306,9 @@ $url = 'themes.php'; if ( 'search' != $type ) { - $status_links[$type] = sprintf( "%s", + $status_links[$type] = sprintf( "%s", esc_url( add_query_arg('theme_status', $type, $url) ), - ( $type == $status ) ? ' class="current"' : '', + ( $type === $status ) ? ' class="current" aria-current="page"' : '', sprintf( $text, number_format_i18n( $count ) ) ); } @@ -258,6 +317,11 @@ return $status_links; } + /** + * @global string $status + * + * @return array + */ protected function get_bulk_actions() { global $status; @@ -275,20 +339,41 @@ return $actions; } + /** + */ public function display_rows() { foreach ( $this->items as $theme ) $this->single_row( $theme ); } /** + * Handles the checkbox column output. + * + * @since 4.3.0 + * + * @param WP_Theme $theme The current WP_Theme object. + */ + public function column_cb( $theme ) { + $checkbox_id = 'checkbox_' . md5( $theme->get('Name') ); + ?> + + + '', 'disable' => '', - 'edit' => '', 'delete' => '' ); @@ -312,20 +396,71 @@ $theme_key = urlencode( $stylesheet ); if ( ! $allowed ) { - if ( ! $theme->errors() ) - $actions['enable'] = '' . ( $this->is_site_themes ? __( 'Enable' ) : __( 'Network Enable' ) ) . ''; + if ( ! $theme->errors() ) { + $url = add_query_arg( array( + 'action' => 'enable', + 'theme' => $theme_key, + 'paged' => $page, + 's' => $s, + ), $url ); + + if ( $this->is_site_themes ) { + /* translators: %s: theme name */ + $aria_label = sprintf( __( 'Enable %s' ), $theme->display( 'Name' ) ); + } else { + /* translators: %s: theme name */ + $aria_label = sprintf( __( 'Network Enable %s' ), $theme->display( 'Name' ) ); + } + + $actions['enable'] = sprintf( '%s', + esc_url( wp_nonce_url( $url, 'enable-theme_' . $stylesheet ) ), + esc_attr( $aria_label ), + ( $this->is_site_themes ? __( 'Enable' ) : __( 'Network Enable' ) ) + ); + } } else { - $actions['disable'] = '' . ( $this->is_site_themes ? __( 'Disable' ) : __( 'Network Disable' ) ) . ''; + $url = add_query_arg( array( + 'action' => 'disable', + 'theme' => $theme_key, + 'paged' => $page, + 's' => $s, + ), $url ); + + if ( $this->is_site_themes ) { + /* translators: %s: theme name */ + $aria_label = sprintf( __( 'Disable %s' ), $theme->display( 'Name' ) ); + } else { + /* translators: %s: theme name */ + $aria_label = sprintf( __( 'Network Disable %s' ), $theme->display( 'Name' ) ); + } + + $actions['disable'] = sprintf( '%s', + esc_url( wp_nonce_url( $url, 'disable-theme_' . $stylesheet ) ), + esc_attr( $aria_label ), + ( $this->is_site_themes ? __( 'Disable' ) : __( 'Network Disable' ) ) + ); } - if ( current_user_can('edit_themes') ) - $actions['edit'] = '' . __('Edit') . ''; + if ( ! $allowed && current_user_can( 'delete_themes' ) && ! $this->is_site_themes && $stylesheet != get_option( 'stylesheet' ) && $stylesheet != get_option( 'template' ) ) { + $url = add_query_arg( array( + 'action' => 'delete-selected', + 'checked[]' => $theme_key, + 'theme_status' => $context, + 'paged' => $page, + 's' => $s, + ), 'themes.php' ); - if ( ! $allowed && current_user_can( 'delete_themes' ) && ! $this->is_site_themes && $stylesheet != get_option( 'stylesheet' ) && $stylesheet != get_option( 'template' ) ) - $actions['delete'] = '' . __( 'Delete' ) . ''; + /* translators: %s: theme name */ + $aria_label = sprintf( _x( 'Delete %s', 'theme' ), $theme->display( 'Name' ) ); + $actions['delete'] = sprintf( '%s', + esc_url( wp_nonce_url( $url, 'bulk-themes' ) ), + esc_attr( $aria_label ), + __( 'Delete' ) + ); + } /** - * Filter the action links displayed for each theme in the Multisite + * Filters the action links displayed for each theme in the Multisite * themes list table. * * The action links displayed are determined by the theme's status, and @@ -335,21 +470,21 @@ * non-network enabled themes when editing a site in the Network admin. * * The default action links for the Network themes list table include - * 'Network Enable', 'Network Disable', 'Edit', and 'Delete'. + * 'Network Enable', 'Network Disable', and 'Delete'. * * The default action links for the Site themes list table include - * 'Enable', 'Disable', and 'Edit'. + * 'Enable', and 'Disable'. * * @since 2.8.0 * * @param array $actions An array of action links. * @param WP_Theme $theme The current WP_Theme object. - * @param string $context Status of the theme. + * @param string $context Status of the theme, one of 'all', 'enabled', or 'disabled'. */ $actions = apply_filters( 'theme_action_links', array_filter( $actions ), $theme, $context ); /** - * Filter the action links of a specific theme in the Multisite themes + * Filters the action links of a specific theme in the Multisite themes * list table. * * The dynamic portion of the hook name, `$stylesheet`, refers to the @@ -360,91 +495,202 @@ * * @param array $actions An array of action links. * @param WP_Theme $theme The current WP_Theme object. - * @param string $context Status of the theme. + * @param string $context Status of the theme, one of 'all', 'enabled', or 'disabled'. */ - $actions = apply_filters( "theme_action_links_$stylesheet", $actions, $theme, $context ); + $actions = apply_filters( "theme_action_links_{$stylesheet}", $actions, $theme, $context ); + + echo $this->row_actions( $actions, true ); + } + + /** + * Handles the description column output. + * + * @since 4.3.0 + * + * @global string $status + * @global array $totals + * + * @param WP_Theme $theme The current WP_Theme object. + */ + public function column_description( $theme ) { + global $status, $totals; + if ( $theme->errors() ) { + $pre = $status === 'broken' ? __( 'Broken Theme:' ) . ' ' : ''; + echo '
' . $pre . $theme->errors()->get_error_message() . '
'; + } + + if ( $this->is_site_themes ) { + $allowed = $theme->is_allowed( 'site', $this->site_id ); + } else { + $allowed = $theme->is_allowed( 'network' ); + } $class = ! $allowed ? 'inactive' : 'active'; - $checkbox_id = "checkbox_" . md5( $theme->get('Name') ); - $checkbox = ""; - - $id = sanitize_html_class( $theme->get_stylesheet() ); - if ( ! empty( $totals['upgrade'] ) && ! empty( $theme->update ) ) $class .= ' update'; - echo "" . $theme->display( 'Description' ) . "
' . $pre . $theme->errors()->get_error_message() . '
'; - } - echo "" . $theme->display( 'Description' ) . "