Ticket #26203: 26203.3.diff
| File 26203.3.diff, 1.9 KB (added by , 12 years ago) |
|---|
-
src/wp-admin/includes/class-wp-users-list-table.php
218 218 endif; 219 219 220 220 /** 221 * Fires just before the closing div containing the bu ik role-change controls221 * Fires just before the closing div containing the bulk role-change controls 222 222 * in the Users list table. 223 223 * 224 224 * @since 3.5.0 … … 371 371 $actions['remove'] = "<a class='submitdelete' href='" . wp_nonce_url( $url."action=remove&user=$user_object->ID", 'bulk-users' ) . "'>" . __( 'Remove' ) . "</a>"; 372 372 373 373 /** 374 * Filter user row actions for a single rowin the Users list table.374 * Filter the action links displayed under each user in the Users list table. 375 375 * 376 376 * @since 2.8.0 377 377 * 378 * @param array $actions Array of row actions actions. 378 * @param array $actions An array of action links to be displayed. 379 * Default 'Edit', 'Delete' for single site, and 380 * 'Edit', 'Remove' for Multisite. 379 381 * @param WP_User $user_object WP_User object for the currently-listed user. 380 382 */ 381 383 $actions = apply_filters( 'user_row_actions', $actions, $user_object ); … … 436 438 $r .= "<td $attributes>"; 437 439 438 440 /** 439 * Filter display output of custom columns in the Users list table.441 * Filter the display output of custom columns in the Users list table. 440 442 * 441 443 * @since 2.8.0 442 444 * 443 * @param string $output Custom column output. Default empty.445 * @param string $output Custom column output. Default empty. 444 446 * @param string $column_name Column name. 445 447 * @param int $user_id ID of the currently-listed user. 446 448 */