Ticket #32147: 32147.4.patch
File 32147.4.patch, 17.9 KB (added by , 9 years ago) |
---|
-
src/wp-admin/css/list-tables.css
532 532 } 533 533 534 534 .tablenav .no-pages, 535 .tablenav .one-page .pagination-links { 535 .tablenav .one-page .pagination-links, 536 .tablenav .one-page .pagination-heading { 536 537 display: none; 537 538 } 538 539 -
src/wp-admin/edit-comments.php
136 136 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 137 137 ); 138 138 139 get_current_screen()->add_a11y_info( array( 140 'heading_views' => __( 'Filter comments list' ), 141 'heading_pagination' => __( 'Comments list navigation' ), 142 'heading_list' => __( 'Comments list' ), 143 ) ); 144 139 145 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 140 146 ?> 141 147 -
src/wp-admin/edit-tags.php
45 45 46 46 add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) ); 47 47 48 get_current_screen()->add_a11y_info( array( 49 'heading_pagination' => $tax->labels->pagination, 50 'heading_list' => $tax->labels->list, 51 ) ); 52 48 53 $location = false; 49 54 50 55 switch ( $wp_list_table->current_action() ) { -
src/wp-admin/edit.php
236 236 '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' . 237 237 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 238 238 ); 239 239 240 } 240 241 242 get_current_screen()->add_a11y_info( array( 243 'heading_views' => $post_type_object->labels->views, 244 'heading_pagination' => $post_type_object->labels->pagination, 245 'heading_list' => $post_type_object->labels->list, 246 ) ); 247 241 248 add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) ); 242 249 243 250 $bulk_counts = array( -
src/wp-admin/includes/class-wp-comments-list-table.php
374 374 375 375 $this->display_tablenav( 'top' ); 376 376 377 if ( isset( $this->screen->a11y_info['heading_list'] ) ) { 378 $heading = '<h2 class="screen-reader-text list-heading">' . $this->screen->a11y_info['heading_list'] . '</h2>'; 379 } else { 380 $heading = ''; 381 } 382 383 echo $heading; 377 384 ?> 378 385 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>"> 379 386 <thead> … … 441 448 */ 442 449 protected function handle_row_actions( $comment, $column_name, $primary ) { 443 450 global $comment_status; 444 451 445 452 if ( ! $this->user_can ) { 446 453 return; 447 454 -
src/wp-admin/includes/class-wp-list-table.php
378 378 if ( empty( $views ) ) 379 379 return; 380 380 381 echo "<ul class='subsubsub'>\n"; 381 if ( isset( $this->screen->a11y_info['heading_views'] ) ) { 382 $heading = '<h2 class="screen-reader-text views-heading">' . $this->screen->a11y_info['heading_views'] . '</h2>'; 383 } else { 384 $heading = ''; 385 } 386 387 echo "$heading\n<ul class='subsubsub'>\n"; 382 388 foreach ( $views as $class => $view ) { 383 389 $views[ $class ] = "\t<li class='$class'>$view"; 384 390 } … … 689 695 $infinite_scroll = $this->_pagination_args['infinite_scroll']; 690 696 } 691 697 692 $output = '<span class="displaying-num">' . sprintf( _n( '%s item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>'; 698 if ( 'top' === $which && isset( $this->screen->a11y_info['heading_pagination'] ) ) { 699 $heading = '<h2 class="screen-reader-text pagination-heading">' . $this->screen->a11y_info['heading_pagination'] . '</h2>'; 700 } else { 701 $heading = ''; 702 } 693 703 704 $output = $heading . '<span class="displaying-num">' . sprintf( _n( '%s item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>'; 705 694 706 $current = $this->get_pagenum(); 695 707 696 708 $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); … … 975 987 976 988 $this->display_tablenav( 'top' ); 977 989 990 if ( isset( $this->screen->a11y_info['heading_list'] ) ) { 991 $heading = '<h2 class="screen-reader-text list-heading">' . $this->screen->a11y_info['heading_list'] . '</h2>'; 992 } else { 993 $heading = ''; 994 } 995 996 echo $heading; 997 978 998 ?> 979 999 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>"> 980 1000 <thead> -
src/wp-admin/includes/class-wp-media-list-table.php
181 181 global $mode; 182 182 183 183 $views = $this->get_views(); 184 185 if ( isset( $this->screen->a11y_info['heading_views'] ) ) { 186 echo '<h2 class="screen-reader-text filter-views-heading">' . $this->screen->a11y_info['heading_views'] . '</h2>'; 187 } 184 188 ?> 185 189 <div class="wp-filter"> 186 190 <div class="filter-items"> -
src/wp-admin/includes/class-wp-plugin-install-list-table.php
247 247 /** This filter is documented in wp-admin/inclues/class-wp-list-table.php */ 248 248 $views = apply_filters( "views_{$this->screen->id}", $views ); 249 249 250 if ( isset( $this->screen->a11y_info['heading_views'] ) ) { 251 echo '<h2 class="screen-reader-text filter-views-heading">' . $this->screen->a11y_info['heading_views'] . '</h2>'; 252 } 253 250 254 ?> 251 255 <div class="wp-filter"> 252 256 <ul class="filter-links"> … … 281 285 282 286 ?> 283 287 <div class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>"> 284 288 <?php 289 if ( isset( $this->screen->a11y_info['heading_list'] ) ) { 290 echo '<h2 class="screen-reader-text list-heading">' . $this->screen->a11y_info['heading_list'] . '</h2>'; 291 } 292 ?> 285 293 <div id="the-list"<?php echo $data_attr; ?>> 286 294 <?php $this->display_rows_or_placeholder(); ?> 287 295 </div> -
src/wp-admin/includes/screen.php
326 326 private $_help_sidebar = ''; 327 327 328 328 /** 329 * The accessibility information associated with the screen, if any. 330 * 331 * @since 4.3.0 332 * @var array 333 * @access public 334 */ 335 public $a11y_info = array(); 336 337 /** 329 338 * Stores old string-based help. 330 339 */ 331 340 private static $_old_compat_help = array(); … … 791 800 return $this->columns; 792 801 } 793 802 803 /** 804 * Add accessibility related informations. 805 * 806 * @since 4.3.0 807 * 808 * @param array $args An associative array with additional information useful for accessibility. 809 * - string - heading_views - The table views hidden heading text. 810 * - string - heading_pagination - The table pagination hidden heading text. 811 * - string - heading_list - The table hidden heading text. 812 */ 813 public function add_a11y_info( $args = array() ) { 814 $defaults = array( 815 'heading_views' => __( 'Filter items list' ), 816 'heading_pagination' => __( 'Items list navigation' ), 817 'heading_list' => __( 'Items list' ), 818 ); 819 $args = wp_parse_args( $args, $defaults ); 820 821 $this->a11y_info = $args; 822 } 823 794 824 /** 795 825 * Render the screen's help section. 796 826 * -
src/wp-admin/link-manager.php
61 61 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 62 62 ); 63 63 64 get_current_screen()->add_a11y_info( array( 65 'heading_list' => __( 'Links list' ), 66 ) ); 67 64 68 include_once( ABSPATH . 'wp-admin/admin-header.php' ); 65 69 66 70 if ( ! current_user_can('manage_links') ) -
src/wp-admin/network/site-themes.php
33 33 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 34 34 ); 35 35 36 get_current_screen()->add_a11y_info( array( 37 'heading_views' => __( 'Filter site themes list' ), 38 'heading_pagination' => __( 'Site themes list navigation' ), 39 'heading_list' => __( 'Site themes list' ), 40 ) ); 41 36 42 $wp_list_table = _get_list_table('WP_MS_Themes_List_Table'); 37 43 38 44 $action = $wp_list_table->current_action(); -
src/wp-admin/network/site-users.php
36 36 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 37 37 ); 38 38 39 get_current_screen()->add_a11y_info( array( 40 'heading_views' => __( 'Filter site users list' ), 41 'heading_pagination' => __( 'Site users list navigation' ), 42 'heading_list' => __( 'Site users list' ), 43 ) ); 44 39 45 $_SERVER['REQUEST_URI'] = remove_query_arg( 'update', $_SERVER['REQUEST_URI'] ); 40 46 $referer = remove_query_arg( 'update', wp_get_referer() ); 41 47 -
src/wp-admin/network/sites.php
46 46 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 47 47 ); 48 48 49 get_current_screen()->add_a11y_info( array( 50 'heading_pagination' => __( 'Sites list navigation' ), 51 'heading_list' => __( 'Sites list' ), 52 ) ); 53 49 54 $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0; 50 55 51 56 if ( isset( $_GET['action'] ) ) { -
src/wp-admin/network/themes.php
251 251 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 252 252 ); 253 253 254 get_current_screen()->add_a11y_info( array( 255 'heading_views' => __( 'Filter themes list' ), 256 'heading_pagination' => __( 'Themes list navigation' ), 257 'heading_list' => __( 'Themes list' ), 258 ) ); 259 254 260 $title = __('Themes'); 255 261 $parent_file = 'themes.php'; 256 262 -
src/wp-admin/network/users.php
276 276 '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>' 277 277 ); 278 278 279 get_current_screen()->add_a11y_info( array( 280 'heading_views' => __( 'Filter users list' ), 281 'heading_pagination' => __( 'Users list navigation' ), 282 'heading_list' => __( 'Users list' ), 283 ) ); 284 279 285 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 280 286 281 287 if ( isset( $_REQUEST['updated'] ) && $_REQUEST['updated'] == 'true' && ! empty( $_REQUEST['action'] ) ) { -
src/wp-admin/plugin-install.php
88 88 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 89 89 ); 90 90 91 get_current_screen()->add_a11y_info( array( 92 'heading_views' => __( 'Filter plugins list' ), 93 'heading_pagination' => __( 'Plugins list navigation' ), 94 'heading_list' => __( 'Plugins list' ), 95 ) ); 96 91 97 /** 92 98 * WordPress Administration Template Header. 93 99 */ -
src/wp-admin/plugins.php
392 392 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 393 393 ); 394 394 395 get_current_screen()->add_a11y_info( array( 396 'heading_views' => __( 'Filter plugins list' ), 397 'heading_pagination' => __( 'Plugins list navigation' ), 398 'heading_list' => __( 'Plugins list' ), 399 ) ); 400 395 401 $title = __('Plugins'); 396 402 $parent_file = 'plugins.php'; 397 403 -
src/wp-admin/theme-install.php
126 126 <?php install_themes_upload(); ?> 127 127 </div> 128 128 129 <h2 class="screen-reader-text"><?php _e( 'Filter themes list' ); ?></h2> 130 129 131 <div class="wp-filter"> 130 132 <div class="filter-count"> 131 133 <span class="count theme-count"></span> … … 169 171 </div> 170 172 </div> 171 173 </div> 174 <h2 class="screen-reader-text"><?php _e( 'Themes list' ); ?></h2> 172 175 <div class="theme-browser content-filterable"></div> 173 176 <div class="theme-install-overlay wp-full-overlay expanded"></div> 174 177 -
src/wp-admin/upload.php
202 202 '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 203 203 ); 204 204 205 get_current_screen()->add_a11y_info( array( 206 'heading_views' => __( 'Filter media items list' ), 207 'heading_pagination' => __( 'Media items list navigation' ), 208 'heading_list' => __( 'Media items list' ), 209 ) ); 210 205 211 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 206 212 ?> 207 213 -
src/wp-admin/users.php
63 63 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 64 64 ); 65 65 66 get_current_screen()->add_a11y_info( array( 67 'heading_views' => __( 'Filter users list' ), 68 'heading_pagination' => __( 'Users list navigation' ), 69 'heading_list' => __( 'Users list' ), 70 ) ); 71 66 72 if ( empty($_REQUEST) ) { 67 73 $referer = '<input type="hidden" name="wp_http_referer" value="'. esc_attr( wp_unslash( $_SERVER['REQUEST_URI'] ) ) . '" />'; 68 74 } elseif ( isset($_REQUEST['wp_http_referer']) ) { -
src/wp-includes/post.php
1625 1625 * ones the default is 'Parent Page:'. 1626 1626 * - all_items - String for the submenu. Default is All Posts/All Pages. 1627 1627 * - menu_name - Default is the same as `name`. 1628 * - views - String for the table views hidden heading. 1629 * - pagination - String for the table pagination hidden heading. 1630 * - list - String for the table hidden heading. 1628 1631 * 1629 1632 * Above, the first default value is for non-hierarchical post types (like posts) 1630 1633 * and the second one is for hierarchical post types (like pages). … … 1648 1651 'not_found' => array( __('No posts found.'), __('No pages found.') ), 1649 1652 'not_found_in_trash' => array( __('No posts found in Trash.'), __('No pages found in Trash.') ), 1650 1653 'parent_item_colon' => array( null, __('Parent Page:') ), 1651 'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) ) 1654 'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) ), 1655 'views' => array( __( 'Filter posts list' ), __( 'Filter pages list' ) ), 1656 'pagination' => array( __( 'Posts list navigation' ), __( 'Pages list navigation' ) ), 1657 'list' => array( __( 'Posts list' ), __( 'Pages list' ) ), 1652 1658 ); 1653 1659 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name']; 1654 1660 -
src/wp-includes/taxonomy.php
472 472 * - add_or_remove_items - This string isn't used on hierarchical taxonomies. Default is "Add or remove tags", used in the meta box when JavaScript is disabled. 473 473 * - choose_from_most_used - This string isn't used on hierarchical taxonomies. Default is "Choose from the most used tags", used in the meta box. 474 474 * - not_found - Default is "No tags found"/"No categories found", used in the meta box and taxonomy list table. 475 * - pagination - String for the table pagination hidden heading. 476 * - list - String for the table hidden heading. 475 477 * 476 478 * Above, the first default value is for non-hierarchical taxonomies (like tags) and the second one is for hierarchical taxonomies (like categories). 477 479 * … … 508 510 'add_or_remove_items' => array( __( 'Add or remove tags' ), null ), 509 511 'choose_from_most_used' => array( __( 'Choose from the most used tags' ), null ), 510 512 'not_found' => array( __( 'No tags found.' ), __( 'No categories found.' ) ), 513 'pagination' => array( __( 'Tags list navigation' ), __( 'Categories list navigation' ) ), 514 'list' => array( __( 'Tags list' ), __( 'Categories list' ) ), 511 515 ); 512 516 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name']; 513 517