This action runs when a user account is deactivated or suspended.
do_action('pg_user_suspended',$uid);
Simple example
function profile_magic_action_on_suspend($uid)
{
//do something with the user id when a user account is deactivated or suspended here.
}
add_action( 'pg_user_suspended', 'profile_magic_action_on_suspend');

