This action will be executed when the submitted form details get successfully validated.
Hook Name: arm_after_form_validate_action
Hook Type: Action
Source: core/classes/class.arm_member_forms.php
Usage:
add_action( 'arm_after_form_validate_action', 'your_function', 10, 2 );
function your_function($armform, $posted_data) {
//Do Your Action
//$armform Form Object.
//$posted_data Posted Form Details.
}
Parameters:
$armform
Form Object
$posted_data
Posted Form Details