X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/8ab4a4532479e8db471032b51042ec8c4716d091..3194d1bb103c2d8db4f44feeced5e58ee2756658:/wp-admin/includes/class-wp-ms-themes-list-table.php diff --git a/wp-admin/includes/class-wp-ms-themes-list-table.php b/wp-admin/includes/class-wp-ms-themes-list-table.php index d3b484fe..ef1ab91b 100644 --- a/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/wp-admin/includes/class-wp-ms-themes-list-table.php @@ -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 +75,15 @@ class WP_MS_Themes_List_Table extends WP_List_Table { 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; @@ -125,9 +153,10 @@ class WP_MS_Themes_List_Table extends WP_List_Table { $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 +179,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table { * @return bool */ public function _search_callback( $theme ) { - static $term; + static $term = null; if ( is_null( $term ) ) $term = wp_unslash( $_REQUEST['s'] ); @@ -186,22 +215,28 @@ class WP_MS_Themes_List_Table extends WP_List_Table { if ( $a == $b ) return 0; - if ( 'DESC' == $order ) + if ( 'DESC' === $order ) return ( $a < $b ) ? 1 : -1; else return ( $a < $b ) ? -1 : 1; } + /** + * @access public + */ 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 +244,34 @@ class WP_MS_Themes_List_Table extends WP_List_Table { ); } + /** + * + * @return array + */ protected function get_sortable_columns() { return array( 'name' => 'name', ); } + /** + * Gets the name of the primary column. + * + * @since 4.3.0 + * @access protected + * + * @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; @@ -249,7 +306,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table { if ( 'search' != $type ) { $status_links[$type] = sprintf( "%s", esc_url( add_query_arg('theme_status', $type, $url) ), - ( $type == $status ) ? ' class="current"' : '', + ( $type === $status ) ? ' class="current"' : '', sprintf( $text, number_format_i18n( $count ) ) ); } @@ -258,6 +315,11 @@ class WP_MS_Themes_List_Table extends WP_List_Table { return $status_links; } + /** + * @global string $status + * + * @return array + */ protected function get_bulk_actions() { global $status; @@ -275,20 +337,44 @@ class WP_MS_Themes_List_Table extends WP_List_Table { return $actions; } + /** + * @access public + */ public function display_rows() { foreach ( $this->items as $theme ) $this->single_row( $theme ); } /** + * Handles the checkbox column output. + * + * @since 4.3.0 + * @access public + * + * @param WP_Theme $theme The current WP_Theme object. + */ + public function column_cb( $theme ) { + $checkbox_id = 'checkbox_' . md5( $theme->get('Name') ); + ?> + + + errors() ) + if ( ! $theme->errors() ) { $actions['enable'] = '' . ( $this->is_site_themes ? __( 'Enable' ) : __( 'Network Enable' ) ) . ''; + } } else { $actions['disable'] = '' . ( $this->is_site_themes ? __( 'Disable' ) : __( 'Network Disable' ) ) . ''; } - if ( current_user_can('edit_themes') ) + 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' ) ) + if ( ! $allowed && current_user_can( 'delete_themes' ) && ! $this->is_site_themes && $stylesheet != get_option( 'stylesheet' ) && $stylesheet != get_option( 'template' ) ) { $actions['delete'] = '' . __( 'Delete' ) . ''; - + } /** * Filter the action links displayed for each theme in the Multisite * themes list table. @@ -364,87 +452,175 @@ class WP_MS_Themes_List_Table extends WP_List_Table { */ $actions = apply_filters( "theme_action_links_$stylesheet", $actions, $theme, $context ); - $class = ! $allowed ? 'inactive' : 'active'; - $checkbox_id = "checkbox_" . md5( $theme->get('Name') ); - $checkbox = ""; + echo $this->row_actions( $actions, true ); + } - $id = sanitize_html_class( $theme->get_stylesheet() ); + /** + * Handles the description column output. + * + * @since 4.3.0 + * @access public + * + * @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'; if ( ! empty( $totals['upgrade'] ) && ! empty( $theme->update ) ) $class .= ' update'; - echo ""; + echo "

" . $theme->display( 'Description' ) . "

+
"; + + $stylesheet = $theme->get_stylesheet(); + $theme_meta = array(); + + if ( $theme->get('Version') ) { + $theme_meta[] = sprintf( __( 'Version %s' ), $theme->display('Version') ); + } + $theme_meta[] = sprintf( __( 'By %s' ), $theme->display('Author') ); + + if ( $theme->get('ThemeURI') ) { + $theme_meta[] = '' . __( 'Visit Theme Site' ) . ''; + } + /** + * Filter the array of row meta for each theme in the Multisite themes + * list table. + * + * @since 3.1.0 + * + * @param array $theme_meta An array of the theme's metadata, + * including the version, author, and + * theme URI. + * @param string $stylesheet Directory name of the theme. + * @param WP_Theme $theme WP_Theme object. + * @param string $status Status of the theme. + */ + $theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status ); + echo implode( ' | ', $theme_meta ); - list( $columns, $hidden ) = $this->get_column_info(); + echo '
'; + } + + /** + * Handles default column output. + * + * @since 4.3.0 + * @access public + * + * @param WP_Theme $theme The current WP_Theme object. + * @param string $column_name The current column name. + */ + public function column_default( $theme, $column_name ) { + $stylesheet = $theme->get_stylesheet(); + + /** + * Fires inside each custom column of the Multisite themes list table. + * + * @since 3.1.0 + * + * @param string $column_name Name of the column. + * @param string $stylesheet Directory name of the theme. + * @param WP_Theme $theme Current WP_Theme object. + */ + do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme ); + } + + /** + * Handles the output for a single table row. + * + * @since 4.3.0 + * @access public + * + * @param WP_Theme $item The current WP_Theme object. + */ + public function single_row_columns( $item ) { + list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info(); foreach ( $columns as $column_name => $column_display_name ) { - $style = ''; - if ( in_array( $column_name, $hidden ) ) - $style = ' style="display:none;"'; + $extra_classes = ''; + if ( in_array( $column_name, $hidden ) ) { + $extra_classes .= ' hidden'; + } switch ( $column_name ) { case 'cb': - echo "$checkbox"; + echo ''; + + $this->column_cb( $item ); + + echo ''; break; + case 'name': - echo "" . $theme->display('Name') . ""; - echo $this->row_actions( $actions, true ); + echo "" . $item->display('Name') . ""; + + $this->column_name( $item ); + echo ""; break; + case 'description': - echo ""; - if ( $theme->errors() ) { - $pre = $status == 'broken' ? __( 'Broken Theme:' ) . ' ' : ''; - echo '

' . $pre . $theme->errors()->get_error_message() . '

'; - } - echo "

" . $theme->display( 'Description' ) . "

-
"; - - $theme_meta = array(); - - if ( $theme->get('Version') ) - $theme_meta[] = sprintf( __( 'Version %s' ), $theme->display('Version') ); - - $theme_meta[] = sprintf( __( 'By %s' ), $theme->display('Author') ); - - if ( $theme->get('ThemeURI') ) - $theme_meta[] = '' . __( 'Visit Theme Site' ) . ''; - - /** - * Filter the array of row meta for each theme in the Multisite themes - * list table. - * - * @since 3.1.0 - * - * @param array $theme_meta An array of the theme's metadata, - * including the version, author, and - * theme URI. - * @param string $stylesheet Directory name of the theme. - * @param WP_Theme $theme WP_Theme object. - * @param string $status Status of the theme. - */ - $theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status ); - echo implode( ' | ', $theme_meta ); - - echo "
"; + echo ""; + + $this->column_description( $item ); + + echo ''; break; default: - echo ""; - - /** - * Fires inside each custom column of the Multisite themes list table. - * - * @since 3.1.0 - * - * @param string $column_name Name of the column. - * @param string $stylesheet Directory name of the theme. - * @param WP_Theme $theme Current WP_Theme object. - */ - do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme ); + echo ""; + + $this->column_default( $item, $column_name ); + echo ""; + break; } } + } + + /** + * @global string $status + * @global array $totals + * + * @param WP_Theme $theme + */ + public function single_row( $theme ) { + global $status, $totals; + + if ( $this->is_site_themes ) { + $allowed = $theme->is_allowed( 'site', $this->site_id ); + } else { + $allowed = $theme->is_allowed( 'network' ); + } + + $stylesheet = $theme->get_stylesheet(); + + $class = ! $allowed ? 'inactive' : 'active'; + + $id = sanitize_html_class( $theme->get_stylesheet() ); + + if ( ! empty( $totals['upgrade'] ) && ! empty( $theme->update ) ) { + $class .= ' update'; + } + + echo ""; + + $this->single_row_columns( $theme ); echo "";