398 | | echo apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID ); |
| 398 | $r = apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID ); |
| 399 | |
| 400 | /** |
| 401 | * Fires for each custom column in the Network Users list table. |
| 402 | * |
| 403 | * @param string $output Custom column output. Default empty. |
| 404 | * @param string $column_name Name of the custom column. |
| 405 | * @param int $user_id ID of the currently-listed user. |
| 406 | */ |
| 407 | $r = apply_filters( "manage_users-network_custom_column", $r, $column_name, $user->ID ); |
| 408 | echo $r; |