equal
deleted
inserted
replaced
488 /** |
488 /** |
489 * Generates and displays row action links. |
489 * Generates and displays row action links. |
490 * |
490 * |
491 * @since 4.3.0 |
491 * @since 4.3.0 |
492 * |
492 * |
493 * @param object $user User being acted upon. |
493 * @param WP_User $user User being acted upon. |
494 * @param string $column_name Current column name. |
494 * @param string $column_name Current column name. |
495 * @param string $primary Primary column name. |
495 * @param string $primary Primary column name. |
496 * @return string Row actions output for users in Multisite, or an empty string |
496 * @return string Row actions output for users in Multisite, or an empty string |
497 * if the current column is not the primary column. |
497 * if the current column is not the primary column. |
498 */ |
498 */ |
499 protected function handle_row_actions( $user, $column_name, $primary ) { |
499 protected function handle_row_actions( $user, $column_name, $primary ) { |
500 if ( $primary !== $column_name ) { |
500 if ( $primary !== $column_name ) { |