do_action('wpda_deleted_user', $user, $server, $current_user->user_login);
This hook fires when an administrator deletes a user from the server. It returns $user, the username being deleted, $server, the server ID of which the account is being removed and the $current_user of whom deleted the account.
Example:
add_action('wpda_deleted_user', 'my_function', 0, 3); function my_function($user, $server, $current_user){ echo "{$current_user} has deleted the account {$user} from server #{$server}"; }
Latest Post: wpda_user_unlocked Our newest member: NED Recent Posts Unread Posts Tags
Forum Icons: Forum contains no unread posts Forum contains unread posts
Topic Icons: Not Replied Replied Active Hot Sticky Unapproved Solved Private Closed