This action can be used for adding a new payment option in payment settings.
do_action('profile_magic_payment_setting_option');
Simple example
function profile_magic_add_new_payment_option()
{
//Code here to add the new payment method
}
add_action( 'profile_magic_payment_setting_option', 'profile_magic_add_new_payment_option');

