Ticket #21325: list-table-select-all.diff
File list-table-select-all.diff, 5.2 KB (added by , 13 years ago) |
---|
-
class-wp-ms-sites-list-table.php
143 143 function get_columns() { 144 144 $blogname_columns = ( is_subdomain_install() ) ? __( 'Domain' ) : __( 'Path' ); 145 145 $sites_columns = array( 146 'cb' => '< inputtype="checkbox" />',146 'cb' => '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />', 147 147 'blogname' => $blogname_columns, 148 148 'lastupdated' => __( 'Last Updated' ), 149 149 'registered' => _x( 'Registered', 'site' ), -
class-wp-posts-list-table.php
261 261 262 262 $posts_columns = array(); 263 263 264 $posts_columns['cb'] = '< inputtype="checkbox" />';264 $posts_columns['cb'] = '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />'; 265 265 266 266 /* translators: manage posts column name */ 267 267 $posts_columns['title'] = _x( 'Title', 'column name' ); -
class-wp-media-list-table.php
126 126 127 127 function get_columns() { 128 128 $posts_columns = array(); 129 $posts_columns['cb'] = '< inputtype="checkbox" />';129 $posts_columns['cb'] = '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />'; 130 130 $posts_columns['icon'] = ''; 131 131 /* translators: column name */ 132 132 $posts_columns['title'] = _x( 'File', 'column name' ); -
class-wp-links-list-table.php
76 76 77 77 function get_columns() { 78 78 return array( 79 'cb' => '<inputtype="checkbox" />',79 'cb' => '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />', 80 80 'name' => _x( 'Name', 'link name' ), 81 81 'url' => __( 'URL' ), 82 82 'categories' => __( 'Categories' ), -
class-wp-terms-list-table.php
96 96 global $taxonomy, $post_type; 97 97 98 98 $columns = array( 99 'cb' => '< inputtype="checkbox" />',99 'cb' => '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />', 100 100 'name' => _x( 'Name', 'term name' ), 101 101 'description' => __( 'Description' ), 102 102 'slug' => __( 'Slug' ), -
class-wp-users-list-table.php
159 159 160 160 function get_columns() { 161 161 $c = array( 162 'cb' => '< inputtype="checkbox" />',162 'cb' => '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />', 163 163 'username' => __( 'Username' ), 164 164 'name' => __( 'Name' ), 165 165 'email' => __( 'E-mail' ), -
class-wp-ms-themes-list-table.php
170 170 global $status; 171 171 172 172 return array( 173 'cb' => '< inputtype="checkbox" />',173 'cb' => '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />', 174 174 'name' => __( 'Theme' ), 175 175 'description' => __( 'Description' ), 176 176 ); -
class-wp-ms-users-list-table.php
111 111 112 112 function get_columns() { 113 113 $users_columns = array( 114 'cb' => '< inputtype="checkbox" />',114 'cb' => '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />', 115 115 'username' => __( 'Username' ), 116 116 'name' => __( 'Name' ), 117 117 'email' => __( 'E-mail' ), -
class-wp-plugins-list-table.php
175 175 global $status; 176 176 177 177 return array( 178 'cb' => !in_array( $status, array( 'mustuse', 'dropins' ) ) ? '< inputtype="checkbox" />' : '',178 'cb' => !in_array( $status, array( 'mustuse', 'dropins' ) ) ? '<label class="screen-reader-text" for="cb-cb">' . __('Select all') . '</label><input id="cb-cb" type="checkbox" />' : '', 179 179 'name' => __( 'Plugin' ), 180 180 'description' => __( 'Description' ), 181 181 );